Skip to content

Commit

Permalink
housekeeping
Browse files Browse the repository at this point in the history
  • Loading branch information
zkrhm committed Aug 23, 2018
1 parent 00e283d commit a7d309e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion E2E-test/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"striptags": "^3.1.1"
},
"scripts": {
"test": "jest",
"test": "export NODE_ENV=test && jest",
"debug": "export NODE_ENV=debug && jest"
}
}
3 changes: 2 additions & 1 deletion api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
"build": "rimraf dist/ && babel ./ --out-dir dist/ --ignore ./node_modules,./.babelrc,./package.json,./npm-debug.log --copy-files",
"start": "npm run build && nodemon dist/server.js",
"background": "npm run build && nodemon dist/server.js &",
"stop": "pgrep -f nodemon | xargs kill -9 "
"stop": "pgrep -f nodemon | xargs kill -9 ",
"cleanup": "rm -Rf dist/"
},
"repository": {
"type": "git",
Expand Down
5 changes: 3 additions & 2 deletions front-end/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@
"name": "with-ant-design",
"version": "1.0.0",
"scripts": {
"dev": "next",
"dev": "next start",
"build": "next build",
"start": "next start"
"start": "next start",
"cleanup": "rm -Rf .next/"
},
"dependencies": {
"@zeit/next-css": "^0.1.4",
Expand Down

0 comments on commit a7d309e

Please sign in to comment.