Skip to content

Commit

Permalink
Upgrade modules
Browse files Browse the repository at this point in the history
  • Loading branch information
kmalakoff committed Jan 4, 2025
1 parent 04c1eb9 commit deb16d1
Show file tree
Hide file tree
Showing 27 changed files with 200 additions and 1,574 deletions.
2 changes: 1 addition & 1 deletion .depcheckrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ignores: ["fs-iterator", "depcheck", "@types/*", "@biomejs/*"]
ignores: ["fs-iterator", "@types/*", "@biomejs/*"]
8 changes: 5 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,13 @@ jobs:
node-version: ${{ matrix.node-version }}
- run: git config --global user.name "Github Actions"
- run: git config --global user.email "[email protected]"
- run: npm uninstall ts-dev-stack node-version-use depcheck -g
- run: npm install ts-dev-stack node-version-use depcheck -g
- run: npm install rimraf -g
- run: rimraf $HOME/.im
- run: npm install ts-dev-stack node-version-use -g --force
- run: npm install depcheck -g
- run: depcheck
- run: npm ci
# - run: npm run version
- run: npm run docs
- run: npm run build
- run: npm run test
- run: npm run test:engines
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
.DS_Store
.tmp/
.cache/
node_modules/
dist/
docs/
Expand Down
13 changes: 11 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,17 @@
{
"type": "node",
"request": "launch",
"name": "test:node",
"program": "${workspaceFolder}/node_modules/.bin/tsds",
"name": "test:node (mac)",
"program": "/Users/kevin/.nvm/versions/node/v22.12.0/lib/node_modules/ts-dev-stack/bin/cli.cjs",
"args": ["test:node", "--no-timeouts"],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
},
{
"type": "node",
"request": "launch",
"name": "test:node (windows)",
"program": "C:/Program Files (x86)/nodejs/node_modules/ts-dev-stack/bin/cli.cjs",
"args": ["test:node", "--no-timeouts"],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
Expand Down
2 changes: 1 addition & 1 deletion biome.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"files": {
"ignore": ["assets/**", "dist/**", "node_modules/**", "test/data/**"]
"ignore": ["test/data/**"]
},
"formatter": {
"enabled": true,
Expand Down
Loading

0 comments on commit deb16d1

Please sign in to comment.