Skip to content

Commit d76c25f

Browse files
authored
refactor: remove toolkits and plugins (#255)
* refactor: remove toolkits and plugins * fix: fix npm run dev error
1 parent babc707 commit d76c25f

File tree

1,926 files changed

+9
-257537
lines changed

Some content is hidden

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

1,926 files changed

+9
-257537
lines changed

β€Ž.eslintignoreβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**/template
2-
/packages/cli/**/lib/*
2+
/packages/**/lib/*
33
temp
44
tmp
55
/\.*

β€Ž.gitignoreβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
node_modules/
22
package-lock.json
3-
/packages/cli/**/lib/*
3+
/packages/**/lib/*
44
temp
55
dist
66
/packages/toolkits/docs/template/ng/public/assets

β€Ž.prettierignoreβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package.json
22
package-lock.json
33
dist
4-
/packages/cli/**/lib/*
4+
/packages/**/lib/*
55
*.md
66
assets

β€Žlerna.jsonβ€Ž

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
{
22
"packages": [
33
"config/*",
4-
"packages/cli/*",
5-
"packages/plugins/*",
6-
"packages/toolkits/*"
4+
"packages/*"
75
],
86
"version": "independent",
97
"$schema": "node_modules/lerna/schemas/lerna-schema.json",

β€Žpackage.jsonβ€Ž

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"scripts": {
77
"init": "npm i && npx lerna bootstrap",
88
"dev": "lerna run watch --stream --parallel",
9-
"dev:local": "esno ./packages/cli/core/src/index.ts",
9+
"dev:local": "esno ./packages/core/src/index.ts",
1010
"build": "lerna run build",
1111
"link": "lerna run link",
1212
"lint": "eslint . --ext .js,.ts --fix",
@@ -55,5 +55,8 @@
5555
"prettier --write",
5656
"eslint --fix"
5757
]
58-
}
58+
},
59+
"workspaces": [
60+
"packages/*"
61+
]
5962
}

0 commit comments

Comments
Β (0)