Original commit e85e00d4070adb14040316e17dedd188dac28d64
This commit is contained in:
David Siegel 2017-07-19 17:48:01 -07:00
Родитель d680529910
Коммит b447bcf585
2 изменённых файлов: 6 добавлений и 3 удалений

Просмотреть файл

@ -1,7 +1,7 @@
## Setup
```shell
$ npm install
$ npm run setup
```
## Edit

Просмотреть файл

@ -4,9 +4,12 @@
"private": true,
"dependencies": {},
"scripts": {
"postinstall": "bower install && pulp build && pushd app && npm install && popd",
"setup": "npm install && npm install app",
"build": "pulp build",
"test": "pulp test",
"postinstall": "bower install && npm run build",
"start": "cd app && npm start",
"deploy": "npm install && cd app && npm run deploy"
"deploy": "npm install && cd app && npm install && npm run deploy"
},
"devDependencies": {
"bower": "^1.8.0",