diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1c13006aa5..e5187c0a43 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -647,7 +647,7 @@ FEATURE_FLAGS = { } ``` -If you want to use the same flag in the client code, also add it to the FeatureFlag TypeScript enum in [@superset-ui/core](https://github.com/apache-superset/superset-ui/blob/master/packages/superset-ui-core/src/utils/featureFlags.ts). For example, +If you want to use the same flag in the client code, also add it to the FeatureFlag TypeScript enum in [@superset-ui/core](https://github.com/apache/superset/blob/master/superset-frontend/packages/superset-ui-core/src/utils/featureFlags.ts). For example, ```typescript export enum FeatureFlag { diff --git a/docs/docs/miscellaneous/country-map-tools.mdx b/docs/docs/miscellaneous/country-map-tools.mdx index 20d1dbe22c..89ce110e37 100644 --- a/docs/docs/miscellaneous/country-map-tools.mdx +++ b/docs/docs/miscellaneous/country-map-tools.mdx @@ -53,7 +53,7 @@ The Country Maps visualization already ships with the maps for the following cou ## Adding a New Country To add a new country to the list, you'd have to edit files in -[@superset-ui/legacy-plugin-chart-country-map](https://github.com/apache-superset/superset-ui/tree/master/plugins/legacy-plugin-chart-country-map). +[@superset-ui/legacy-plugin-chart-country-map](https://github.com/apache/superset/tree/master/superset-frontend/plugins/legacy-plugin-chart-country-map). 1. Generate a new GeoJSON file for your country following the guide in [this Jupyter notebook](https://github.com/apache/superset/blob/master/superset-frontend/plugins/legacy-plugin-chart-country-map/scripts/Country%20Map%20GeoJSON%20Generator.ipynb). 2. Edit the countries list in [legacy-plugin-chart-country-map/src/countries.ts](https://github.com/apache/superset/blob/master/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries.ts). diff --git a/superset-embedded-sdk/package.json b/superset-embedded-sdk/package.json index 4ee8510a05..1cab7f2c02 100644 --- a/superset-embedded-sdk/package.json +++ b/superset-embedded-sdk/package.json @@ -51,7 +51,8 @@ }, "repository": { "type": "git", - "url": "git+https://github.com/apache/superset.git" + "url": "https://github.com/apache/superset.git", + "directory": "superset-embedded-sdk" }, "homepage": "https://github.com/apache/superset#readme", "bugs": { diff --git a/superset-frontend/package.json b/superset-frontend/package.json index f9dce7757d..0fba94ee7b 100644 --- a/superset-frontend/package.json +++ b/superset-frontend/package.json @@ -20,7 +20,8 @@ }, "repository": { "type": "git", - "url": "git+https://github.com/apache/superset.git" + "url": "https://github.com/apache/superset.git", + "directory": "superset-frontend" }, "license": "Apache-2.0", "author": { diff --git a/superset-frontend/packages/generator-superset/package.json b/superset-frontend/packages/generator-superset/package.json index 36a622f3f9..161ca22b1a 100644 --- a/superset-frontend/packages/generator-superset/package.json +++ b/superset-frontend/packages/generator-superset/package.json @@ -14,7 +14,8 @@ }, "repository": { "type": "git", - "url": "git+https://github.com/apache/superset.git" + "url": "https://github.com/apache/superset.git", + "directory": "superset-frontend/packages/generator-superset" }, "license": "Apache-2.0", "author": "Superset", diff --git a/superset-frontend/packages/superset-ui-chart-controls/package.json b/superset-frontend/packages/superset-ui-chart-controls/package.json index a370aa56c9..6c3f892b09 100644 --- a/superset-frontend/packages/superset-ui-chart-controls/package.json +++ b/superset-frontend/packages/superset-ui-chart-controls/package.json @@ -5,13 +5,14 @@ "keywords": [ "superset" ], - "homepage": "https://github.com/apache-superset/superset-ui#readme", + "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/packages/superset-ui-chart-controls#readme", "bugs": { - "url": "https://github.com/apache-superset/superset-ui/issues" + "url": "https://github.com/apache/superset/issues" }, "repository": { "type": "git", - "url": "git+https://github.com/apache-superset/superset-ui.git" + "url": "https://github.com/apache/superset.git", + "directory": "superset-frontend/packages/superset-ui-chart-controls" }, "license": "Apache-2.0", "author": "Superset", diff --git a/superset-frontend/packages/superset-ui-core/package.json b/superset-frontend/packages/superset-ui-core/package.json index 1d2a28910e..59894f7169 100644 --- a/superset-frontend/packages/superset-ui-core/package.json +++ b/superset-frontend/packages/superset-ui-core/package.json @@ -5,13 +5,14 @@ "keywords": [ "superset" ], - "homepage": "https://github.com/apache-superset/superset-ui#readme", + "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/packages/superset-ui-core#readme", "bugs": { - "url": "https://github.com/apache-superset/superset-ui/issues" + "url": "https://github.com/apache/superset/issues" }, "repository": { "type": "git", - "url": "git+https://github.com/apache-superset/superset-ui.git" + "url": "https://github.com/apache/superset.git", + "directory": "superset-frontend/packages/superset-ui-core" }, "license": "Apache-2.0", "author": "Superset", diff --git a/superset-frontend/packages/superset-ui-core/src/number-format/README.md b/superset-frontend/packages/superset-ui-core/src/number-format/README.md index e3e5099243..49ba401c3d 100644 --- a/superset-frontend/packages/superset-ui-core/src/number-format/README.md +++ b/superset-frontend/packages/superset-ui-core/src/number-format/README.md @@ -55,7 +55,7 @@ console.log(formatNumber('my_format', 1000)); ``` It also define constants for common d3 formats. See the full list of formats in -[NumberFormats.js](https://github.com/apache-superset/superset-ui/blob/master/packages/superset-ui-number-format/src/NumberFormats.js). +[NumberFormats.js](https://github.com/apache/superset/blob/master/superset-frontend/packages/superset-ui-core/src/number-format/NumberFormats.ts). ```js import { NumberFormats } from '@superset-ui-number-format'; diff --git a/superset-frontend/packages/superset-ui-core/src/time-format/README.md b/superset-frontend/packages/superset-ui-core/src/time-format/README.md index 21341bdc1c..9b0982ec51 100644 --- a/superset-frontend/packages/superset-ui-core/src/time-format/README.md +++ b/superset-frontend/packages/superset-ui-core/src/time-format/README.md @@ -52,7 +52,7 @@ console.log(formatTime('my_format', new Date(2018))); ``` It also define constants for common d3 time formats. See -[TimeFormats.js](https://github.com/apache-superset/superset-ui/blob/master/packages/superset-ui-time-format/src/TimeFormats.js). +[TimeFormats.js](https://github.com/apache/superset/blob/master/superset-frontend/packages/superset-ui-core/src/time-format/TimeFormats.ts). ```js import { TimeFormats } from '@superset-ui/core'; diff --git a/superset-frontend/packages/superset-ui-demo/package.json b/superset-frontend/packages/superset-ui-demo/package.json index a2ff398662..b560f8701a 100644 --- a/superset-frontend/packages/superset-ui-demo/package.json +++ b/superset-frontend/packages/superset-ui-demo/package.json @@ -14,7 +14,8 @@ }, "repository": { "type": "git", - "url": "git+https://github.com/apache-superset/superset-ui.git" + "url": "https://github.com/apache/superset.git", + "directory": "superset-frontend/packages/superset-ui-demo" }, "keywords": [ "storybook", @@ -26,9 +27,9 @@ ], "license": "Apache-2.0", "bugs": { - "url": "https://github.com/apache-superset/superset-ui/issues" + "url": "https://github.com/apache/superset/issues" }, - "homepage": "https://github.com/apache-superset/superset-ui#readme", + "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/packages/superset-ui-demo#readme", "dependencies": { "@data-ui/event-flow": "^0.0.84", "@emotion/cache": "^11.4.0", diff --git a/superset-frontend/packages/superset-ui-switchboard/package.json b/superset-frontend/packages/superset-ui-switchboard/package.json index 1e49d7eb9c..5fae91b953 100644 --- a/superset-frontend/packages/superset-ui-switchboard/package.json +++ b/superset-frontend/packages/superset-ui-switchboard/package.json @@ -11,7 +11,8 @@ ], "repository": { "type": "git", - "url": "git+https://github.com/apache/superset.git" + "url": "https://github.com/apache/superset.git", + "directory": "superset-frontend/packages/superset-ui-switchboard" }, "keywords": [ "switchboard", diff --git a/superset-frontend/plugins/legacy-plugin-chart-calendar/package.json b/superset-frontend/plugins/legacy-plugin-chart-calendar/package.json index cb11164183..85e29c820c 100644 --- a/superset-frontend/plugins/legacy-plugin-chart-calendar/package.json +++ b/superset-frontend/plugins/legacy-plugin-chart-calendar/package.json @@ -5,13 +5,14 @@ "keywords": [ "superset" ], - "homepage": "https://github.com/apache-superset/superset-ui#readme", + "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/plugins/legacy-plugin-chart-calendar#readme", "bugs": { - "url": "https://github.com/apache-superset/superset-ui/issues" + "url": "https://github.com/apache/superset/issues" }, "repository": { "type": "git", - "url": "git+https://github.com/apache-superset/superset-ui.git" + "url": "https://github.com/apache/superset.git", + "directory": "superset-frontend/plugins/legacy-plugin-chart-calendar" }, "license": "Apache-2.0", "author": "Superset", diff --git a/superset-frontend/plugins/legacy-plugin-chart-chord/package.json b/superset-frontend/plugins/legacy-plugin-chart-chord/package.json index 02a7525c3a..ac664f53f6 100644 --- a/superset-frontend/plugins/legacy-plugin-chart-chord/package.json +++ b/superset-frontend/plugins/legacy-plugin-chart-chord/package.json @@ -13,7 +13,8 @@ ], "repository": { "type": "git", - "url": "git+https://github.com/apache-superset/superset-ui.git" + "url": "https://github.com/apache/superset.git", + "directory": "superset-frontend/plugins/legacy-plugin-chart-chord" }, "keywords": [ "superset" @@ -21,9 +22,9 @@ "author": "Superset", "license": "Apache-2.0", "bugs": { - "url": "https://github.com/apache-superset/superset-ui/issues" + "url": "https://github.com/apache/superset/issues" }, - "homepage": "https://github.com/apache-superset/superset-ui#readme", + "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/plugins/legacy-plugin-chart-chord#readme", "publishConfig": { "access": "public" }, diff --git a/superset-frontend/plugins/legacy-plugin-chart-country-map/package.json b/superset-frontend/plugins/legacy-plugin-chart-country-map/package.json index 1b4ee339e8..b699cfb40f 100644 --- a/superset-frontend/plugins/legacy-plugin-chart-country-map/package.json +++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/package.json @@ -10,7 +10,8 @@ ], "repository": { "type": "git", - "url": "git+https://github.com/apache-superset/superset-ui.git" + "url": "https://github.com/apache/superset.git", + "directory": "superset-frontend/plugins/legacy-plugin-chart-country-map" }, "keywords": [ "superset" @@ -18,9 +19,9 @@ "author": "Superset", "license": "Apache-2.0", "bugs": { - "url": "https://github.com/apache-superset/superset-ui/issues" + "url": "https://github.com/apache/superset/issues" }, - "homepage": "https://github.com/apache-superset/superset-ui#readme", + "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/plugins/legacy-plugin-chart-country-map#readme", "publishConfig": { "access": "public" }, diff --git a/superset-frontend/plugins/legacy-plugin-chart-event-flow/package.json b/superset-frontend/plugins/legacy-plugin-chart-event-flow/package.json index 6a7da3fa14..85b0dc0552 100644 --- a/superset-frontend/plugins/legacy-plugin-chart-event-flow/package.json +++ b/superset-frontend/plugins/legacy-plugin-chart-event-flow/package.json @@ -13,7 +13,8 @@ ], "repository": { "type": "git", - "url": "git+https://github.com/apache-superset/superset-ui.git" + "url": "https://github.com/apache/superset.git", + "directory": "superset-frontend/plugins/legacy-plugin-chart-event-flow" }, "keywords": [ "superset" @@ -21,9 +22,9 @@ "author": "Superset", "license": "Apache-2.0", "bugs": { - "url": "https://github.com/apache-superset/superset-ui/issues" + "url": "https://github.com/apache/superset/issues" }, - "homepage": "https://github.com/apache-superset/superset-ui#readme", + "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/plugins/legacy-plugin-chart-event-flow#readme", "publishConfig": { "access": "public" }, diff --git a/superset-frontend/plugins/legacy-plugin-chart-heatmap/package.json b/superset-frontend/plugins/legacy-plugin-chart-heatmap/package.json index 692a9dc107..bb53b0a7e9 100644 --- a/superset-frontend/plugins/legacy-plugin-chart-heatmap/package.json +++ b/superset-frontend/plugins/legacy-plugin-chart-heatmap/package.json @@ -5,13 +5,14 @@ "keywords": [ "superset" ], - "homepage": "https://github.com/apache-superset/superset-ui#readme", + "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/plugins/legacy-plugin-chart-heatmap#readme", "bugs": { - "url": "https://github.com/apache-superset/superset-ui/issues" + "url": "https://github.com/apache/superset/issues" }, "repository": { "type": "git", - "url": "git+https://github.com/apache-superset/superset-ui.git" + "url": "https://github.com/apache/superset.git", + "directory": "superset-frontend/plugins/legacy-plugin-chart-heatmap" }, "license": "Apache-2.0", "author": "Superset", diff --git a/superset-frontend/plugins/legacy-plugin-chart-histogram/package.json b/superset-frontend/plugins/legacy-plugin-chart-histogram/package.json index 041106d57f..5aa8a045da 100644 --- a/superset-frontend/plugins/legacy-plugin-chart-histogram/package.json +++ b/superset-frontend/plugins/legacy-plugin-chart-histogram/package.json @@ -13,7 +13,8 @@ ], "repository": { "type": "git", - "url": "git+https://github.com/apache-superset/superset-ui.git" + "url": "https://github.com/apache/superset.git", + "directory": "superset-frontend/packages/legacy-plugin-chart-histogram" }, "keywords": [ "superset" @@ -21,9 +22,9 @@ "author": "Superset", "license": "Apache-2.0", "bugs": { - "url": "https://github.com/apache-superset/superset-ui/issues" + "url": "https://github.com/apache/superset/issues" }, - "homepage": "https://github.com/apache-superset/superset-ui#readme", + "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/plugins/legacy-plugin-chart-histogram#readme", "publishConfig": { "access": "public" }, diff --git a/superset-frontend/plugins/legacy-plugin-chart-horizon/package.json b/superset-frontend/plugins/legacy-plugin-chart-horizon/package.json index e0c2344761..2b8c90b3c2 100644 --- a/superset-frontend/plugins/legacy-plugin-chart-horizon/package.json +++ b/superset-frontend/plugins/legacy-plugin-chart-horizon/package.json @@ -5,13 +5,14 @@ "keywords": [ "superset" ], - "homepage": "https://github.com/apache-superset/superset-ui#readme", + "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/plugins/legacy-plugin-chart-horizon#readme", "bugs": { - "url": "https://github.com/apache-superset/superset-ui/issues" + "url": "https://github.com/apache/superset/issues" }, "repository": { "type": "git", - "url": "git+https://github.com/apache-superset/superset-ui.git" + "url": "https://github.com/apache/superset.git", + "directory": "superset-frontend/packages/legacy-plugin-chart-horizon" }, "license": "Apache-2.0", "author": "Superset", diff --git a/superset-frontend/plugins/legacy-plugin-chart-map-box/package.json b/superset-frontend/plugins/legacy-plugin-chart-map-box/package.json index 5d739bfabd..78c9340d09 100644 --- a/superset-frontend/plugins/legacy-plugin-chart-map-box/package.json +++ b/superset-frontend/plugins/legacy-plugin-chart-map-box/package.json @@ -11,7 +11,8 @@ }, "repository": { "type": "git", - "url": "git+https://github.com/apache/superset.git" + "url": "https://github.com/apache/superset.git", + "directory": "superset-frontend/plugins/legacy-plugin-chart-map-box" }, "license": "Apache-2.0", "author": "Superset", diff --git a/superset-frontend/plugins/legacy-plugin-chart-paired-t-test/package.json b/superset-frontend/plugins/legacy-plugin-chart-paired-t-test/package.json index de3791bbe3..eb10c297a4 100644 --- a/superset-frontend/plugins/legacy-plugin-chart-paired-t-test/package.json +++ b/superset-frontend/plugins/legacy-plugin-chart-paired-t-test/package.json @@ -5,13 +5,14 @@ "keywords": [ "superset" ], - "homepage": "https://github.com/apache-superset/superset-ui#readme", + "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/plugins/legacy-plugin-chart-paired-t-test#readme", "bugs": { - "url": "https://github.com/apache-superset/superset-ui/issues" + "url": "https://github.com/apache/superset/issues" }, "repository": { "type": "git", - "url": "git+https://github.com/apache-superset/superset-ui.git" + "url": "https://github.com/apache/superset.git", + "directory": "superset-frontend/plugins/legacy-plugin-chart-paired-t-test" }, "license": "Apache-2.0", "author": "Superset", diff --git a/superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/package.json b/superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/package.json index 4d0922830a..12fc4501da 100644 --- a/superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/package.json +++ b/superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/package.json @@ -13,7 +13,8 @@ ], "repository": { "type": "git", - "url": "git+https://github.com/apache-superset/superset-ui.git" + "url": "https://github.com/apache/superset.git", + "directory": "superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates" }, "keywords": [ "superset" @@ -21,9 +22,9 @@ "author": "Superset", "license": "Apache-2.0", "bugs": { - "url": "https://github.com/apache-superset/superset-ui/issues" + "url": "https://github.com/apache/superset/issues" }, - "homepage": "https://github.com/apache-superset/superset-ui#readme", + "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates#readme", "publishConfig": { "access": "public" }, diff --git a/superset-frontend/plugins/legacy-plugin-chart-partition/package.json b/superset-frontend/plugins/legacy-plugin-chart-partition/package.json index 2384214fd9..c849a27a20 100644 --- a/superset-frontend/plugins/legacy-plugin-chart-partition/package.json +++ b/superset-frontend/plugins/legacy-plugin-chart-partition/package.json @@ -5,13 +5,14 @@ "keywords": [ "superset" ], - "homepage": "https://github.com/apache-superset/superset-ui#readme", + "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/plugins/legacy-plugin-chart-partition#readme", "bugs": { - "url": "https://github.com/apache-superset/superset-ui/issues" + "url": "https://github.com/apache/superset/issues" }, "repository": { "type": "git", - "url": "git+https://github.com/apache-superset/superset-ui.git" + "url": "https://github.com/apache/superset.git", + "directory": "superset-frontend/packages/legacy-plugin-chart-partition" }, "license": "Apache-2.0", "author": "Superset", diff --git a/superset-frontend/plugins/legacy-plugin-chart-pivot-table/package.json b/superset-frontend/plugins/legacy-plugin-chart-pivot-table/package.json index 7266253be0..04bfeb32af 100644 --- a/superset-frontend/plugins/legacy-plugin-chart-pivot-table/package.json +++ b/superset-frontend/plugins/legacy-plugin-chart-pivot-table/package.json @@ -13,7 +13,8 @@ ], "repository": { "type": "git", - "url": "git+https://github.com/apache-superset/superset-ui.git" + "url": "https://github.com/apache/superset.git", + "directory": "superset-frontend/plugins/legacy-plugin-chart-pivot-table" }, "keywords": [ "superset" @@ -21,9 +22,9 @@ "author": "Superset", "license": "Apache-2.0", "bugs": { - "url": "https://github.com/apache-superset/superset-ui/issues" + "url": "https://github.com/apache/superset/issues" }, - "homepage": "https://github.com/apache-superset/superset-ui#readme", + "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/plugins/legacy-plugin-chart-pivot-table#readme", "publishConfig": { "access": "public" }, diff --git a/superset-frontend/plugins/legacy-plugin-chart-rose/package.json b/superset-frontend/plugins/legacy-plugin-chart-rose/package.json index 20deaa3bdb..00072b5d83 100644 --- a/superset-frontend/plugins/legacy-plugin-chart-rose/package.json +++ b/superset-frontend/plugins/legacy-plugin-chart-rose/package.json @@ -5,13 +5,14 @@ "keywords": [ "superset" ], - "homepage": "https://github.com/apache-superset/superset-ui#readme", + "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/plugins/legacy-plugin-chart-rose#readme", "bugs": { - "url": "https://github.com/apache-superset/superset-ui/issues" + "url": "https://github.com/apache/superset/issues" }, "repository": { "type": "git", - "url": "git+https://github.com/apache-superset/superset-ui.git" + "url": "https://github.com/apache/superset.git", + "directory": "superset-frontend/plugins/legacy-plugin-chart-rose" }, "license": "Apache-2.0", "author": "Superset", diff --git a/superset-frontend/plugins/legacy-plugin-chart-sankey-loop/package.json b/superset-frontend/plugins/legacy-plugin-chart-sankey-loop/package.json index 247e408b77..fee661d1fb 100644 --- a/superset-frontend/plugins/legacy-plugin-chart-sankey-loop/package.json +++ b/superset-frontend/plugins/legacy-plugin-chart-sankey-loop/package.json @@ -5,13 +5,14 @@ "keywords": [ "superset" ], - "homepage": "https://github.com/apache-superset/superset-ui#readme", + "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/plugins/legacy-plugin-chart-sankey-loop#readme", "bugs": { - "url": "https://github.com/apache-superset/superset-ui/issues" + "url": "https://github.com/apache/superset/issues" }, "repository": { "type": "git", - "url": "git+https://github.com/apache-superset/superset-ui.git" + "url": "https://github.com/apache/superset.git", + "directory": "superset-frontend/plugins/legacy-plugin-chart-sankey-loop" }, "license": "Apache-2.0", "author": "Superset", diff --git a/superset-frontend/plugins/legacy-plugin-chart-sankey/package.json b/superset-frontend/plugins/legacy-plugin-chart-sankey/package.json index 527c54c368..d08f8b08cc 100644 --- a/superset-frontend/plugins/legacy-plugin-chart-sankey/package.json +++ b/superset-frontend/plugins/legacy-plugin-chart-sankey/package.json @@ -13,7 +13,8 @@ ], "repository": { "type": "git", - "url": "git+https://github.com/apache-superset/superset-ui.git" + "url": "https://github.com/apache/superset.git", + "directory": "superset-frontend/packages/legacy-plugin-chart-sankey" }, "keywords": [ "superset" @@ -21,9 +22,9 @@ "author": "Superset", "license": "Apache-2.0", "bugs": { - "url": "https://github.com/apache-superset/superset-ui/issues" + "url": "https://github.com/apache/superset/issues" }, - "homepage": "https://github.com/apache-superset/superset-ui#readme", + "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/plugins/legacy-plugin-chart-sankey#readme", "publishConfig": { "access": "public" }, diff --git a/superset-frontend/plugins/legacy-plugin-chart-sunburst/package.json b/superset-frontend/plugins/legacy-plugin-chart-sunburst/package.json index cdba4664f4..ca73e8e4af 100644 --- a/superset-frontend/plugins/legacy-plugin-chart-sunburst/package.json +++ b/superset-frontend/plugins/legacy-plugin-chart-sunburst/package.json @@ -5,13 +5,14 @@ "keywords": [ "superset" ], - "homepage": "https://github.com/apache-superset/superset-ui#readme", + "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/plugins/legacy-plugin-chart-sunburst#readme", "bugs": { - "url": "https://github.com/apache-superset/superset-ui/issues" + "url": "https://github.com/apache/superset/issues" }, "repository": { "type": "git", - "url": "git+https://github.com/apache-superset/superset-ui.git" + "url": "https://github.com/apache/superset.git", + "directory": "superset-frontend/plugins/legacy-plugin-chart-sunburst" }, "license": "Apache-2.0", "author": "Superset", diff --git a/superset-frontend/plugins/legacy-plugin-chart-treemap/package.json b/superset-frontend/plugins/legacy-plugin-chart-treemap/package.json index 96d582d785..022e8bddb4 100644 --- a/superset-frontend/plugins/legacy-plugin-chart-treemap/package.json +++ b/superset-frontend/plugins/legacy-plugin-chart-treemap/package.json @@ -5,13 +5,14 @@ "keywords": [ "superset" ], - "homepage": "https://github.com/apache-superset/superset-ui#readme", + "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/plugins/legacy-plugin-chart-treemap#readme", "bugs": { - "url": "https://github.com/apache-superset/superset-ui/issues" + "url": "https://github.com/apache/superset/issues" }, "repository": { "type": "git", - "url": "git+https://github.com/apache-superset/superset-ui.git" + "url": "https://github.com/apache/superset.git", + "directory": "superset-frontend/plugins/legacy-plugin-chart-treemap" }, "license": "Apache-2.0", "author": "Superset", diff --git a/superset-frontend/plugins/legacy-plugin-chart-world-map/package.json b/superset-frontend/plugins/legacy-plugin-chart-world-map/package.json index be770aa11c..047d154711 100644 --- a/superset-frontend/plugins/legacy-plugin-chart-world-map/package.json +++ b/superset-frontend/plugins/legacy-plugin-chart-world-map/package.json @@ -13,7 +13,8 @@ ], "repository": { "type": "git", - "url": "git+https://github.com/apache-superset/superset-ui.git" + "url": "https://github.com/apache/superset.git", + "directory": "superset-frontend/plugins/legacy-plugin-chart-world-map" }, "keywords": [ "superset" @@ -21,9 +22,9 @@ "author": "Superset", "license": "Apache-2.0", "bugs": { - "url": "https://github.com/apache-superset/superset-ui/issues" + "url": "https://github.com/apache/superset/issues" }, - "homepage": "https://github.com/apache-superset/superset-ui#readme", + "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/plugins/legacy-plugin-chart-world-map#readme", "publishConfig": { "access": "public" }, diff --git a/superset-frontend/plugins/legacy-preset-chart-deckgl/package.json b/superset-frontend/plugins/legacy-preset-chart-deckgl/package.json index 83a4a97732..ed437ec23a 100644 --- a/superset-frontend/plugins/legacy-preset-chart-deckgl/package.json +++ b/superset-frontend/plugins/legacy-preset-chart-deckgl/package.json @@ -11,7 +11,8 @@ }, "repository": { "type": "git", - "url": "git+https://github.com/apache/superset.git" + "url": "https://github.com/apache/superset.git", + "directory": "superset-frontend/packages/legacy-preset-chart-deckgl" }, "license": "Apache-2.0", "author": "Superset", diff --git a/superset-frontend/plugins/legacy-preset-chart-nvd3/package.json b/superset-frontend/plugins/legacy-preset-chart-nvd3/package.json index 07e3152cf0..dca88bb83e 100644 --- a/superset-frontend/plugins/legacy-preset-chart-nvd3/package.json +++ b/superset-frontend/plugins/legacy-preset-chart-nvd3/package.json @@ -13,7 +13,8 @@ ], "repository": { "type": "git", - "url": "git+https://github.com/apache-superset/superset-ui.git" + "url": "https://github.com/apache/superset.git", + "directory": "superset-frontend/packages/legacy-preset-chart-nvd3" }, "keywords": [ "superset" @@ -21,9 +22,9 @@ "author": "Superset", "license": "Apache-2.0", "bugs": { - "url": "https://github.com/apache-superset/superset-ui/issues" + "url": "https://github.com/apache/superset/issues" }, - "homepage": "https://github.com/apache-superset/superset-ui#readme", + "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/plugins/legacy-preset-chart-nvd3#readme", "publishConfig": { "access": "public" }, diff --git a/superset-frontend/plugins/plugin-chart-echarts/package.json b/superset-frontend/plugins/plugin-chart-echarts/package.json index 3326bad60d..f57e702a90 100644 --- a/superset-frontend/plugins/plugin-chart-echarts/package.json +++ b/superset-frontend/plugins/plugin-chart-echarts/package.json @@ -11,7 +11,8 @@ ], "repository": { "type": "git", - "url": "git+https://github.com/apache-superset/superset-ui.git" + "url": "https://github.com/apache/superset.git", + "directory": "superset-frontend/plugins/plugin-chart-echarts" }, "keywords": [ "superset" @@ -19,9 +20,9 @@ "author": "Superset", "license": "Apache-2.0", "bugs": { - "url": "https://github.com/apache-superset/superset-ui/issues" + "url": "https://github.com/apache/superset/issues" }, - "homepage": "https://github.com/apache-superset/superset-ui#readme", + "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/plugins/plugin-chart-echarts#readme", "publishConfig": { "access": "public" }, diff --git a/superset-frontend/plugins/plugin-chart-handlebars/package.json b/superset-frontend/plugins/plugin-chart-handlebars/package.json index 0a14440b5b..8fcb8ab599 100644 --- a/superset-frontend/plugins/plugin-chart-handlebars/package.json +++ b/superset-frontend/plugins/plugin-chart-handlebars/package.json @@ -11,7 +11,8 @@ ], "repository": { "type": "git", - "url": "git+https://github.com/apache-superset/superset-ui.git" + "url": "https://github.com/apache/superset.git", + "directory": "superset-frontend/plugins/plugin-chart-handlebars" }, "keywords": [ "superset" @@ -19,9 +20,9 @@ "author": "Superset", "license": "Apache-2.0", "bugs": { - "url": "https://github.com/apache-superset/superset-ui/issues" + "url": "https://github.com/apache/superset/issues" }, - "homepage": "https://github.com/apache-superset/superset-ui#readme", + "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/plugins/plugin-chart-handlebars#readme", "publishConfig": { "access": "public" }, diff --git a/superset-frontend/plugins/plugin-chart-pivot-table/package.json b/superset-frontend/plugins/plugin-chart-pivot-table/package.json index 9f803467bd..4537c88b39 100644 --- a/superset-frontend/plugins/plugin-chart-pivot-table/package.json +++ b/superset-frontend/plugins/plugin-chart-pivot-table/package.json @@ -11,7 +11,8 @@ ], "repository": { "type": "git", - "url": "git+https://github.com/apache-superset/superset-ui.git" + "url": "https://github.com/apache/superset.git", + "directory": "superset-frontend/plugins/plugin-chart-pivot-table" }, "keywords": [ "superset" @@ -19,9 +20,9 @@ "author": "Superset", "license": "Apache-2.0", "bugs": { - "url": "https://github.com/apache-superset/superset-ui/issues" + "url": "https://github.com/apache/superset/issues" }, - "homepage": "https://github.com/apache-superset/superset-ui#readme", + "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/plugins/plugin-chart-pivot-table#readme", "publishConfig": { "access": "public" }, diff --git a/superset-frontend/plugins/plugin-chart-table/package.json b/superset-frontend/plugins/plugin-chart-table/package.json index 738c143e9d..ac3b175660 100644 --- a/superset-frontend/plugins/plugin-chart-table/package.json +++ b/superset-frontend/plugins/plugin-chart-table/package.json @@ -11,7 +11,8 @@ ], "repository": { "type": "git", - "url": "git+https://github.com/apache-superset/superset-ui.git" + "url": "https://github.com/apache/superset.git", + "directory": "superset-frontend/plugins/plugin-chart-table" }, "keywords": [ "superset" @@ -19,9 +20,9 @@ "author": "Superset", "license": "Apache-2.0", "bugs": { - "url": "https://github.com/apache-superset/superset-ui/issues" + "url": "https://github.com/apache/superset/issues" }, - "homepage": "https://github.com/apache-superset/superset-ui#readme", + "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/plugins/plugin-chart-table#readme", "publishConfig": { "access": "public" }, diff --git a/superset-frontend/plugins/plugin-chart-word-cloud/package.json b/superset-frontend/plugins/plugin-chart-word-cloud/package.json index cdf87a66a4..5d13d2dc66 100644 --- a/superset-frontend/plugins/plugin-chart-word-cloud/package.json +++ b/superset-frontend/plugins/plugin-chart-word-cloud/package.json @@ -13,7 +13,8 @@ ], "repository": { "type": "git", - "url": "git+https://github.com/apache-superset/superset-ui.git" + "url": "https://github.com/apache/superset.git", + "directory": "superset-frontend/plugins/plugin-chart-word-cloud" }, "keywords": [ "superset" @@ -21,9 +22,9 @@ "author": "Superset", "license": "Apache-2.0", "bugs": { - "url": "https://github.com/apache-superset/superset-ui/issues" + "url": "https://github.com/apache/superset/issues" }, - "homepage": "https://github.com/apache-superset/superset-ui#readme", + "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/plugins/plugin-chart-word-cloud#readme", "publishConfig": { "access": "public" }, diff --git a/superset-frontend/plugins/preset-chart-xy/package.json b/superset-frontend/plugins/preset-chart-xy/package.json index 575cf33d72..92eecf8987 100644 --- a/superset-frontend/plugins/preset-chart-xy/package.json +++ b/superset-frontend/plugins/preset-chart-xy/package.json @@ -14,7 +14,8 @@ ], "repository": { "type": "git", - "url": "git+https://github.com/apache-superset/superset-ui.git" + "url": "https://github.com/apache/superset.git", + "directory": "superset-frontend/packages/preset-chart-xy" }, "keywords": [ "superset" @@ -22,9 +23,9 @@ "author": "Superset", "license": "Apache-2.0", "bugs": { - "url": "https://github.com/apache-superset/superset-ui/issues" + "url": "https://github.com/apache/superset/issues" }, - "homepage": "https://github.com/apache-superset/superset-ui#readme", + "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/plugins/preset-chart-xy#readme", "publishConfig": { "access": "public" },