Skip to content

Commit eff40cf

Browse files
committed
chore: scaffold mono repo
1 parent d655d1e commit eff40cf

File tree

122 files changed

+2473
-1938
lines changed

Some content is hidden

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

122 files changed

+2473
-1938
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules
2+
3+
dist

.prettierignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Ignore all Markdown files:
2+
*.md

utils/.prettierrc .prettierrc

File renamed without changes.

package.json

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"devDependencies": {
3+
"@babel/preset-typescript": "^7.18.6",
4+
"@types/node": "^18.7.18",
5+
"@typescript-eslint/eslint-plugin": "^5.38.0",
6+
"@typescript-eslint/parser": "^5.38.0",
7+
"@vitejs/plugin-vue": "^3.1.0",
8+
"eslint": "^8.23.1",
9+
"minify": "^9.1.0",
10+
"rimraf": "^3.0.2",
11+
"sass": "^1.55.0",
12+
"slugify": "^1.6.5",
13+
"syntax-cli": "^0.1.26",
14+
"ts-node": "^10.9.1",
15+
"typescript": "^4.8.3",
16+
"vite": "^3.1.3",
17+
"vite-plugin-dts": "^1.5.0",
18+
"vitest": "^0.23.4",
19+
"vue": "^3.2.39",
20+
"vue-tsc": "^0.40.13"
21+
}
22+
}

packages/adapters/react/.gitkeep

Whitespace-only changes.
File renamed without changes.
File renamed without changes.

vue/package.json packages/adapters/vue/package.json

-11
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,5 @@
2525
"element-plus": "^2.2.16",
2626
"formkl": "^0.0.8-alpha-6",
2727
"lodash": "^4.17.21"
28-
},
29-
"devDependencies": {
30-
"@types/node": "^18.7.15",
31-
"@vitejs/plugin-vue": "^3.1.0",
32-
"rimraf": "^3.0.2",
33-
"sass": "^1.54.8",
34-
"slugify": "^1.6.5",
35-
"typescript": "^4.8.2",
36-
"vite": "^3.1.0",
37-
"vue": "^3.2.38",
38-
"vue-tsc": "^0.40.9"
3928
}
4029
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

core/package.json packages/core/package.json

-10
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,5 @@
2929
"homepage": "https://github.com/formkl/core#readme",
3030
"dependencies": {
3131
"slugify": "^1.6.5"
32-
},
33-
"devDependencies": {
34-
"jest": "^29.0.0",
35-
"minify": "^9.1.0",
36-
"rimraf": "^3.0.2",
37-
"syntax-cli": "^0.1.26"
38-
},
39-
"jest": {
40-
"testPathIgnorePatterns": [],
41-
"testRegex": ".*\\.test\\.js$"
4232
}
4333
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

editor/package.json packages/editor/package.json

-12
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,5 @@
2424
"dependencies": {
2525
"@codemirror/autocomplete": "^6.2.0",
2626
"codemirror": "^6.0.1"
27-
},
28-
"devDependencies": {
29-
"@types/node": "^18.7.15",
30-
"@vitejs/plugin-vue": "^3.1.0",
31-
"formkl": "^0.0.8-alpha-5",
32-
"rimraf": "^3.0.2",
33-
"sass": "^1.54.8",
34-
"slugify": "^1.6.5",
35-
"typescript": "^4.8.2",
36-
"vite": "^3.1.0",
37-
"vue": "^3.2.38",
38-
"vue-tsc": "^0.40.9"
3927
}
4028
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

sandbox/.gitkeep

Whitespace-only changes.

utils/jest.config.js

-3
This file was deleted.

utils/package.json

-12
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,6 @@
1111
"test": "vitest",
1212
"coverage": "vitest run --coverage"
1313
},
14-
"devDependencies": {
15-
"@babel/preset-typescript": "^7.18.6",
16-
"@types/node": "^18.7.18",
17-
"@typescript-eslint/eslint-plugin": "^5.37.0",
18-
"@typescript-eslint/parser": "^5.37.0",
19-
"eslint": "^8.23.1",
20-
"ts-node": "^10.9.1",
21-
"typescript": "^4.8.3",
22-
"vite": "^3.1.2",
23-
"vite-plugin-dts": "^1.5.0",
24-
"vitest": "^0.23.2"
25-
},
2614
"dependencies": {
2715
"formkl": "^0.0.8-alpha-6"
2816
}

0 commit comments

Comments
 (0)