Add back `yarn dev` for convenience

merge-requests/1/head
Alex Gleason 4 years ago
parent 8a19b89c16
commit 4cb1392bd5
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7

@ -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…
Cancel
Save