Skip to content

Commit 4628904

Browse files
committed
add third-party
1 parent 3e28fa2 commit 4628904

118 files changed

Lines changed: 2772 additions & 4 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.build-state.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"plugin-audiomass": {
3+
"success": true,
4+
"time": 1776838676687
5+
},
6+
"plugin-blockbench": {
7+
"success": false,
8+
"error": "SIGTERM",
9+
"time": 1776852893874
10+
},
11+
"plugin-chili3d": {
12+
"success": false,
13+
"error": "SIGTERM",
14+
"time": 1776839277388
15+
},
16+
"plugin-drawio": {
17+
"success": true,
18+
"time": 1776841714317
19+
},
20+
"plugin-jspaint": {
21+
"success": true,
22+
"time": 1776841718331
23+
}
24+
}

.gitmodules

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
[submodule "third-party/plugin-mermaid/mermaid-live-editor"]
2+
path = third-party/plugin-mermaid/mermaid-live-editor
3+
url = https://github.com/mermaid-js/mermaid-live-editor.git
4+
[submodule "third-party/plugin-excalidraw/excalidraw"]
5+
path = third-party/plugin-excalidraw/excalidraw
6+
url = https://github.com/excalidraw/excalidraw.git
7+
[submodule "third-party/plugin-drawio/drawio"]
8+
path = third-party/plugin-drawio/drawio
9+
url = https://github.com/jgraph/drawio.git
10+
[submodule "third-party/plugin-jsoncrack/jsoncrack"]
11+
path = third-party/plugin-jsoncrack/jsoncrack
12+
url = https://github.com/AykutSarac/jsoncrack.com.git
13+
[submodule "third-party/plugin-regex-vis/regex-vis"]
14+
path = third-party/plugin-regex-vis/regex-vis
15+
url = https://github.com/Bowen7/regex-vis.git
16+
[submodule "third-party/plugin-hoppscotch/hoppscotch"]
17+
path = third-party/plugin-hoppscotch/hoppscotch
18+
url = https://github.com/hoppscotch/hoppscotch.git
19+
[submodule "third-party/plugin-audiomass/AudioMass"]
20+
path = third-party/plugin-audiomass/AudioMass
21+
url = https://github.com/pkalogiros/AudioMass.git
22+
[submodule "third-party/plugin-blockbench/blockbench"]
23+
path = third-party/plugin-blockbench/blockbench
24+
url = https://github.com/JannisX11/blockbench.git
25+
[submodule "third-party/plugin-chili3d/chili3d"]
26+
path = third-party/plugin-chili3d/chili3d
27+
url = https://github.com/xiangechen/chili3d.git
28+
[submodule "third-party/plugin-dpaint/DPaint-js"]
29+
path = third-party/plugin-dpaint/DPaint-js
30+
url = https://github.com/steffest/DPaint-js.git
31+
[submodule "third-party/plugin-jspaint/jspaint"]
32+
path = third-party/plugin-jspaint/jspaint
33+
url = https://github.com/1j01/jspaint.git
34+
[submodule "third-party/plugin-klecks/klecks"]
35+
path = third-party/plugin-klecks/klecks
36+
url = https://github.com/bitbof/klecks.git
37+
[submodule "third-party/plugin-method-draw/Method-Draw"]
38+
path = third-party/plugin-method-draw/Method-Draw
39+
url = https://github.com/methodofaction/Method-Draw.git
40+
[submodule "third-party/plugin-ctool/Ctool"]
41+
path = third-party/plugin-ctool/Ctool
42+
url = https://github.com/baiy/Ctool.git
43+
[submodule "third-party/plugin-minipaint/miniPaint"]
44+
path = third-party/plugin-minipaint/miniPaint
45+
url = https://github.com/viliusle/miniPaint.git
46+
[submodule "third-party/plugin-motionity/motionity"]
47+
path = third-party/plugin-motionity/motionity
48+
url = https://github.com/alyssaxuu/motionity.git
49+
[submodule "third-party/plugin-piskel/piskel"]
50+
path = third-party/plugin-piskel/piskel
51+
url = https://github.com/piskelapp/piskel.git
52+
[submodule "third-party/plugin-svgedit/svgedit"]
53+
path = third-party/plugin-svgedit/svgedit
54+
url = https://github.com/SVG-Edit/svgedit.git

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
package-manager=pnpm
2+
registry=https://registry.npmmirror.com

makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ dev:
22
@bash "$(PWD)/scripts/select-plugin-dev.sh" $(PLUGIN)
33

44
version:
5-
pnpm --filter './plugins/*' --filter './examples/*' exec -- npm version patch --no-git-tag-version
5+
pnpm --filter './plugins/*' --filter './examples/*' --filter './third-party/*' exec -- npm version patch --no-git-tag-version
66

77
publish:
88
pnpm run publish:plugins

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@
77
"dev": "pnpm --filter @codeexpander/plugin-text run dev",
88
"create": "node dev-tools/cli/dist/index.cjs",
99
"build": "pnpm run build:plugins",
10-
"build:plugins": "pnpm --filter './plugins/*' --filter './examples/*' run build",
11-
"publish:plugins": "pnpm run build:plugins && pnpm --filter './plugins/*' --filter './examples/*' publish -r --no-git-checks",
10+
"build:plugins": "pnpm --filter './plugins/*' --filter './examples/*' --filter './third-party/*' run build",
11+
"publish:plugins": "pnpm run build:plugins && pnpm --filter './plugins/*' --filter './examples/*' --filter './third-party/*' publish -r --no-git-checks",
12+
"build:third-party": "node scripts/build-third-party-plugins.mjs",
1213
"lint": "pnpm -r run lint 2>/dev/null || true"
1314
},
1415
"engines": {

pnpm-lock.yaml

Lines changed: 36 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pnpm-workspace.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ packages:
22
- "plugins/*"
33
- "examples/*"
44
- "dev-tools/*"
5+
- "third-party/*"

0 commit comments

Comments
 (0)