pane-registry 2.4.18-d7942e18 → 2.4.19-4c6fc5b9

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.
@@ -34,7 +34,7 @@ jobs:
34
34
  - run: npm test
35
35
  - run: npm run build --if-present
36
36
  - name: Save build
37
- if: matrix.node-version == '14.x'
37
+ if: matrix.node-version == '16.x'
38
38
  uses: actions/upload-artifact@v2
39
39
  with:
40
40
  name: build
@@ -51,7 +51,7 @@ jobs:
51
51
  name: build
52
52
  - uses: actions/setup-node@v1
53
53
  with:
54
- node-version: 14.x
54
+ node-version: 16.x
55
55
  - uses: rlespinasse/github-slug-action@v3.x
56
56
  - name: Append commit hash to package version
57
57
  run: 'sed -i -E "s/(\"version\": *\"[^\"]+)/\1-${GITHUB_SHA_SHORT}/" package.json'
@@ -61,3 +61,21 @@ jobs:
61
61
  with:
62
62
  token: ${{ secrets.NPM_TOKEN }}
63
63
  tag: ${{ env.GITHUB_REF_SLUG }}
64
+
65
+ npm-publish-latest:
66
+ needs: build
67
+ runs-on: ubuntu-latest
68
+ if: github.ref == 'refs/heads/main'
69
+ steps:
70
+ - uses: actions/download-artifact@v2
71
+ with:
72
+ name: build
73
+ - uses: actions/setup-node@v1
74
+ with:
75
+ node-version: 16.x
76
+ - name: Disable pre- and post-publish actions
77
+ run: 'sed -i -E "s/\"((pre|post)publish)/\"ignore:\1/" package.json'
78
+ - uses: JS-DevTools/npm-publish@v1
79
+ with:
80
+ token: ${{ secrets.NPM_TOKEN }}
81
+ tag: latest
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pane-registry",
3
- "version": "2.4.18-d7942e18",
3
+ "version": "2.4.19-4c6fc5b9",
4
4
  "description": "Solid-compatible Panes: Pane Registry",
5
5
  "main": "./paneRegistry.js",
6
6
  "types": "./index.d.ts",
@@ -36,13 +36,10 @@
36
36
  "url": "https://github.com/solidos/chat-pane/issues"
37
37
  },
38
38
  "homepage": "https://github.com/solidos/chat-pane",
39
- "dependencies": {
40
- "solid-logic": "^2.1.2"
41
- },
42
39
  "devDependencies": {
43
- "eslint": "^8.33.0",
40
+ "eslint": "^8.34.0",
44
41
  "husky": "^8.0.3",
45
- "lint-staged": "^13.1.0",
42
+ "lint-staged": "^13.1.2",
46
43
  "standard": "^17.0.0"
47
44
  },
48
45
  "husky": {
@@ -55,5 +52,8 @@
55
52
  "*.js": [
56
53
  "eslint"
57
54
  ]
55
+ },
56
+ "dependencies": {
57
+ "solid-logic": "^2.1.2-196a4167"
58
58
  }
59
59
  }