Add back yarn dev
for convenience
This commit is contained in:
parent
8a19b89c16
commit
4cb1392bd5
2 changed files with 3 additions and 0 deletions
|
@ -53,6 +53,8 @@ The following commands are supported.
|
|||
#### Local dev server
|
||||
- `yarn start` - Run the local dev server. It will proxy requests to the backend for you.
|
||||
|
||||
- `yarn dev` - Exact same as above, aliased to `yarn start` for convenience.
|
||||
|
||||
#### Building
|
||||
- `yarn build:development` - Build for development.
|
||||
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
"version": "0.0.0",
|
||||
"scripts": {
|
||||
"start": "npx webpack-dev-server --config webpack/development.js",
|
||||
"dev": "${npm_execpath} run start",
|
||||
"build:development": "NODE_ENV=development npx webpack --config webpack/development.js",
|
||||
"build:production": "NODE_ENV=production npx webpack --config webpack/production.js",
|
||||
"manage:translations": "node ./webpack/translationRunner.js",
|
||||
|
|
Loading…
Reference in a new issue