Skip to content

Commit 4bee1e6

Browse files
committedMar 13, 2021
feat: upgrade deps, pin husky to 4 due to license
1 parent 200ffc0 commit 4bee1e6

File tree

5 files changed

+647
-527
lines changed

5 files changed

+647
-527
lines changed
 

‎.mdeprc

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"test_framework": "jest --coverage --coverageDirectory <coverageDirectory> --runTestsByPath --runInBand",
44
"tests": "__tests__/*.js",
55
"auto_compose": true,
6-
"node": "12",
6+
"node": "14",
77
"tester_flavour": "chrome-tester",
88
"services": [
99
"redisSentinel",

‎__tests__/install.spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ describe('test installing the package', () => {
7878
test('returns current node version in module', async () => {
7979
process.chdir(cwd);
8080
const { stdout } = await execFile('mdep', ['get-config', '--path', 'node']);
81-
expect(stripEOF(stdout)).toBe('12');
81+
expect(stripEOF(stdout)).toBe('14');
8282
});
8383
});
8484

‎bin/cmds/test_cmds/auto-compose.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ exports.handler = (argv) => {
5252

5353
// write out the file, ensure dir exists
5454
mkdir(`${dir}/${argv.project}`);
55-
fs.writeFileSync(location, jsYaml.safeDump(compose));
55+
fs.writeFileSync(location, jsYaml.dump(compose));
5656

5757
// rewrite location of docker-compose
5858
argv.docker_compose = location;
@@ -122,7 +122,7 @@ function rabbitmq(compose, argv) {
122122

123123
function elasticsearch(compose, argv) {
124124
compose.services.elasticsearch = merge({
125-
image: 'docker.elastic.co/elasticsearch/elasticsearch:6.4.1',
125+
image: 'elasticsearch:7.11.1',
126126
hostname: 'elasticsearch',
127127
expose: [
128128
'9200',

‎package.json

+14-14
Original file line numberDiff line numberDiff line change
@@ -22,41 +22,41 @@
2222
"node": ">= 12.15.0"
2323
},
2424
"devDependencies": {
25-
"@babel/cli": "^7.12.10",
26-
"@babel/core": "^7.12.10",
27-
"@babel/plugin-proposal-class-properties": "^7.12.1",
28-
"@babel/plugin-transform-strict-mode": "^7.12.1",
25+
"@babel/cli": "^7.13.10",
26+
"@babel/core": "^7.13.10",
27+
"@babel/plugin-proposal-class-properties": "^7.13.0",
28+
"@babel/plugin-transform-strict-mode": "^7.12.13",
2929
"codecov": "^3.8.1",
3030
"cross-env": "^7.0.3",
31-
"eslint": "^7.16.0",
32-
"eslint-config-makeomatic": "^5.0.3",
31+
"eslint": "^7.22.0",
32+
"eslint-config-makeomatic": "^5.0.4",
3333
"eslint-plugin-import": "^2.22.1",
34-
"eslint-plugin-promise": "^4.2.1",
35-
"eslint-plugin-unicorn": "^25.0.0",
34+
"eslint-plugin-promise": "^4.3.1",
35+
"eslint-plugin-unicorn": "^28.0.2",
3636
"jest": "^26.6.3",
3737
"tempy": "^1.0.0"
3838
},
3939
"dependencies": {
40-
"@commitlint/cli": "^11.0.0",
40+
"@commitlint/cli": "^12.0.1",
4141
"bluebird": "^3.7.2",
4242
"chrome-launcher": "^0.13.4",
43-
"chrome-remote-interface": "^0.28.1",
43+
"chrome-remote-interface": "^0.29.0",
4444
"death": "^1.1.0",
4545
"find-up": "^5.0.0",
4646
"glob": "^7.1.6",
47-
"husky": "^4.3.6",
47+
"husky": "~4.x.x",
4848
"hyperid": "^2.1.0",
4949
"is": "^3.2.1",
50-
"js-yaml": "^3.14.1",
50+
"js-yaml": "^4.0.0",
5151
"lodash.get": "^4.4.2",
5252
"lodash.merge": "^4.6.2",
5353
"lodash.set": "^4.3.2",
5454
"ms-conf": "^7.0.2",
5555
"npm-path": "^2.0.4",
56-
"pino": "^6.8.0",
56+
"pino": "^6.11.2",
5757
"read-pkg": "^5.2.0",
5858
"rimraf": "^3.0.2",
59-
"semantic-release": "17.3.0",
59+
"semantic-release": "17.4.2",
6060
"shelljs": "^0.8.3",
6161
"strip-final-newline": "^2.0.0",
6262
"yargs": "^16.2.0"

‎yarn.lock

+629-509
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Please sign in to comment.