@3plate/graph 0.1.5 → 0.1.7
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 +5 -12
- package/package.json +7 -8
package/README.md
CHANGED
|
@@ -53,18 +53,11 @@ graph/
|
|
|
53
53
|
│ └── ...
|
|
54
54
|
│
|
|
55
55
|
├── apps/
|
|
56
|
-
│
|
|
57
|
-
│
|
|
58
|
-
│
|
|
59
|
-
│
|
|
60
|
-
│
|
|
61
|
-
│ │ └── package.json
|
|
62
|
-
│ │
|
|
63
|
-
│ ├── demo-vue/
|
|
64
|
-
│ | └── ...
|
|
65
|
-
│ │
|
|
66
|
-
│ └── demo-angular/
|
|
67
|
-
│ └── ...
|
|
56
|
+
│ └── site/
|
|
57
|
+
│ ├── src/
|
|
58
|
+
│ ├── public/
|
|
59
|
+
│ ├── astro.config.mjs
|
|
60
|
+
│ └── package.json
|
|
68
61
|
│
|
|
69
62
|
├── .github/
|
|
70
63
|
│ └── workflows/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@3plate/graph",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
4
4
|
"description": "Graph library with stable layout and incremental updates",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "GPL-3.0",
|
|
@@ -23,10 +23,10 @@
|
|
|
23
23
|
"access": "public"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@3plate/graph-angular": "0.1.
|
|
27
|
-
"@3plate/graph-core": "0.1.
|
|
28
|
-
"@3plate/graph-react": "0.1.
|
|
29
|
-
"@3plate/graph-vue": "0.1.
|
|
26
|
+
"@3plate/graph-angular": "0.1.7",
|
|
27
|
+
"@3plate/graph-core": "0.1.7",
|
|
28
|
+
"@3plate/graph-react": "0.1.7",
|
|
29
|
+
"@3plate/graph-vue": "0.1.7"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@changesets/cli": "^2.29.8",
|
|
@@ -47,9 +47,8 @@
|
|
|
47
47
|
"build:core": "pnpm --filter @3plate/graph-core build",
|
|
48
48
|
"build:react": "pnpm --filter @3plate/graph-react build",
|
|
49
49
|
"build:vue": "pnpm --filter @3plate/graph-vue build",
|
|
50
|
-
"build:site": "pnpm --filter
|
|
51
|
-
"dev:site": "pnpm --filter
|
|
52
|
-
"dev:demo": "pnpm --filter demo-react dev",
|
|
50
|
+
"build:site": "pnpm --filter site build",
|
|
51
|
+
"dev:site": "pnpm --filter site dev",
|
|
53
52
|
"test": "pnpm -r test",
|
|
54
53
|
"test:watch": "pnpm --filter @3plate/graph-core test:watch",
|
|
55
54
|
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
|