Skip to content

Commit 036f9f5

Browse files
authored
Merge pull request #3 from deinsoftware/dev
Dev
2 parents b96e8dd + 96205a4 commit 036f9f5

File tree

5 files changed

+34
-2
lines changed

5 files changed

+34
-2
lines changed

.github/workflows/publish.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,20 @@ on:
88
types: [published]
99

1010
jobs:
11+
publish-vsce:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v3
15+
- uses: actions/setup-node@v3
16+
with:
17+
node-version: 18
18+
registry-url: https://registry.npmjs.org/
19+
- run: npm i -g vsce
20+
- run: vsce publish -p ${{ secrets.VSCE_PAT }}
21+
1122
tweet:
23+
needs: publish-vsce
24+
if: ${{ success() }}
1225
runs-on: ubuntu-latest
1326
steps:
1427
- uses: Eomm/why-don-t-you-tweet@v1

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
build
12
out
23
node_modules
34
.vscode-test/

.vscode/settings.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,10 @@
2626
},
2727
"explorer.fileNesting.patterns": {
2828
"README*": "CHANGELOG*, CODE_OF_CONDUCT.md, CONTRIBUTING.md, LICENSE*, README*, CHEATSHEET*"
29+
},
30+
"[json][jsonc]": {
31+
"editor.formatOnSave": true,
32+
"editor.tabSize": 4,
33+
"editor.defaultFormatter": "esbenp.prettier-vscode"
2934
}
3035
}

.vscode/tasks.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=733558
3+
// for the documentation about the tasks.json format
4+
"version": "2.0.0",
5+
"tasks": [
6+
{
7+
"label": "build",
8+
"type": "shell",
9+
"command": "vsce",
10+
"args": ["package", "--out", "build/"]
11+
}
12+
]
13+
}

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@
165165
]
166166
},
167167
"volta": {
168-
"node": "16.13.1",
169-
"npm": "8.1.2"
168+
"node": "18.7.0",
169+
"npm": "8.15.0"
170170
}
171171
}

0 commit comments

Comments
 (0)