remove cypress from devDependencies and install in CI, so the app is deployable

This commit is contained in:
Rich Harris
2017-12-17 20:15:16 -05:00
parent 1872113952
commit 90936ff5e3
3 changed files with 5 additions and 5 deletions

View File

@@ -5,5 +5,7 @@ node_js:
env:
global:
- BUILD_TIMEOUT=10000
install: npm install
install:
- npm install
- npm install cypress

View File

@@ -14,4 +14,5 @@ environment:
install:
- ps: Install-Product node $env:nodejs_version
- npm install
- npm install
- npm install cypress

View File

@@ -25,8 +25,5 @@
"svelte": "^1.49.1",
"svelte-loader": "^2.2.1",
"uglifyjs-webpack-plugin": "^1.1.2"
},
"devDependencies": {
"cypress": "^1.2.0"
}
}