Skip to content

Commit 44a5c31

Browse files
authored
Merge pull request #473 from shalldie/v2.0
V2.0
2 parents 91d3803 + 5940820 commit 44a5c31

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+5232
-1750
lines changed

.eslintignore

Lines changed: 0 additions & 7 deletions
This file was deleted.

.eslintrc.js

Lines changed: 0 additions & 22 deletions
This file was deleted.

.github/pull_request_template.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ Thank you for submitting a Pull Request. Please select a list to check:
55

66
### Checklist - en
77

8-
- [ ] Read our [Pull Request guidelines](https://github.com/shalldie/vscode-background/blob/master/CONTRIBUTING.md).
8+
- [ ] Read our [Contributing Guide](https://github.com/shalldie/vscode-background/blob/master/docs/contributing.md).
99
- [ ] Associate an issue with the Pull Request.
1010
- [ ] Ensure that the code is up-to-date with the `master` branch.
1111
- [ ] Include a description of the proposed changes.
1212

1313
### Checklist - zh-CN
1414

15-
- [ ] 阅读 [贡献指南](https://github.com/shalldie/vscode-background/blob/master/CONTRIBUTING.zh-CN.md)
15+
- [ ] 阅读 [贡献指南](https://github.com/shalldie/vscode-background/blob/master/docs/contributing.zh-CN.md)
1616
- [ ] 把 issue 和 pr 相关联.
1717
- [ ] 确保代码与 `master` 分支保持同步.
1818
- [ ] 尽可能详细的描述所做的变更.

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,17 @@ jobs:
1616

1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v3
19+
uses: actions/checkout@v4
2020

2121
- name: Install Node.js
22-
uses: actions/setup-node@v3
22+
uses: actions/setup-node@v4
2323
with:
24-
node-version-file: ".nvmrc"
24+
node-version-file: ".node-version"
2525

2626
# validate compile、package
2727
- run: npm ci
2828
- run: npm run package
29-
- uses: actions/upload-artifact@v3
29+
- uses: actions/upload-artifact@v4
3030
with:
3131
name: build-artifact
3232
path: "*.vsix"

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
out
2+
dist
23
node_modules
34
.vscode-test/
45
*.vsix

.husky/pre-commit

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1 @@
1-
#!/usr/bin/env sh
2-
. "$(dirname -- "$0")/_/husky.sh"
3-
41
npm run lint

.node-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
20

.nvmrc

Lines changed: 0 additions & 1 deletion
This file was deleted.

.prettierignore

Lines changed: 0 additions & 3 deletions
This file was deleted.

.prettierrc

Lines changed: 0 additions & 18 deletions
This file was deleted.

0 commit comments

Comments
 (0)