Skip to content

Commit

Permalink
build(deps-dev): bump @types/node to v16
Browse files Browse the repository at this point in the history
  • Loading branch information
bavulapati committed Feb 3, 2022
1 parent 2526031 commit 94f3cc7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion npm/package.json
Expand Up @@ -9,7 +9,7 @@
},
"dependencies": {
"@electron/get": "^1.13.0",
"@types/node": "^14.6.2",
"@types/node": "^16.11.22",
"extract-zip": "^1.0.3"
},
"engines": {
Expand Down
3 changes: 1 addition & 2 deletions spec-main/types-spec.ts
Expand Up @@ -5,7 +5,6 @@ describe('bundled @types/node', () => {
expect(require('../npm/package.json').dependencies).to.have.property('@types/node');
const range = require('../npm/package.json').dependencies['@types/node'];
expect(range).to.match(/^\^.+/, 'should allow any type dep in a major range');
// TODO(codebytere): re-enable after https://github.com/DefinitelyTyped/DefinitelyTyped/pull/52594 is merged.
// expect(range.slice(1).split('.')[0]).to.equal(process.versions.node.split('.')[0]);
expect(range.slice(1).split('.')[0]).to.equal(process.versions.node.split('.')[0]);
});
});

0 comments on commit 94f3cc7

Please sign in to comment.