solid-logic 1.3.11 → 1.3.12
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/README.md +7 -1
- package/package.json +15 -15
package/README.md
CHANGED
|
@@ -1,2 +1,8 @@
|
|
|
1
1
|
# solid-logic
|
|
2
|
-
Core business logic of
|
|
2
|
+
Core business logic of SolidOS
|
|
3
|
+
|
|
4
|
+
# Adendum
|
|
5
|
+
|
|
6
|
+
Solid-logic was a move to sparate business logic from UI functionality so that people using different UI frameworks could use logic code.
|
|
7
|
+
|
|
8
|
+
It was created when the "chat with me" feature was built. We needed shared logic between chat-pane and profile-pane (which was part of solid-panes back then I think) due to that feature. The whole idea of it is to separate core solid logic from UI components, to make logic reusable, e.g. by other UI libraries or even non web apps like CLI tools etc.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "solid-logic",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.12",
|
|
4
4
|
"description": "Core business logic of Solid OS",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -23,25 +23,25 @@
|
|
|
23
23
|
},
|
|
24
24
|
"homepage": "https://github.com/solid/solid-logic#readme",
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@babel/plugin-proposal-class-properties": "7.16.
|
|
27
|
-
"@babel/plugin-proposal-optional-chaining": "7.16.
|
|
28
|
-
"@babel/plugin-transform-async-to-generator": "7.16.
|
|
29
|
-
"@babel/plugin-transform-runtime": "7.16.
|
|
30
|
-
"@babel/preset-env": "7.16.
|
|
31
|
-
"@babel/preset-typescript": "7.16.
|
|
32
|
-
"@inrupt/solid-client-authn-browser": "^1.11.
|
|
26
|
+
"@babel/plugin-proposal-class-properties": "7.16.5",
|
|
27
|
+
"@babel/plugin-proposal-optional-chaining": "7.16.5",
|
|
28
|
+
"@babel/plugin-transform-async-to-generator": "7.16.5",
|
|
29
|
+
"@babel/plugin-transform-runtime": "7.16.5",
|
|
30
|
+
"@babel/preset-env": "7.16.5",
|
|
31
|
+
"@babel/preset-typescript": "7.16.5",
|
|
32
|
+
"@inrupt/solid-client-authn-browser": "^1.11.3",
|
|
33
33
|
"@types/jest": "^27.0.3",
|
|
34
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
35
|
-
"@typescript-eslint/parser": "^5.
|
|
34
|
+
"@typescript-eslint/eslint-plugin": "^5.8.0",
|
|
35
|
+
"@typescript-eslint/parser": "^5.8.0",
|
|
36
36
|
"eslint": "^7.32.0",
|
|
37
|
-
"jest": "27.
|
|
37
|
+
"jest": "27.4.5",
|
|
38
38
|
"jest-fetch-mock": "^3.0.3",
|
|
39
|
-
"prettier": "^2.
|
|
40
|
-
"ts-jest": "27.
|
|
41
|
-
"typescript": "4.5.
|
|
39
|
+
"prettier": "^2.5.1",
|
|
40
|
+
"ts-jest": "27.1.2",
|
|
41
|
+
"typescript": "4.5.4"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"rdflib": "^2.2.
|
|
44
|
+
"rdflib": "^2.2.15",
|
|
45
45
|
"solid-namespace": "^0.5.2"
|
|
46
46
|
}
|
|
47
47
|
}
|