Skip to content

Commit

Permalink
test: install WebdriverIO packages as optional dev dependencies (#510)
Browse files Browse the repository at this point in the history
WebdriverIO which we use for browser testing cannot be installed on some
platforms like z/OS.

In order to allow "Canary in the Goldmine"
(https://github.com/nodejs/citgm) to be run on such platforms as well we
need to install WebdriverIO as an optional devDependency. npm doesn't
support this out-of-the-box but fortunately there is
https://github.com/bcoe/optional-dev-dependency which does precisely
what we need.

Fixes #509
  • Loading branch information
ctavan committed Aug 17, 2020
1 parent cfb3cdb commit bc9d4ed
Show file tree
Hide file tree
Showing 8 changed files with 2,192 additions and 4,125 deletions.
92 changes: 43 additions & 49 deletions examples/browser-rollup/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions examples/browser-rollup/package.json
Expand Up @@ -10,8 +10,8 @@
"uuid": "file:../../.local"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^8.0.1",
"rollup": "^2.18.0",
"rollup-plugin-terser": "^6.1.0"
"@rollup/plugin-node-resolve": "^9.0.0",
"rollup": "^2.25.0",
"rollup-plugin-terser": "^7.0.0"
}
}

0 comments on commit bc9d4ed

Please sign in to comment.