Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .file-updater.mjs
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import { runFileUpdater } from "./out/file-updater/index.js";
import { runFileUpdater } from "./out/fileUpdater/index.js";

export default runFileUpdater;
6 changes: 3 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
- name: Install dependencies
run: npm --color ci

- name: Compile
run: npm --color run compile
- name: Build
run: npm --color run build

- name: Run lint (Linux)
run: npm --color run lint
Expand All @@ -39,6 +39,6 @@ jobs:
run: xvfb-run -a npm --color run test:ci
if: runner.os == 'Linux'

- name: Run tests (Windows, macOS)
- name: Run tests (Windows, MacOS)
run: npm --color run test:ci
if: runner.os != 'Linux'
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,3 @@ node_modules
out
stuff
*.vsix
*.txt
26 changes: 4 additions & 22 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,32 +3,14 @@
"tasks": [
{
"label": "Build",
"dependsOn": ["Bundle assets", "Watch"],
"type": "npm",
"script": "build",
"group": {
"kind": "build",
"isDefault": true
}
},

{
"label": "Bundle assets",
"type": "npm",
"script": "bundle-assets",
"group": "build",
"presentation": {
"reveal": "never"
}
},

{
"label": "Watch",
"type": "npm",
"script": "watch",
"problemMatcher": "$tsc-watch",
"isBackground": true,
"group": "build",
},
"presentation": {
"reveal": "never"
"reveal": "silent"
}
}
]
Expand Down
13 changes: 0 additions & 13 deletions .vscodeignore

This file was deleted.

2 changes: 1 addition & 1 deletion eslint.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export default eslintTs.config(
},
},
{
files: ["eslint.config.ts", "src/typings/**/*"],
files: ["eslint.config.ts", ".file-updater.mjs", "src/typings/**/*"],
extends: [eslintTs.configs.disableTypeChecked],
},
);
Loading