Skip to content

Commit

Permalink
Upgrade modules
Browse files Browse the repository at this point in the history
  • Loading branch information
kmalakoff committed Dec 25, 2024
1 parent 7c9ff0c commit 840fcbd
Show file tree
Hide file tree
Showing 19 changed files with 2,891 additions and 3,971 deletions.
2 changes: 1 addition & 1 deletion .depcheckrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ignores: ["walk-filtered", "depcheck", "ts-dev-stack", "@types/*"]
ignores: ["walk-filtered", "depcheck", "ts-dev-stack", "@types/*", "@biomejs/*"]
6 changes: 3 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ updates:
- package-ecosystem: npm
directory: '/'
schedule:
interval: daily
ignore:
- dependency-name: 'rimraf'
interval: weekly
- dependency-name: '@types/mocha'
- dependency-name: '@types/node'
- package-ecosystem: 'github-actions'
directory: '/'
schedule:
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: [latest]
node: ['lts/Jod']
os: [ubuntu-latest, windows-latest]
# os: [ubuntu-latest, windows-latest, macos-latest]
steps:
Expand All @@ -19,8 +19,9 @@ 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 -g
- run: npm install node-version-use -g
- run: npm uninstall node-version-use depcheck -g
- run: npm install node-version-use depcheck -g
- run: depcheck
- run: npm ci
- run: npm run version
- run: npm run build
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
node_modules/
dist/
docs/
npm-debug.log
.tmp/
data/
Expand Down
4 changes: 0 additions & 4 deletions .ncurc.json

This file was deleted.

34 changes: 2 additions & 32 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,42 +1,12 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "test:node",
"program": "${workspaceFolder}/node_modules/mocha-compat/bin/_mocha-compat",
"args": ["--no-timeouts", "--colors", "${workspaceFolder}/test/**/*.test.*"],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
},
{
"type": "node",
"request": "launch",
"name": "test:node",
"program": "${workspaceFolder}/node_modules/mocha-compat/bin/nvu",
"args": ["mocha-compat", "--no-timeouts", "--colors", "${workspaceFolder}/test/**/*.test.*"],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
},
{
"type": "node",
"request": "launch",
"name": "memory",
"cwd": "${workspaceFolder}/performance",
"program": "${workspaceFolder}/performance/memory/index.js",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
},
{
"type": "node",
"request": "launch",
"name": "ops",
"cwd": "${workspaceFolder}/performance",
"program": "${workspaceFolder}/performance/operations/index.js",
"program": "${workspaceFolder}/node_modules/.bin/tsds",
"args": ["test:node", "--no-timeouts", "${workspaceFolder}/test/**/*.test.*"],
"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 840fcbd

Please sign in to comment.