Skip to content

Commit 0acde6e

Browse files
authored
Merge pull request #4 from Linho1219/dev
重构组件结构
2 parents 1ef1df1 + 57ce98c commit 0acde6e

34 files changed

+658
-319
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ dist-ssr
1515
# Editor directories and files
1616
.vscode/*
1717
!.vscode/extensions.json
18+
!.vscode/settings.json
1819
.idea
1920
.DS_Store
2021
*.suo

.vscode/settings.json

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
"material-icon-theme.folders.customClones": [
3+
{
4+
"name": "function-editor",
5+
"base": "functions",
6+
"color": "cyan-800",
7+
"lightColor": "light-green-700",
8+
"folderNames": ["editor"],
9+
"rootFolderNames": ["editor"]
10+
},
11+
{
12+
"name": "function-graph",
13+
"base": "lottie",
14+
"color": "blue-800",
15+
"lightColor": "light-blue-200",
16+
"folderNames": ["graph"],
17+
"rootFolderNames": ["graph"]
18+
},
19+
{
20+
"name": "input-component",
21+
"base": "mock",
22+
"color": "cyan-800",
23+
"lightColor": "light-green-700",
24+
"folderNames": ["inputs"],
25+
"rootFolderNames": ["inputs"]
26+
},
27+
{
28+
"name": "icon",
29+
"base": "svg",
30+
"color": "purple-400",
31+
"lightColor": "purple-100",
32+
"folderNames": ["icons"],
33+
"rootFolderNames": ["icons"]
34+
},
35+
]
36+
}

package-lock.json

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

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
"function-plot": "^2.0.0-0",
1616
"json5": "^2.2.3",
1717
"lodash-es": "^4.17.21",
18+
"mitt": "^3.0.1",
19+
"pinia": "^3.0.2",
1820
"prettier": "^3.4.2",
1921
"sober": "^1.1.0",
2022
"utf8": "^3.0.0",
@@ -25,6 +27,7 @@
2527
"devDependencies": {
2628
"@types/base-64": "^1.0.2",
2729
"@types/lodash-es": "^4.17.12",
30+
"@types/node": "^22.14.1",
2831
"@types/utf8": "^3.0.3",
2932
"@vitejs/plugin-vue": "^5.2.1",
3033
"patch-package": "^8.0.0",

0 commit comments

Comments
 (0)