pane-registry 2.4.6-7ecb64b0 → 2.4.6-beta3

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
@@ -4,11 +4,6 @@
4
4
  "es6": true,
5
5
  "node": true
6
6
  },
7
- "extends": "standard",
8
- "globals": {
9
- "Atomics": "readonly",
10
- "SharedArrayBuffer": "readonly"
11
- },
12
7
  "rules": {
13
8
  "no-unused-vars": ["warn", {
14
9
  "argsIgnorePattern": "^_",
@@ -20,9 +20,8 @@ jobs:
20
20
  strategy:
21
21
  matrix:
22
22
  node-version:
23
- - 12.x
24
- - 14.x
25
23
  - 16.x
24
+ - 18.x
26
25
 
27
26
  steps:
28
27
  - uses: actions/checkout@v2
@@ -35,7 +34,7 @@ jobs:
35
34
  - run: npm test
36
35
  - run: npm run build --if-present
37
36
  - name: Save build
38
- if: matrix.node-version == '14.x'
37
+ if: matrix.node-version == '16.x'
39
38
  uses: actions/upload-artifact@v2
40
39
  with:
41
40
  name: build
@@ -52,7 +51,7 @@ jobs:
52
51
  name: build
53
52
  - uses: actions/setup-node@v1
54
53
  with:
55
- node-version: 14.x
54
+ node-version: 16.x
56
55
  - uses: rlespinasse/github-slug-action@v3.x
57
56
  - name: Append commit hash to package version
58
57
  run: 'sed -i -E "s/(\"version\": *\"[^\"]+)/\1-${GITHUB_SHA_SHORT}/" package.json'
@@ -62,3 +61,21 @@ jobs:
62
61
  with:
63
62
  token: ${{ secrets.NPM_TOKEN }}
64
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
@@ -9,9 +9,9 @@ jobs:
9
9
  - uses: actions/checkout@v2
10
10
  - uses: actions/setup-node@v1
11
11
  with:
12
- node-version: '14.x'
12
+ node-version: '16.x'
13
13
  registry-url: 'https://registry.npmjs.org'
14
14
  - run: npm install
15
15
  - run: npm publish
16
16
  env:
17
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
17
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
package/.nvmrc CHANGED
@@ -1 +1 @@
1
- v12.7.0
1
+ v18.19.0
package/LICENSE.md CHANGED
File without changes
package/README.md CHANGED
@@ -4,4 +4,4 @@ An index to hold all loaded solid panes, whether statically or dynamically loade
4
4
 
5
5
  # Adendum
6
6
 
7
- The pane registry is a crucial part of the Solid Panes systerm. It is wherre any pane inserts itself or is inserted. In the standard working of solidOS, there is one place in solid-panes where all the nomal panes are loaded into the pane registry. But other apps, and especially developers developing new panes can insert their own panes. And so we hope we will end up with panes dynamically laoded according to user configuration preferences.
7
+ The pane registry is a crucial part of the Solid Panes system. It is where any pane inserts itself or is inserted. In the standard working of SolidOS, there is one place in solid-panes where all the normal panes are loaded into the pane registry (see: [registerPanes.js](https://github.com/solidos/solid-panes/blob/main/src/registerPanes.js) in solid-panes). But other apps, and especially developers developing new panes can insert their own panes. And so we hope we will end up with panes dynamically laoded according to user configuration preferences.
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.6-7ecb64b0",
3
+ "version": "2.4.6-beta3",
4
4
  "description": "Solid-compatible Panes: Pane Registry",
5
5
  "main": "./paneRegistry.js",
6
6
  "types": "./index.d.ts",
@@ -8,13 +8,13 @@
8
8
  "build": "echo nothing to build",
9
9
  "lint": "eslint 'paneRegistry.js'",
10
10
  "lint-fix": "eslint 'paneRegistry.js' --fix",
11
- "test": "npm run lint",
12
- "ignore:prepublishOnly": "npm test",
11
+ "test": "standard && npm run lint",
12
+ "prepublishOnly": "npm test",
13
13
  "postversion": "git push origin main --follow-tags"
14
14
  },
15
15
  "repository": {
16
16
  "type": "git",
17
- "url": "https://github.com/solid/issue-pane"
17
+ "url": "https://github.com/solidos/pane-registry"
18
18
  },
19
19
  "keywords": [
20
20
  "solid",
@@ -33,18 +33,18 @@
33
33
  "author": "Tim Berners-Lee <timbl@mit.edu>",
34
34
  "license": "MIT",
35
35
  "bugs": {
36
- "url": "https://github.com/solid/chat-pane/issues"
36
+ "url": "https://github.com/solidos/chat-pane/issues"
37
37
  },
38
- "homepage": "https://github.com/solid/chat-pane",
38
+ "homepage": "https://github.com/solidos/chat-pane",
39
39
  "dependencies": {
40
- "rdflib": "^2.2.17",
41
- "solid-logic": "^1.3.13-60e05a84"
40
+ "rdflib": "^2.2.34-beta3",
41
+ "solid-logic": "^3.0.7-beta3"
42
42
  },
43
43
  "devDependencies": {
44
- "eslint": "^7.32.0",
45
- "husky": "^7.0.4",
46
- "lint-staged": "^12.1.4",
47
- "standard": "^16.0.4"
44
+ "eslint": "^8.57.0",
45
+ "husky": "^8.0.3",
46
+ "lint-staged": "^13.3.0",
47
+ "standard": "^17.1.0"
48
48
  },
49
49
  "husky": {
50
50
  "hooks": {
package/paneRegistry.js CHANGED
File without changes