pane-registry 2.4.26-beta1-4f2e61e0 → 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/package.json +3 -3
- package/.eslintrc +0 -13
- package/.github/workflows/ci.yml +0 -81
- package/.github/workflows/release.yml +0 -17
- package/.nvmrc +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pane-registry",
|
|
3
|
-
"version": "2.4.26-
|
|
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",
|
|
@@ -37,8 +37,8 @@
|
|
|
37
37
|
},
|
|
38
38
|
"homepage": "https://github.com/solidos/chat-pane",
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"rdflib": "^2.2.
|
|
41
|
-
"solid-logic": "^3.0.
|
|
40
|
+
"rdflib": "^2.2.36",
|
|
41
|
+
"solid-logic": "^3.0.8"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"eslint": "^8.57.0",
|
package/.eslintrc
DELETED
package/.github/workflows/ci.yml
DELETED
|
@@ -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
|