@daiyam/artifact-vsx-ts 0.9.0 → 0.9.2

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.
@@ -13,6 +13,7 @@ jobs:
13
13
  run: |
14
14
  # Get the latest tag
15
15
  LATEST_TAG=$(git tag --sort=-v:refname | head -n1)
16
+ LATEST_TAG=${LATEST_TAG%-*}
16
17
  if [ -z "$LATEST_TAG" ]; then
17
18
  echo "No tags found in the repository"
18
19
  exit 1
@@ -7,9 +7,11 @@
7
7
  "main": "./lib/index.js",
8
8
  "browser": "./lib/index.js",
9
9
  "scripts": {
10
+ "build": "npm run clean && npm run compile:src && npm run bundle",
11
+ "clean": "rimraf out",
10
12
  "package": "rm -f *.vsix && vsce package",
11
13
  "release": "release-it",
12
- "vscode:prepublish": "npm run compile:src && npm run bundle",
14
+ "vscode:prepublish": "npm run build",
13
15
  "watch:src": "tsc-watch -p src --onSuccess 'npm run bundle'"
14
16
  },
15
17
  "dependencies": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daiyam/artifact-vsx-ts",
3
- "version": "0.9.0",
3
+ "version": "0.9.2",
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": "5bfb6ad591ff26ab3580a41607822157aebcf2b5"
34
+ "gitHead": "b74a369771e8f7f9661ff03d4ee6f927c8a147cf"
35
35
  }