From 60c2e7013debfd0798077a747b1d27a6f8170246 Mon Sep 17 00:00:00 2001 From: Nicolas Charpentier Date: Tue, 25 Apr 2023 11:18:27 -0400 Subject: [PATCH] docs: cleanup references to `apache-superset/superset-ui` (#23796) --- CONTRIBUTING.md | 2 +- docs/docs/miscellaneous/country-map-tools.mdx | 2 +- superset-embedded-sdk/package.json | 3 ++- superset-frontend/package.json | 3 ++- superset-frontend/packages/generator-superset/package.json | 3 ++- .../packages/superset-ui-chart-controls/package.json | 7 ++++--- superset-frontend/packages/superset-ui-core/package.json | 7 ++++--- .../packages/superset-ui-core/src/number-format/README.md | 2 +- .../packages/superset-ui-core/src/time-format/README.md | 2 +- superset-frontend/packages/superset-ui-demo/package.json | 7 ++++--- .../packages/superset-ui-switchboard/package.json | 3 ++- .../plugins/legacy-plugin-chart-calendar/package.json | 7 ++++--- .../plugins/legacy-plugin-chart-chord/package.json | 7 ++++--- .../plugins/legacy-plugin-chart-country-map/package.json | 7 ++++--- .../plugins/legacy-plugin-chart-event-flow/package.json | 7 ++++--- .../plugins/legacy-plugin-chart-heatmap/package.json | 7 ++++--- .../plugins/legacy-plugin-chart-histogram/package.json | 7 ++++--- .../plugins/legacy-plugin-chart-horizon/package.json | 7 ++++--- .../plugins/legacy-plugin-chart-map-box/package.json | 3 ++- .../plugins/legacy-plugin-chart-paired-t-test/package.json | 7 ++++--- .../legacy-plugin-chart-parallel-coordinates/package.json | 7 ++++--- .../plugins/legacy-plugin-chart-partition/package.json | 7 ++++--- .../plugins/legacy-plugin-chart-pivot-table/package.json | 7 ++++--- .../plugins/legacy-plugin-chart-rose/package.json | 7 ++++--- .../plugins/legacy-plugin-chart-sankey-loop/package.json | 7 ++++--- .../plugins/legacy-plugin-chart-sankey/package.json | 7 ++++--- .../plugins/legacy-plugin-chart-sunburst/package.json | 7 ++++--- .../plugins/legacy-plugin-chart-treemap/package.json | 7 ++++--- .../plugins/legacy-plugin-chart-world-map/package.json | 7 ++++--- .../plugins/legacy-preset-chart-deckgl/package.json | 3 ++- .../plugins/legacy-preset-chart-nvd3/package.json | 7 ++++--- .../plugins/plugin-chart-echarts/package.json | 7 ++++--- .../plugins/plugin-chart-handlebars/package.json | 7 ++++--- .../plugins/plugin-chart-pivot-table/package.json | 7 ++++--- superset-frontend/plugins/plugin-chart-table/package.json | 7 ++++--- .../plugins/plugin-chart-word-cloud/package.json | 7 ++++--- superset-frontend/plugins/preset-chart-xy/package.json | 7 ++++--- 37 files changed, 124 insertions(+), 91 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1c13006aa..e5187c0a4 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 20d1dbe22..89ce110e3 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 4ee8510a0..1cab7f2c0 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 f9dce7757..0fba94ee7 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 36a622f3f..161ca22b1 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 a370aa56c..6c3f892b0 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 1d2a28910..59894f716 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 e3e509924..49ba401c3 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 21341bdc1..9b0982ec5 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 a2ff39866..b560f8701 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 1e49d7eb9..5fae91b95 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 cb1116418..85e29c820 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 02a7525c3..ac664f53f 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 1b4ee339e..b699cfb40 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 6a7da3fa1..85b0dc055 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 692a9dc10..bb53b0a7e 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 041106d57..5aa8a045d 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 e0c234476..2b8c90b3c 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 5d739bfab..78c9340d0 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 de3791bbe..eb10c297a 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 4d0922830..12fc4501d 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 2384214fd..c849a27a2 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 7266253be..04bfeb32a 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 20deaa3bd..00072b5d8 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 247e408b7..fee661d1f 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 527c54c36..d08f8b08c 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 cdba4664f..ca73e8e4a 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 96d582d78..022e8bddb 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 be770aa11..047d15471 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 83a4a9773..ed437ec23 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 07e3152cf..dca88bb83 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 3326bad60..f57e702a9 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 0a14440b5..8fcb8ab59 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 9f803467b..4537c88b3 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 738c143e9..ac3b17566 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 cdf87a66a..5d13d2dc6 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 575cf33d7..92eecf898 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" },