issue-pane 2.4.15-b5277a8d → 2.4.16-63254b73

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.
@@ -28,7 +28,7 @@ jobs:
28
28
  - run: npm test
29
29
  - run: npm run build --if-present
30
30
  - name: Save build
31
- if: matrix.node-version == '14.x'
31
+ if: matrix.node-version == '16.x'
32
32
  uses: actions/upload-artifact@v2
33
33
  with:
34
34
  name: build
@@ -45,7 +45,7 @@ jobs:
45
45
  name: build
46
46
  - uses: actions/setup-node@v1
47
47
  with:
48
- node-version: 14.x
48
+ node-version: 16.x
49
49
  - uses: rlespinasse/github-slug-action@v3.x
50
50
  - name: Append commit hash to package version
51
51
  run: 'sed -i -E "s/(\"version\": *\"[^\"]+)/\1-${GITHUB_SHA_SHORT}/" package.json'
@@ -56,3 +56,20 @@ jobs:
56
56
  token: ${{ secrets.NPM_TOKEN }}
57
57
  tag: ${{ env.GITHUB_REF_SLUG }}
58
58
 
59
+ npm-publish-latest:
60
+ needs: build
61
+ runs-on: ubuntu-latest
62
+ if: github.ref == 'refs/heads/main'
63
+ steps:
64
+ - uses: actions/download-artifact@v2
65
+ with:
66
+ name: build
67
+ - uses: actions/setup-node@v1
68
+ with:
69
+ node-version: 16.x
70
+ - name: Disable pre- and post-publish actions
71
+ run: 'sed -i -E "s/\"((pre|post)publish)/\"ignore:\1/" package.json'
72
+ - uses: JS-DevTools/npm-publish@v1
73
+ with:
74
+ token: ${{ secrets.NPM_TOKEN }}
75
+ tag: latest
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "issue-pane",
3
- "version": "2.4.15-b5277a8d",
3
+ "version": "2.4.16-63254b73",
4
4
  "description": "Solid-compatible Panes: issue editor",
5
5
  "main": "./issuePane.js",
6
6
  "scripts": {
@@ -34,13 +34,13 @@
34
34
  },
35
35
  "homepage": "https://github.com/solid/issue-pane",
36
36
  "dependencies": {
37
- "solid-ui": "2.4.25"
37
+ "solid-ui": "2.4.26"
38
38
  },
39
39
  "devDependencies": {
40
- "eslint": "^8.33.0",
40
+ "eslint": "^8.35.0",
41
41
  "eslint-plugin-import": "^2.27.5",
42
42
  "husky": "^8.0.3",
43
- "lint-staged": "^13.1.0"
43
+ "lint-staged": "^13.1.2"
44
44
  },
45
45
  "husky": {
46
46
  "hooks": {