pane-registry 2.4.26-beta1 → 2.4.26-e7c2b8c8

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/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.26-beta1",
3
+ "version": "2.4.26-e7c2b8c8",
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,8 +37,8 @@
37
37
  },
38
38
  "homepage": "https://github.com/solidos/chat-pane",
39
39
  "dependencies": {
40
- "rdflib": "^2.2.34-beta",
41
- "solid-logic": "^3.0.7-beta1"
40
+ "rdflib": "^2.2.36",
41
+ "solid-logic": "^3.0.8"
42
42
  },
43
43
  "devDependencies": {
44
44
  "eslint": "^8.57.0",
package/paneRegistry.js CHANGED
File without changes
package/.eslintrc DELETED
@@ -1,13 +0,0 @@
1
- {
2
- "env": {
3
- "browser": true,
4
- "es6": true,
5
- "node": true
6
- },
7
- "rules": {
8
- "no-unused-vars": ["warn", {
9
- "argsIgnorePattern": "^_",
10
- "varsIgnorePattern": "^_"
11
- }]
12
- }
13
- }
@@ -1,81 +0,0 @@
1
- # This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
2
- # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
3
-
4
- name: CI
5
-
6
- on:
7
- push:
8
- branches:
9
- - "**"
10
- pull_request:
11
- branches:
12
- - "**"
13
- workflow_dispatch:
14
-
15
- jobs:
16
- build:
17
-
18
- runs-on: ubuntu-latest
19
-
20
- strategy:
21
- matrix:
22
- node-version:
23
- - 16.x
24
- - 18.x
25
-
26
- steps:
27
- - uses: actions/checkout@v2
28
- - name: Use Node.js ${{ matrix.node-version }}
29
- uses: actions/setup-node@v1
30
- with:
31
- node-version: ${{ matrix.node-version }}
32
- - run: npm ci
33
- - run: npm run lint
34
- - run: npm test
35
- - run: npm run build --if-present
36
- - name: Save build
37
- if: matrix.node-version == '16.x'
38
- uses: actions/upload-artifact@v2
39
- with:
40
- name: build
41
- path: |
42
- .
43
- !node_modules
44
- retention-days: 1
45
- npm-publish-build:
46
- needs: build
47
- runs-on: ubuntu-latest
48
- steps:
49
- - uses: actions/download-artifact@v2
50
- with:
51
- name: build
52
- - uses: actions/setup-node@v1
53
- with:
54
- node-version: 16.x
55
- - uses: rlespinasse/github-slug-action@v3.x
56
- - name: Append commit hash to package version
57
- run: 'sed -i -E "s/(\"version\": *\"[^\"]+)/\1-${GITHUB_SHA_SHORT}/" package.json'
58
- - name: Disable pre- and post-publish actions
59
- run: 'sed -i -E "s/\"((pre|post)publish)/\"ignore:\1/" package.json'
60
- - uses: JS-DevTools/npm-publish@v1
61
- with:
62
- token: ${{ secrets.NPM_TOKEN }}
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
@@ -1,17 +0,0 @@
1
- name: Release package
2
- on:
3
- release:
4
- types: [created]
5
- jobs:
6
- build:
7
- runs-on: ubuntu-latest
8
- steps:
9
- - uses: actions/checkout@v2
10
- - uses: actions/setup-node@v1
11
- with:
12
- node-version: '16.x'
13
- registry-url: 'https://registry.npmjs.org'
14
- - run: npm install
15
- - run: npm publish
16
- env:
17
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
package/.nvmrc DELETED
@@ -1 +0,0 @@
1
- v18.19.0