pane-registry 2.4.17 → 2.4.18-6d571e3c

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/.eslintrc CHANGED
File without changes
@@ -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
File without changes
package/.nvmrc CHANGED
File without changes
package/LICENSE.md CHANGED
File without changes
package/README.md CHANGED
File without changes
package/index.d.ts CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pane-registry",
3
- "version": "2.4.17",
3
+ "version": "2.4.18-6d571e3c",
4
4
  "description": "Solid-compatible Panes: Pane Registry",
5
5
  "main": "./paneRegistry.js",
6
6
  "types": "./index.d.ts",
@@ -9,7 +9,7 @@
9
9
  "lint": "eslint 'paneRegistry.js'",
10
10
  "lint-fix": "eslint 'paneRegistry.js' --fix",
11
11
  "test": "standard && npm run lint",
12
- "prepublishOnly": "npm test",
12
+ "ignore:prepublishOnly": "npm test",
13
13
  "postversion": "git push origin main --follow-tags"
14
14
  },
15
15
  "repository": {
@@ -37,7 +37,7 @@
37
37
  },
38
38
  "homepage": "https://github.com/solidos/chat-pane",
39
39
  "dependencies": {
40
- "solid-logic": "^2.1.1"
40
+ "solid-logic": "^2.1.2"
41
41
  },
42
42
  "devDependencies": {
43
43
  "eslint": "^8.33.0",
package/paneRegistry.js CHANGED
File without changes