Skip to content
This repository was archived by the owner on Dec 11, 2022. It is now read-only.

Commit d1cc4e8

Browse files
committed
Install the exact version instead of range
^version means install any version that is compatible with the range. This means npm can even install tree-sitter-javascript version 0.15 since in semver 0.15 should be compatible with 0.19. tree-sitter seems to have broken semver. 0.15 is not compatible with 0.19
1 parent da81489 commit d1cc4e8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
"coffeelint": "^1.10.1"
2424
},
2525
"dependencies": {
26-
"tree-sitter-javascript": "^0.19.0",
27-
"tree-sitter-jsdoc": "^0.19.0",
28-
"tree-sitter-regex": "^0.19.0"
26+
"tree-sitter-javascript": "0.19.0",
27+
"tree-sitter-jsdoc": "0.19.0",
28+
"tree-sitter-regex": "0.19.0"
2929
}
3030
}

0 commit comments

Comments
 (0)