diff --git a/package.json b/package.json index b5c310eab..4532499cb 100644 --- a/package.json +++ b/package.json @@ -5,10 +5,10 @@ "license": "BSD-4-Clause", "scripts": { "dev": "next", - "html": "next build && next export && echo 'roadmap.sh' > out/CNAME && echo '' > out/.nojekyll", + "html": "./scripts/build.sh", "serve:out": "serve out", "sitemap": "node scripts/sitemap.js", - "deploy": "NODE_DEBUG=gh-pages gh-pages -d out", + "deploy": "NODE_DEBUG=gh-pages gh-pages -d out -t", "test": "jest", "test:watch": "jest --watch" }, diff --git a/scripts/build.sh b/scripts/build.sh new file mode 100755 index 000000000..8be7acb51 --- /dev/null +++ b/scripts/build.sh @@ -0,0 +1,6 @@ +#!/usr/bin/env bash + +next build +next export +echo 'roadmap.sh' > out/CNAME +touch out/.nojekyll