This is an automated email from the ASF dual-hosted git repository.

kgabryje pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/master by this push:
     new b5e7e707b3 chore: Allow external extensions to include their own 
package.json files (#26004)
b5e7e707b3 is described below

commit b5e7e707b3486e842102972d01f2fb077f232e98
Author: Kamil Gabryjelski <[email protected]>
AuthorDate: Tue Nov 21 15:43:50 2023 +0100

    chore: Allow external extensions to include their own package.json files 
(#26004)
---
 superset-frontend/lerna.json        | 2 +-
 superset-frontend/package-lock.json | 3 ++-
 superset-frontend/package.json      | 3 ++-
 3 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/superset-frontend/lerna.json b/superset-frontend/lerna.json
index 3a16712db2..07bef7fcfd 100644
--- a/superset-frontend/lerna.json
+++ b/superset-frontend/lerna.json
@@ -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": [
diff --git a/superset-frontend/package-lock.json 
b/superset-frontend/package-lock.json
index b6d01c1418..6affdb893a 100644
--- a/superset-frontend/package-lock.json
+++ b/superset-frontend/package-lock.json
@@ -10,7 +10,8 @@
       "license": "Apache-2.0",
       "workspaces": [
         "packages/*",
-        "plugins/*"
+        "plugins/*",
+        "src/setup/*"
       ],
       "dependencies": {
         "@ant-design/icons": "^5.0.1",
diff --git a/superset-frontend/package.json b/superset-frontend/package.json
index a0f5bdd8c0..5f6a2e7e2d 100644
--- a/superset-frontend/package.json
+++ b/superset-frontend/package.json
@@ -33,7 +33,8 @@
   },
   "workspaces": [
     "packages/*",
-    "plugins/*"
+    "plugins/*",
+    "src/setup/*"
   ],
   "scripts": {
     "_lint": "eslint --ignore-path=.eslintignore --ext .js,.jsx,.ts,tsx .",

Reply via email to