chore: Allow external extensions to include their own package.json files (#26004)

This commit is contained in:
Kamil Gabryjelski 2023-11-21 15:43:50 +01:00 committed by GitHub
parent 1af5fbbd6a
commit b5e7e707b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 3 deletions

View File

@ -1,7 +1,7 @@
{
"lerna": "3.2.1",
"npmClient": "npm",
"packages": ["packages/*", "plugins/*"],
"packages": ["packages/*", "plugins/*", "src/setup/*"],
"useWorkspaces": true,
"version": "0.18.25",
"ignoreChanges": [

View File

@ -10,7 +10,8 @@
"license": "Apache-2.0",
"workspaces": [
"packages/*",
"plugins/*"
"plugins/*",
"src/setup/*"
],
"dependencies": {
"@ant-design/icons": "^5.0.1",

View File

@ -33,7 +33,8 @@
},
"workspaces": [
"packages/*",
"plugins/*"
"plugins/*",
"src/setup/*"
],
"scripts": {
"_lint": "eslint --ignore-path=.eslintignore --ext .js,.jsx,.ts,tsx .",