semantic-release-vsce 5.6.1 → 5.6.3

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.
@@ -22,7 +22,7 @@ jobs:
22
22
  - 18
23
23
 
24
24
  steps:
25
- - uses: actions/checkout@v3
25
+ - uses: actions/checkout@v4
26
26
  - uses: volta-cli/action@v4.0.1
27
27
  with:
28
28
  node-version: ${{ matrix.node-version }}
@@ -35,7 +35,7 @@ jobs:
35
35
  needs: test
36
36
 
37
37
  steps:
38
- - uses: actions/checkout@v3
38
+ - uses: actions/checkout@v4
39
39
  - uses: volta-cli/action@v4.0.1
40
40
  - run: npm ci
41
41
  - run: npm run release
@@ -11,6 +11,6 @@ jobs:
11
11
  validate-pr-title:
12
12
  runs-on: ubuntu-latest
13
13
  steps:
14
- - uses: amannn/action-semantic-pull-request@v5.2.0
14
+ - uses: amannn/action-semantic-pull-request@v5.3.0
15
15
  env:
16
16
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "semantic-release-vsce",
3
- "version": "5.6.1",
3
+ "version": "5.6.3",
4
4
  "description": "semantic-release plugin to package and publish VS Code extensions",
5
5
  "license": "MIT",
6
6
  "engines": {
7
- "node": ">=14"
7
+ "node": "^14.17.0 || >=16.0.0"
8
8
  },
9
9
  "repository": "https://github.com/felipecrs/semantic-release-vsce.git",
10
10
  "bugs": "https://github.com/felipecrs/semantic-release-vsce/issues",
@@ -21,10 +21,10 @@
21
21
  ],
22
22
  "main": "index.js",
23
23
  "scripts": {
24
- "lint": "prettier --check . && eslint .",
24
+ "lint": "prettier --check . && eslint . ",
25
25
  "release": "semantic-release",
26
26
  "test": "nyc ava",
27
- "posttest": "npm run lint",
27
+ "posttest": "npm run lint && installed-check --engine-no-dev",
28
28
  "prepare": "husky install"
29
29
  },
30
30
  "ava": {
@@ -43,8 +43,8 @@
43
43
  ]
44
44
  },
45
45
  "volta": {
46
- "node": "18.16.1",
47
- "npm": "9.8.0"
46
+ "node": "18.18.0",
47
+ "npm": "9.8.1"
48
48
  },
49
49
  "dependencies": {
50
50
  "@semantic-release/error": "^3.0.0",
@@ -67,12 +67,13 @@
67
67
  "eslint-plugin-n": "^16.0.0",
68
68
  "eslint-plugin-promise": "^6.0.0",
69
69
  "husky": "^8.0.2",
70
+ "installed-check": "^8.0.0",
70
71
  "lint-staged": "^14.0.0",
71
72
  "nyc": "^15.1.0",
72
- "prettier": "3.0.1",
73
+ "prettier": "3.0.3",
73
74
  "proxyquire": "^2.1.3",
74
75
  "semantic-release": "^21.0.1",
75
- "sinon": "^15.0.0"
76
+ "sinon": "^16.0.0"
76
77
  },
77
78
  "lint-staged": {
78
79
  "**/*": "prettier --write --ignore-unknown"