Skip to content

Commit 25c296b

Browse files
authored
(chore) bump test frameworks (#1108)
adding ts-node to the top level package.json even if it's only used within the language-server package beccause else mocha, which is in node_modules at the top level, cannot find ts-node (which would then be in a sub directory's node_modules)
1 parent cb3a1c1 commit 25c296b

File tree

4 files changed

+355
-365
lines changed

4 files changed

+355
-365
lines changed

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
"eslint-plugin-import": "^2.22.1",
2727
"eslint-plugin-svelte3": "^2.7.3",
2828
"prettier": "2.3.0",
29-
"cross-env": "^7.0.2"
29+
"cross-env": "^7.0.2",
30+
"ts-node": "^10.0.0"
3031
}
3132
}

packages/language-server/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@
4444
"@types/sinon": "^7.5.2",
4545
"@types/source-map": "^0.5.7",
4646
"cross-env": "^7.0.2",
47-
"mocha": "^7.1.0",
48-
"sinon": "^9.0.0",
49-
"ts-node": "^8.6.2"
47+
"mocha": "^9.0.0",
48+
"sinon": "^11.0.0",
49+
"ts-node": "^10.0.0"
5050
},
5151
"dependencies": {
5252
"chokidar": "^3.4.1",

packages/svelte2tsx/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"@types/unist": "^2.0.3",
2828
"@types/vfile": "^3.0.2",
2929
"magic-string": "^0.25.7",
30-
"mocha": "^6.2.2",
30+
"mocha": "^9.0.0",
3131
"periscopic": "^2.0.2",
3232
"rollup": "2.52.7",
3333
"rollup-plugin-delete": "^2.0.0",

0 commit comments

Comments
 (0)