Skip to content

Commit d92233f

Browse files
committed
text change and all eol->lf
Signed-off-by: Qingpeng Li <qingpeng9802@gmail.com>
1 parent df28fe2 commit d92233f

17 files changed

+1549
-1545
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Does this issue occur when all the other extensions are disabled?: Yes/No
1616
- OS Version: *which OS and its version*
1717

1818
**Describe the bug**
19-
A clear and concise description of what the bug is.
19+
A clear and concise description of what the bug or potential improvement is.
2020

2121
**Steps to Reproduce**
2222
Steps to reproduce the behavior:

.github/ISSUE_TEMPLATE/textmate_syntax_related.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Please help confirm if it is a purely Textmate grammar issue:
1818
- OS Version: *which OS and its version*
1919

2020
**Describe the bug**
21-
A clear and concise description of what the bug is.
21+
A clear and concise description of what the bug or potential improvement is.
2222

2323
**Code**
2424
```lsp

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ jobs:
2222
name: build
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/checkout@v4.1.1
26-
- uses: actions/setup-node@v4.0.2
25+
- uses: actions/checkout@v4
26+
- uses: actions/setup-node@v4
2727
with:
2828
node-version: 20
2929
- name: Install dependencies

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ jobs:
2424
#runs-on: ${{ matrix.os }}
2525
runs-on: ubuntu-latest
2626
steps:
27-
- uses: actions/checkout@v4.1.1
28-
- uses: actions/setup-node@v4.0.2
27+
- uses: actions/checkout@v4
28+
- uses: actions/setup-node@v4
2929
with:
3030
node-version: 20
3131
- name: Install dependencies

.github/workflows/vsce_package.yml

Lines changed: 62 additions & 62 deletions
Original file line numberDiff line numberDiff line change
@@ -1,62 +1,62 @@
1-
name: vsce Package
2-
3-
# Controls when the workflow will run
4-
on:
5-
push:
6-
branches:
7-
- master
8-
9-
pull_request:
10-
11-
release:
12-
types: [created]
13-
14-
# Allows you to run this workflow manually from the Actions tab
15-
workflow_dispatch:
16-
inputs:
17-
tags:
18-
description: "Tag Name"
19-
required: false
20-
21-
workflow_call:
22-
23-
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
24-
jobs:
25-
# This workflow contains a single job called "package"
26-
package:
27-
name: package
28-
runs-on: ubuntu-latest
29-
# Steps represent a sequence of tasks that will be executed as part of the job
30-
steps:
31-
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
32-
- uses: actions/checkout@v4.1.1
33-
- uses: actions/setup-node@v4.0.2
34-
with:
35-
node-version: 20
36-
- name: Install dependencies
37-
run: npm ci
38-
39-
#- name: Build Grammar from yaml to json
40-
# run: npm run bg
41-
42-
- name: Package web extension
43-
run: npm run vscode:prepublish
44-
45-
- name: Install vsce
46-
run: npm i -g @vscode/vsce
47-
48-
- name: run vsce package
49-
run: npm run package
50-
51-
- name: Archive vsix production
52-
uses: actions/upload-artifact@v4.3.1
53-
with:
54-
name: vsix production
55-
path: ./*.vsix
56-
if-no-files-found: error
57-
58-
- name: print tag
59-
env:
60-
TAGS: ${{ github.event.inputs.tags }}
61-
run: |
62-
echo "[$TAGS] build completed."
1+
name: vsce Package
2+
3+
# Controls when the workflow will run
4+
on:
5+
push:
6+
branches:
7+
- master
8+
9+
pull_request:
10+
11+
release:
12+
types: [created]
13+
14+
# Allows you to run this workflow manually from the Actions tab
15+
workflow_dispatch:
16+
inputs:
17+
tags:
18+
description: "Tag Name"
19+
required: false
20+
21+
workflow_call:
22+
23+
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
24+
jobs:
25+
# This workflow contains a single job called "package"
26+
package:
27+
name: package
28+
runs-on: ubuntu-latest
29+
# Steps represent a sequence of tasks that will be executed as part of the job
30+
steps:
31+
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
32+
- uses: actions/checkout@v4
33+
- uses: actions/setup-node@v4
34+
with:
35+
node-version: 20
36+
- name: Install dependencies
37+
run: npm ci
38+
39+
#- name: Build Grammar from yaml to json
40+
# run: npm run bg
41+
42+
- name: Package web extension
43+
run: npm run vscode:prepublish
44+
45+
- name: Install vsce
46+
run: npm i -g @vscode/vsce
47+
48+
- name: run vsce package
49+
run: npm run package
50+
51+
- name: Archive vsix production
52+
uses: actions/upload-artifact@v4
53+
with:
54+
name: vsix production
55+
path: ./*.vsix
56+
if-no-files-found: error
57+
58+
- name: print tag
59+
env:
60+
TAGS: ${{ github.event.inputs.tags }}
61+
run: |
62+
echo "[$TAGS] build completed."

.github/workflows/vsce_publish.yml

Lines changed: 44 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,44 @@
1-
name: vsce Publish
2-
3-
# Controls when the workflow will run
4-
on:
5-
# Allows you to run this workflow manually from the Actions tab
6-
workflow_dispatch:
7-
inputs:
8-
tags:
9-
description: "Tag Name"
10-
required: true
11-
12-
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
13-
jobs:
14-
test:
15-
uses: ./.github/workflows/test.yml
16-
17-
publish:
18-
name: publish
19-
#needs: test
20-
runs-on: ubuntu-latest
21-
steps:
22-
- uses: actions/checkout@v4.1.1
23-
- uses: actions/setup-node@v4.0.2
24-
with:
25-
node-version: 20
26-
- name: Install dependencies
27-
run: npm ci
28-
29-
- name: Package web extension
30-
run: npm run vscode:prepublish
31-
32-
- name: Install vsce
33-
run: npm i -g @vscode/vsce
34-
35-
- name: run vsce publish
36-
run: npm run publish
37-
env:
38-
VSCE_PAT: ${{ secrets.VSCE_PAT }}
39-
40-
- name: print tag
41-
env:
42-
TAGS: ${{ github.event.inputs.tags }}
43-
run: |
44-
echo "[$TAGS] publish completed."
1+
name: vsce Publish
2+
3+
# Controls when the workflow will run
4+
on:
5+
# Allows you to run this workflow manually from the Actions tab
6+
workflow_dispatch:
7+
inputs:
8+
tags:
9+
description: "Tag Name"
10+
required: true
11+
12+
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
13+
jobs:
14+
test:
15+
uses: ./.github/workflows/test.yml
16+
17+
publish:
18+
name: publish
19+
#needs: test
20+
runs-on: ubuntu-latest
21+
steps:
22+
- uses: actions/checkout@v4
23+
- uses: actions/setup-node@v4
24+
with:
25+
node-version: 20
26+
- name: Install dependencies
27+
run: npm ci
28+
29+
- name: Package web extension
30+
run: npm run vscode:prepublish
31+
32+
- name: Install vsce
33+
run: npm i -g @vscode/vsce
34+
35+
- name: run vsce publish
36+
run: npm run publish
37+
env:
38+
VSCE_PAT: ${{ secrets.VSCE_PAT }}
39+
40+
- name: print tag
41+
env:
42+
TAGS: ${{ github.event.inputs.tags }}
43+
run: |
44+
echo "[$TAGS] publish completed."

.github/workflows/vsce_publish_pre.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ jobs:
1616
#needs: test
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v4.1.1
20-
- uses: actions/setup-node@v4.0.2
19+
- uses: actions/checkout@v4
20+
- uses: actions/setup-node@v4
2121
with:
2222
node-version: 20
2323
- name: Install dependencies

.gitignore

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
out
2-
dist
3-
node_modules
4-
.vscode-test-web/
5-
*.vsix
6-
*.log
7-
.parcel-cache
1+
out
2+
dist
3+
node_modules
4+
.vscode-test-web/
5+
*.vsix
6+
*.log
7+
.parcel-cache
88
syntaxes/fixtures/generated/*

0 commit comments

Comments
 (0)