Skip to content

Commit 25d9789

Browse files
committed
fix: upgrade node
1 parent c1fe6ca commit 25d9789

File tree

5 files changed

+504
-445
lines changed

5 files changed

+504
-445
lines changed

.mdeprc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"node": "10.16.0",
2+
"node": "10.16.3",
33
"repo": "microfleet",
44
"p": "html-to-pdf",
55
"nycCoverage": false,

__tests__/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ services:
2020

2121
tester:
2222
container_name: tester
23-
image: makeomatic/node:10.16.0-chrome-tester
23+
image: makeomatic/node:10.16.3-chrome-tester
2424
links:
2525
- redis
2626
- rabbitmq

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@
2222
},
2323
"dependencies": {
2424
"64": "^0.2.0",
25-
"@hapi/hapi": "^18.1.0",
26-
"@microfleet/core": "^14.0.0",
25+
"@hapi/hapi": "^18.3.2",
26+
"@microfleet/core": "^14.0.1",
2727
"@microfleet/transport-amqp": "^14.0.2",
2828
"@microfleet/validation": "^8.1.2",
2929
"bluebird": "^3.5.5",
3030
"bluebird-retry": "^0.11.0",
31-
"chrome-launcher": "^0.11.1",
32-
"chrome-remote-interface": "^0.27.2",
31+
"chrome-launcher": "^0.11.2",
32+
"chrome-remote-interface": "^0.28.0",
3333
"common-errors": "^1.0.5",
3434
"debug": "^4.1.0",
3535
"ms-conf": "^5.0.0",
@@ -48,19 +48,19 @@
4848
"@babel/plugin-transform-strict-mode": "^7.2.0",
4949
"@makeomatic/deploy": "^8.4.5",
5050
"@semantic-release/changelog": "^3.0.4",
51-
"@semantic-release/exec": "^3.3.5",
51+
"@semantic-release/exec": "^3.3.6",
5252
"@semantic-release/git": "7.0.16",
5353
"babel-eslint": "^10.0.2",
5454
"cheerio": "^1.0.0-rc.3",
5555
"codecov": "^3.5.0",
5656
"cross-env": "^5.2.0",
57-
"eslint": "^6.1.0",
57+
"eslint": "^6.2.0",
5858
"eslint-config-makeomatic": "^3.0.1",
5959
"eslint-plugin-import": "^2.18.2",
6060
"eslint-plugin-promise": "^4.2.1",
61-
"jest": "^24.8.0",
61+
"jest": "^24.9.0",
6262
"json": "^9.0.6",
63-
"rimraf": "^2.6.2"
63+
"rimraf": "^3.0.0"
6464
},
6565
"files": [
6666
"src/",

src/utils/chrome.js

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,6 @@ class Chrome {
5454
handleSIGINT: false,
5555
}, restOpts);
5656

57-
// NOTE: this is a temporary workaround for
58-
// https://github.com/GoogleChrome/chrome-launcher/pull/162
59-
this.settings.ignoreDefaultFlags = true;
60-
this.settings.chromeFlags = [
61-
...Launcher.defaultFlags(),
62-
...this.settings.chromeFlags,
63-
];
64-
6557
// use custom logger if provided
6658
this.log = logger || {
6759
info: (...args) => debug('[info]', ...args),

0 commit comments

Comments
 (0)