Skip to content

Commit

Permalink
feat(DEV-15): make commands separate so that they run differently on …
Browse files Browse the repository at this point in the history
…Github Actions
  • Loading branch information
hhimanshu committed Jul 15, 2021
1 parent 79abaa8 commit e991c5d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ coverage
storybook-static/
*.DS_Store
yarn-error.log
.env
*.env
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"dev": "webpack --config webpack.dev.config.js",
"start": "webpack serve --open --config webpack.dev.js ",
"start:prod": "npx -y serve -s dist",
"build": "rm -rf dist && webpack --config webpack.prod.js && ts-node scripts/generateAssetLinks.ts",
"build": "rm -rf dist && webpack --config webpack.prod.js",
"generateAssetLinks": "ts-node scripts/generateAssetLinks.ts",
"create:start:prod": "yarn build && yarn start:prod",
"lint": "eslint -c .eslintrc.js --ext .ts src",
"format": "prettier --write .",
Expand Down

0 comments on commit e991c5d

Please sign in to comment.