Skip to content

Commit 7c64fc7

Browse files
committed
Fix Components.js version range being too strict
1 parent 91ba5ff commit 7c64fc7

File tree

3 files changed

+219
-153
lines changed

3 files changed

+219
-153
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
"@types/semver": "^7.3.4",
7272
"@typescript-eslint/typescript-estree": "^5.11.0",
7373
"comment-parser": "^0.7.6",
74-
"componentsjs": "5.0.0",
74+
"componentsjs": "^5.0.1",
7575
"jsonld-context-parser": "^2.1.5",
7676
"lru-cache": "^6.0.0",
7777
"minimist": "^1.2.5",

test/resolution/ResolutionContext.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ describe('ResolutionContext', () => {
122122

123123
it('Should resolve from the currentFilePath for a package without separate typings without extension', async() => {
124124
expect(resolutionContext.resolvePackageIndex('@comunica/bus-rdf-parse', Path.join(__dirname, '../../')))
125-
.toEqual(Path.join(__dirname, '../../node_modules/@comunica/bus-rdf-parse/index.d.ts'));
125+
.toEqual(Path.join(__dirname, '../../node_modules/@comunica/bus-rdf-parse/lib/index.d.ts'));
126126
});
127127

128128
it('Should resolve from the currentFilePath for a built-in package', async() => {

0 commit comments

Comments
 (0)