Skip to content

Commit

Permalink
Upgrade modules
Browse files Browse the repository at this point in the history
  • Loading branch information
kmalakoff committed Dec 27, 2024
1 parent d587a23 commit 2102176
Show file tree
Hide file tree
Showing 8 changed files with 425 additions and 2,524 deletions.
2 changes: 1 addition & 1 deletion .depcheckrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ignores: ["esm-require-directory", "depcheck", "ts-dev-stack", "@types/*", "@biomejs/*"]
ignores: ["esm-require-directory", "depcheck", "ts-swc-loaders", "@types/*", "@biomejs/*", "mocha-compat"]
2 changes: 2 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ updates:
directory: '/'
schedule:
interval: weekly
ignore:
- dependency-name: 'mocha'
- dependency-name: '@types/mocha'
- dependency-name: '@types/node'
- package-ecosystem: 'github-actions'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ 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 node-version-use depcheck -g
- run: npm install node-version-use depcheck -g
- run: npm uninstall ts-dev-stack node-version-use depcheck -g
- run: npm install ts-dev-stack node-version-use depcheck -g
- run: depcheck
- run: npm ci
- run: npm run version
Expand Down
4 changes: 4 additions & 0 deletions .ncurc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"upgrade": true,
"reject": ["mocha"]
}
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"request": "launch",
"name": "test:node",
"program": "${workspaceFolder}/node_modules/.bin/tsds",
"args": ["test:node", "--no-timeouts", "${workspaceFolder}/test/**/*.test.*"],
"args": ["test:node", "--no-timeouts"],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
}
Expand Down
3 changes: 3 additions & 0 deletions biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@
"noUnusedVariables": "warn",
"noInnerDeclarations": "off"
},
"performance": {
"noDelete": "off"
},
"style": {
"noParameterAssign": "off",
"useNumberNamespace": "off",
Expand Down
Loading

0 comments on commit 2102176

Please sign in to comment.