Skip to content

Commit 98d9839

Browse files
committed
Upgrade modules
1 parent 9c263fb commit 98d9839

File tree

5 files changed

+35
-24
lines changed

5 files changed

+35
-24
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ jobs:
2222
- run: npm uninstall ts-dev-stack node-version-use depcheck -g
2323
- run: npm install ts-dev-stack node-version-use depcheck -g
2424
- run: depcheck
25-
- run: npm ci --foreground-scripts
26-
# - run: npm run version
25+
- run: npm ci
26+
- run: npm run docs
2727
- run: npm run build
2828
- run: npm run test
2929
- run: npm run test:engines

.vscode/launch.json

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,17 @@
44
{
55
"type": "node",
66
"request": "launch",
7-
"name": "test:node",
8-
"program": "/Users/kevin/.nvm/versions/node/v22.12.0/bin/tsds",
7+
"name": "test:node (mac)",
8+
"program": "/Users/kevin/.nvm/versions/node/v22.12.0/lib/node_modules/ts-dev-stack/bin/cli.cjs",
9+
"args": ["test:node", "--no-timeouts"],
10+
"console": "integratedTerminal",
11+
"internalConsoleOptions": "neverOpen"
12+
},
13+
{
14+
"type": "node",
15+
"request": "launch",
16+
"name": "test:node (windows)",
17+
"program": "C:/Program Files (x86)/nodejs/node_modules/ts-dev-stack/bin/cli.cjs",
918
"args": ["test:node", "--no-timeouts"],
1019
"console": "integratedTerminal",
1120
"internalConsoleOptions": "neverOpen"

package-lock.json

Lines changed: 19 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,14 @@
3939
"scripts": {
4040
"build": "tsds build",
4141
"deploy": "tsds deploy",
42+
"docs": "tsds docs",
4243
"format": "biome check --write --unsafe src/ test/",
4344
"test": "tsds test:node --no-timeouts",
4445
"test:engines": "nvu engines npm test",
4546
"version": "tsds version"
4647
},
4748
"dependencies": {
48-
"cross-spawn-cb": "^2.0.1",
49+
"cross-spawn-cb": "^2.0.4",
4950
"exit": "^0.1.2",
5051
"getopts-compat": "^2.2.5",
5152
"queue-cb": "^1.4.4",

tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"compilerOptions": {
3+
"skipLibCheck": true,
34
"outDir": "dist",
45
"lib": ["es2015"],
56
"types": ["mocha", "node"],

0 commit comments

Comments
 (0)