solid-logic 3.0.6-ef389c4a → 3.0.7-24a2ef1f

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "solid-logic",
3
- "version": "3.0.6-ef389c4a",
3
+ "version": "3.0.7-24a2ef1f",
4
4
  "description": "Core business logic of Solid OS",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {
@@ -44,7 +44,7 @@
44
44
  "dependencies": {
45
45
  "@inrupt/solid-client-authn-browser": "1.17",
46
46
  "lint-staged": "^13.3.0",
47
- "rdflib": "^2.2.33",
47
+ "rdflib": "^2.2.34",
48
48
  "solid-namespace": "^0.5.3"
49
49
  }
50
50
  }
package/.babelrc DELETED
@@ -1,12 +0,0 @@
1
- {
2
- "presets": [
3
- "@babel/preset-env",
4
- "@babel/preset-typescript"
5
- ],
6
- "plugins": [
7
- "@babel/plugin-proposal-class-properties",
8
- "@babel/plugin-proposal-optional-chaining",
9
- "@babel/plugin-transform-async-to-generator",
10
- "@babel/plugin-transform-runtime"
11
- ]
12
- }
package/.eslintrc.js DELETED
@@ -1,6 +0,0 @@
1
- module.exports = {
2
- root: true,
3
- parser: "@typescript-eslint/parser",
4
- plugins: ["@typescript-eslint"],
5
- extends: ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
6
- };
@@ -1,82 +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 --if-present
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
-
46
- npm-publish-build:
47
- needs: build
48
- runs-on: ubuntu-latest
49
- steps:
50
- - uses: actions/download-artifact@v2
51
- with:
52
- name: build
53
- - uses: actions/setup-node@v1
54
- with:
55
- node-version: 16.x
56
- - uses: rlespinasse/github-slug-action@v3.x
57
- - name: Append commit hash to package version
58
- run: 'sed -i -E "s/(\"version\": *\"[^\"]+)/\1-${GITHUB_SHA_SHORT}/" package.json'
59
- - name: Disable pre- and post-publish actions
60
- run: 'sed -i -E "s/\"((pre|post)publish)/\"ignore:\1/" package.json'
61
- - uses: JS-DevTools/npm-publish@v1
62
- with:
63
- token: ${{ secrets.NPM_TOKEN }}
64
- tag: ${{ env.GITHUB_REF_SLUG }}
65
-
66
- npm-publish-latest:
67
- needs: build
68
- runs-on: ubuntu-latest
69
- if: github.ref == 'refs/heads/main'
70
- steps:
71
- - uses: actions/download-artifact@v2
72
- with:
73
- name: build
74
- - uses: actions/setup-node@v1
75
- with:
76
- node-version: 16.x
77
- - name: Disable pre- and post-publish actions
78
- run: 'sed -i -E "s/\"((pre|post)publish)/\"ignore:\1/" package.json'
79
- - uses: JS-DevTools/npm-publish@v1
80
- with:
81
- token: ${{ secrets.NPM_TOKEN }}
82
- 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: '14.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