Skip to content
This repository has been archived by the owner on Nov 30, 2021. It is now read-only.

Commit

Permalink
Ignore Jekyll when deploying the application to the GH pages
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Do committed Jul 6, 2021
1 parent b422d09 commit 8e2d9f1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ dist/
# debug
# local env files
# vercel
.vercel
.vercel
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@
"scripts": {
"start": "next dev",
"start-production": "next start",
"build": "next build && next export --outdir build && touch build/.nojekyll",
"build": "next build && next export && touch out/.nojekyll",
"lint": "eslint --ext js,ts,tsx src --max-warnings=0",
"build:package": "rollup -c && node copy-package-json.js && cp README.md dist",
"test": "jest test --coverage",
"deploy": "npx gh-pages -d build",
"deploy": "npx gh-pages -d out -t",
"format": "yarn lint --fix",
"release": "npm-run-all build:package && cd dist && npm publish",
"validate": "CI=true npm-run-all lint test build validate:package",
Expand Down

0 comments on commit 8e2d9f1

Please sign in to comment.