Skip to content

Commit 93d76c7

Browse files
committedJan 31, 2022
fix: non-strict mdep install
1 parent 7c91ed4 commit 93d76c7

File tree

3 files changed

+74
-69
lines changed

3 files changed

+74
-69
lines changed
 

‎bin/cmds/install.js

+5
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,8 @@ exports.handler = async () => {
88
proc.all.pipe(process.stdout);
99
await proc;
1010
};
11+
exports.builder = (yargs) => {
12+
return yargs
13+
.strict(false)
14+
.help();
15+
};

‎package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"@babel/plugin-proposal-class-properties": "^7.13.0",
2828
"@babel/plugin-transform-strict-mode": "^7.12.13",
2929
"codecov": "^3.8.1",
30-
"eslint": "^8.4.1",
30+
"eslint": "^8.8.0",
3131
"eslint-config-makeomatic": "^5.0.4",
3232
"eslint-plugin-import": "^2.25.3",
3333
"eslint-plugin-promise": "^6.0.0",
@@ -39,7 +39,7 @@
3939
"dependencies": {
4040
"@commitlint/cli": "^16.1.0",
4141
"@sinclair/typebox": "^0.23.3",
42-
"@types/node": "^17.0.12",
42+
"@types/node": "^17.0.13",
4343
"bluebird": "^3.7.2",
4444
"chrome-launcher": "^0.15.0",
4545
"chrome-remote-interface": "^0.31.1",
@@ -61,15 +61,15 @@
6161
"lodash.set": "^4.3.2",
6262
"ms-conf": "^7.0.2",
6363
"npm-path": "^2.0.4",
64-
"pino": "^7.6.4",
64+
"pino": "^7.6.5",
6565
"read-pkg": "^5.2.0",
6666
"rimraf": "^3.0.2",
6767
"semantic-release": "19.0.2",
6868
"serialize-error": "^8.0.0",
6969
"shelljs": "^0.8.3",
7070
"split2": "^4.1.0",
7171
"strip-final-newline": "=2.x.x",
72-
"undici": "^4.12.2",
72+
"undici": "^4.13.0",
7373
"yargs": "^17.3.0"
7474
},
7575
"bin": {

0 commit comments

Comments
 (0)
Please sign in to comment.