pane-registry 2.4.6 → 2.4.7-353a10bd

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": "^_",
@@ -5,9 +5,12 @@ name: CI
5
5
 
6
6
  on:
7
7
  push:
8
- branches: [ main ]
8
+ branches:
9
+ - "**"
9
10
  pull_request:
10
- branches: [ main ]
11
+ branches:
12
+ - "**"
13
+ workflow_dispatch:
11
14
 
12
15
  jobs:
13
16
  build:
@@ -16,8 +19,9 @@ jobs:
16
19
 
17
20
  strategy:
18
21
  matrix:
19
- node-version: [ 10.x, 12.x, 14.x, 15.x ]
20
- # See supported Node.js release schedule at https://nodejs.org/en/about/releases/
22
+ node-version:
23
+ - 14.x
24
+ - 16.x
21
25
 
22
26
  steps:
23
27
  - uses: actions/checkout@v2
@@ -29,3 +33,31 @@ jobs:
29
33
  - run: npm run lint
30
34
  - run: npm test
31
35
  - run: npm run build --if-present
36
+ - name: Save build
37
+ if: matrix.node-version == '14.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: 14.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 }}
File without changes
package/.nvmrc CHANGED
@@ -1 +1 @@
1
- v12.7.0
1
+ v16.14.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/solid/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",
3
+ "version": "2.4.7-353a10bd",
4
4
  "description": "Solid-compatible Panes: Pane Registry",
5
5
  "main": "./paneRegistry.js",
6
6
  "types": "./index.d.ts",
@@ -8,8 +8,8 @@
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
- "prepublishOnly": "npm test",
11
+ "test": "standard && npm run lint",
12
+ "ignore:prepublishOnly": "npm test",
13
13
  "postversion": "git push origin main --follow-tags"
14
14
  },
15
15
  "repository": {
@@ -37,11 +37,11 @@
37
37
  },
38
38
  "homepage": "https://github.com/solid/chat-pane",
39
39
  "dependencies": {
40
- "rdflib": "^2.2.17",
41
- "solid-logic": "^1.3.13"
40
+ "rdflib": "^2.2.18",
41
+ "solid-logic": "^1.3.14"
42
42
  },
43
43
  "devDependencies": {
44
- "eslint": "^7.32.0",
44
+ "eslint": "^8.11.0",
45
45
  "husky": "^7.0.4",
46
46
  "lint-staged": "^12.1.4",
47
47
  "standard": "^16.0.4"
package/paneRegistry.js CHANGED
File without changes