@daiyam/artifact-vsx-ts 0.5.3 → 0.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -13,7 +13,7 @@ Getting Started
13
13
  mkdir myproject
14
14
  cd myproject
15
15
  npm init -y
16
- artifact add @daiyam/base @daiyam/lang-ts @daiyam/vsx-ts
16
+ artifact add @daiyam/lang-js @daiyam/lang-ts @daiyam/vsx-ts
17
17
  ```
18
18
 
19
19
  Dependencies
@@ -7,17 +7,21 @@ jobs:
7
7
  publish:
8
8
  runs-on: ubuntu-latest
9
9
  steps:
10
- - uses: actions/checkout@v2
11
- - uses: actions/setup-node@v2
10
+ - uses: actions/checkout@v4
11
+ - uses: actions/setup-node@v4
12
12
  with:
13
- node-version: 16
13
+ node-version: 20
14
14
  - run: npm ci
15
15
  - name: Publish to Open VSX Registry
16
- uses: HaaLeo/publish-vscode-extension@v0
16
+ uses: HaaLeo/publish-vscode-extension@v2
17
17
  with:
18
- pat: ${{ secrets.OPEN_VSX_TOKEN }}
19
- - name: Publish to Visual Studio Marketplace
20
- uses: HaaLeo/publish-vscode-extension@v0
18
+ pat: ${{ secrets.TOKEN_OPENVSX }}
19
+ skipDuplicate: true
20
+ if: env.PUBLISH_OPENVSX == 'yes'
21
+ - name: Publish to Visual Studio Code Marketplace
22
+ uses: HaaLeo/publish-vscode-extension@v2
21
23
  with:
22
- pat: ${{ secrets.VS_MARKETPLACE_TOKEN }}
24
+ pat: ${{ secrets.TOKEN_VSCODE }}
23
25
  registryUrl: https://marketplace.visualstudio.com
26
+ skipDuplicate: true
27
+ if: env.PUBLISH_VSCODE == 'yes'
@@ -1,4 +1,4 @@
1
1
  # Changelog
2
2
 
3
- ## v0.1.0 | 2022-01-01
3
+ ## v0.1.0 | #[[date.YYYY-MM-DD]]
4
4
  - initial release
@@ -15,8 +15,8 @@
15
15
  },
16
16
  "devDependencies": {
17
17
  "@types/vscode": "^1.23.0",
18
- "release-it": "^15.3.0",
19
- "tsc-watch": "^5.0.3"
18
+ "release-it": "^18.1.2",
19
+ "tsc-watch": "^6.3.0"
20
20
  },
21
21
  "activationEvents": [
22
22
  "onStartupFinished"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daiyam/artifact-vsx-ts",
3
- "version": "0.5.3",
3
+ "version": "0.6.1",
4
4
  "description": "The configuration to create Visual Studio extensions and publish them on Visual Studio Marketplace and Open VSX Registry.",
5
5
  "author": {
6
6
  "name": "Baptiste Augrain",
@@ -31,5 +31,5 @@
31
31
  "project-template",
32
32
  "scaffold"
33
33
  ],
34
- "gitHead": "9cccebf1aca3c2fd3c8e94be535e48859d08a2a7"
34
+ "gitHead": "65f13222eb436d78dda6eb76972a004dc9c29dc3"
35
35
  }