Skip to content

Commit

Permalink
chore: Upgrade dev dependencies (#2109)
Browse files Browse the repository at this point in the history
  • Loading branch information
pmdartus committed Dec 2, 2020
1 parent 5c10538 commit 792323b
Show file tree
Hide file tree
Showing 6 changed files with 477 additions and 349 deletions.
22 changes: 11 additions & 11 deletions package.json
Expand Up @@ -22,21 +22,21 @@
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@commitlint/cli": "^11.0.0",
"@rollup/plugin-replace": "^2.3.4",
"@types/acorn": "^4.0.5",
"@types/babel__core": "^7.1.12",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.7",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"@types/node": "^14.14.10",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"babel-plugin-tester": "^10.0.0",
"concurrently": "^5.3.0",
"es5-proxy-compat": "^0.22.1",
"eslint": "^7.13.0",
"eslint-plugin-jest": "^24.1.0",
"eslint": "^7.14.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-lwc-internal": "link:./scripts/eslint-plugin",
"execa": "^4.1.0",
"fs-extra": "^9.0.1",
Expand All @@ -46,17 +46,17 @@
"isbinaryfile": "^4.0.6",
"jest": "^26.6.3",
"lerna": "^3.22.1",
"lint-staged": "^10.5.1",
"prettier": "^2.1.2",
"rollup": "^2.33.1",
"lint-staged": "^10.5.2",
"prettier": "^2.2.1",
"rollup": "^2.34.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-compat": "^0.22.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript": "^1.0.1",
"semver": "^7.3.2",
"tslib": "^2.0.3",
"typescript": "^4.0.5",
"typescript": "^4.1.2",
"worker-farm": "^1.7.0"
},
"husky": {
Expand Down
2 changes: 1 addition & 1 deletion packages/integration-karma/package.json
Expand Up @@ -21,6 +21,6 @@
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-jasmine": "^4.0.1",
"karma-sauce-launcher": "4.3.3"
"karma-sauce-launcher": "4.3.4"
}
}
18 changes: 9 additions & 9 deletions packages/integration-tests/package.json
Expand Up @@ -21,18 +21,18 @@
},
"devDependencies": {
"@lwc/rollup-plugin": "1.9.4",
"@wdio/cli": "^6.5.2",
"@wdio/local-runner": "^6.5.2",
"@wdio/mocha-framework": "^6.5.0",
"@wdio/sauce-service": "^6.5.0",
"@wdio/selenium-standalone-service": "^6.4.7",
"@wdio/spec-reporter": "^6.4.7",
"@wdio/static-server-service": "^6.4.7",
"@wdio/sync": "^6.5.0",
"@wdio/cli": "^6.10.2",
"@wdio/local-runner": "^6.10.2",
"@wdio/mocha-framework": "^6.8.0",
"@wdio/sauce-service": "^6.10.0",
"@wdio/selenium-standalone-service": "^6.10.3",
"@wdio/spec-reporter": "^6.8.1",
"@wdio/static-server-service": "^6.10.3",
"@wdio/sync": "^6.10.0",
"deepmerge": "^4.2.2",
"dotenv": "^8.2.0",
"lwc": "1.9.4",
"minimist": "^1.2.5",
"webdriverio": "^6.5.2"
"webdriverio": "^6.10.2"
}
}
23 changes: 20 additions & 3 deletions packages/integration-tests/scripts/wdio.local.conf.js
Expand Up @@ -9,7 +9,12 @@ const merge = require('deepmerge');

const baseConfig = require('./wdio.conf.js');

const HEADLESS = process.env.HEADLESS_CHROME !== 'false';
const headless = process.env.HEADLESS_CHROME !== 'false';
const drivers = {
chrome: {
version: 'latest',
},
};

exports.config = merge(baseConfig.config, {
maxInstances: 5,
Expand All @@ -18,10 +23,22 @@ exports.config = merge(baseConfig.config, {
{
browserName: 'chrome',
'goog:chromeOptions': {
args: HEADLESS ? ['headless', 'disable-gpu'] : [],
args: headless ? ['headless', 'disable-gpu'] : [],
},
},
],

services: ['selenium-standalone'],
services: [
[
'selenium-standalone',
{
installArgs: {
drivers,
},
args: {
drivers,
},
},
],
],
});
3 changes: 3 additions & 0 deletions packages/perf-benchmarks/best.base.config.js
Expand Up @@ -33,6 +33,9 @@ module.exports = {
options: {
authToken: process.env.HUB_AUTH_TOKEN,
},
ssl: {
rejectUnauthorized: false,
},
},
},
],
Expand Down

0 comments on commit 792323b

Please sign in to comment.