From 90936ff5e3a83b5ebac06b8a8520852b951f4b91 Mon Sep 17 00:00:00 2001 From: Rich Harris Date: Sun, 17 Dec 2017 20:15:16 -0500 Subject: [PATCH] remove cypress from devDependencies and install in CI, so the app is deployable --- .travis.yml | 4 +++- appveyor.yml | 3 ++- package.json | 3 --- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 5e4120c..8ad1fc3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,5 +5,7 @@ node_js: env: global: - BUILD_TIMEOUT=10000 -install: npm install +install: + - npm install + - npm install cypress diff --git a/appveyor.yml b/appveyor.yml index a62c767..8f53f3d 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -14,4 +14,5 @@ environment: install: - ps: Install-Product node $env:nodejs_version - - npm install \ No newline at end of file + - npm install + - npm install cypress \ No newline at end of file diff --git a/package.json b/package.json index cf7eb77..c9c1c84 100644 --- a/package.json +++ b/package.json @@ -25,8 +25,5 @@ "svelte": "^1.49.1", "svelte-loader": "^2.2.1", "uglifyjs-webpack-plugin": "^1.1.2" - }, - "devDependencies": { - "cypress": "^1.2.0" } }