From d562586c3f461cdc4b5e2695d97e2fa90de3b26b Mon Sep 17 00:00:00 2001 From: ClarkXia Date: Tue, 20 Apr 2021 15:30:21 +0800 Subject: [PATCH] chore: add repository (#4220) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore: add repository * chore: update package.json of plugin-fusion (#4218) add repo * chore: fix repository type Co-authored-by: 游鹿 --- packages/babel-preset-ice/package.json | 4 ++++ packages/build-app-helpers/package.json | 4 ++-- packages/build-mpa-config/package.json | 4 ++-- packages/build-scripts-config/package.json | 4 ++++ packages/build-user-config/package.json | 4 ++-- packages/create-app-container/package.json | 4 ++-- packages/create-app-shared/package.json | 4 ++-- packages/create-cli-utils/package.json | 4 ++-- packages/create-ice/package.json | 4 ++-- packages/create-use-router/package.json | 4 ++-- packages/miniapp-renderer/package.json | 4 ++-- packages/plugin-antd/package.json | 4 ++++ packages/plugin-app-core/package.json | 4 ++-- packages/plugin-auth/package.json | 4 ++-- packages/plugin-config/package.json | 4 ++-- packages/plugin-css-assets-local/package.json | 4 ++++ packages/plugin-dev-inspector/package.json | 4 ++-- packages/plugin-esbuild/package.json | 4 ++-- packages/plugin-faas/package.json | 4 ++++ packages/plugin-fast-refresh/package.json | 4 ++-- packages/plugin-fusion/package.json | 6 +++++- packages/plugin-helmet/package.json | 4 ++-- packages/plugin-helpers/package.json | 4 ++-- packages/plugin-ice-ssr/package.json | 4 ++-- packages/plugin-icestark/package.json | 4 ++-- packages/plugin-jsx-plus/package.json | 4 ++++ packages/plugin-keep-alive/package.json | 4 ++-- packages/plugin-load-assets/package.json | 4 ++++ packages/plugin-logger/package.json | 4 ++-- packages/plugin-miniapp/package.json | 4 ++-- packages/plugin-modular-import/package.json | 4 ++++ packages/plugin-moment-locales/package.json | 4 ++++ packages/plugin-mpa/package.json | 4 ++-- packages/plugin-prerender/package.json | 4 ++-- packages/plugin-react-app/package.json | 4 ++-- packages/plugin-rematch/package.json | 4 ++-- packages/plugin-request/package.json | 4 ++-- packages/plugin-router/package.json | 4 ++-- packages/plugin-service/package.json | 4 ++-- packages/plugin-smart-debug/package.json | 4 ++++ packages/plugin-stark-module/package.json | 4 ++++ packages/plugin-store/package.json | 4 ++-- packages/plugin-webpack5/package.json | 4 ++++ packages/plugin-wrap-code/package.json | 4 ++++ packages/react-app-renderer/package.json | 4 ++-- packages/resolve-sass-import/package.json | 4 ++++ packages/webpack-dev-mock/package.json | 7 +++++-- packages/webpack-loader-skin/package.json | 4 ++++ packages/webpack-plugin-eslint-reporting/package.json | 4 ++++ packages/webpack-plugin-extract-css-assets/package.json | 2 +- packages/webpack-plugin-import/package.json | 2 +- 51 files changed, 138 insertions(+), 67 deletions(-) diff --git a/packages/babel-preset-ice/package.json b/packages/babel-preset-ice/package.json index cc05220ea..d3d24020f 100644 --- a/packages/babel-preset-ice/package.json +++ b/packages/babel-preset-ice/package.json @@ -16,6 +16,10 @@ "publishConfig": { "access": "public" }, + "repository": { + "type": "http", + "url": "https://github.com/alibaba/ice/tree/master/packages/babel-preset-ice" + }, "dependencies": { "@babel/plugin-proposal-class-properties": "^7.1.0", "@babel/plugin-proposal-decorators": "^7.1.2", diff --git a/packages/build-app-helpers/package.json b/packages/build-app-helpers/package.json index 2c0bac431..843b5b29f 100644 --- a/packages/build-app-helpers/package.json +++ b/packages/build-app-helpers/package.json @@ -13,8 +13,8 @@ "lib" ], "repository": { - "type": "git", - "url": "git@github.com:alibaba/ice.git" + "type": "http", + "url": "https://github.com/alibaba/ice/tree/master/packages/build-app-helpers" }, "scripts": { "test": "echo \"Error: run tests from root\" && exit 1" diff --git a/packages/build-mpa-config/package.json b/packages/build-mpa-config/package.json index cc8fdcb02..a9ed85919 100644 --- a/packages/build-mpa-config/package.json +++ b/packages/build-mpa-config/package.json @@ -13,8 +13,8 @@ "lib" ], "repository": { - "type": "git", - "url": "git@github.com:alibaba/ice.git" + "type": "http", + "url": "https://github.com/alibaba/ice/tree/master/packages/build-mpa-config" }, "scripts": { "test": "echo \"Error: run tests from root\" && exit 1" diff --git a/packages/build-scripts-config/package.json b/packages/build-scripts-config/package.json index 8a977ecb3..78daf7572 100644 --- a/packages/build-scripts-config/package.json +++ b/packages/build-scripts-config/package.json @@ -16,6 +16,10 @@ "peerDependencies": { "webpack": "^4.41.1" }, + "repository": { + "type": "http", + "url": "https://github.com/alibaba/ice/tree/master/packages/build-scripts-config" + }, "dependencies": { "@builder/babel-preset-ice": "^1.0.0", "babel-jest": "^24.9.0", diff --git a/packages/build-user-config/package.json b/packages/build-user-config/package.json index 97131c10f..b94e06e51 100644 --- a/packages/build-user-config/package.json +++ b/packages/build-user-config/package.json @@ -35,8 +35,8 @@ "lib" ], "repository": { - "type": "git", - "url": "git+https://github.com/alibaba/ice.git" + "type": "http", + "url": "https://github.com/alibaba/ice/tree/master/packages/build-user-config" }, "scripts": { "test": "echo \"Error: run tests from root\" && exit 1" diff --git a/packages/create-app-container/package.json b/packages/create-app-container/package.json index 3d2cc2b0b..c853dbeb9 100644 --- a/packages/create-app-container/package.json +++ b/packages/create-app-container/package.json @@ -17,8 +17,8 @@ "universal-env": "^3.0.0" }, "repository": { - "type": "git", - "url": "git+https://github.com/alibaba/ice.git" + "type": "http", + "url": "https://github.com/alibaba/ice/tree/master/packages/create-app-container" }, "scripts": { "test": "echo \"Error: run tests from root\" && exit 1" diff --git a/packages/create-app-shared/package.json b/packages/create-app-shared/package.json index 0c7854bdd..a07f24f28 100644 --- a/packages/create-app-shared/package.json +++ b/packages/create-app-shared/package.json @@ -21,8 +21,8 @@ "lib" ], "repository": { - "type": "git", - "url": "git+https://github.com/alibaba/ice.git" + "type": "http", + "url": "https://github.com/alibaba/ice/tree/master/packages/create-app-shared" }, "scripts": { "test": "echo \"Error: run tests from root\" && exit 1" diff --git a/packages/create-cli-utils/package.json b/packages/create-cli-utils/package.json index 446a33510..85b95b73b 100644 --- a/packages/create-cli-utils/package.json +++ b/packages/create-cli-utils/package.json @@ -24,8 +24,8 @@ "yargs-parser": "^18.1.2" }, "repository": { - "type": "git", - "url": "git+https://github.com/alibaba/ice.git" + "type": "http", + "url": "https://github.com/alibaba/ice/tree/master/packages/create-cli-utils" }, "scripts": { "test": "echo \"Error: run tests from root\" && exit 1" diff --git a/packages/create-ice/package.json b/packages/create-ice/package.json index 2f1c42394..997c097dc 100644 --- a/packages/create-ice/package.json +++ b/packages/create-ice/package.json @@ -29,8 +29,8 @@ "inquirer": "^7.0.4" }, "repository": { - "type": "git", - "url": "git@github.com:alibaba/ice.git" + "type": "http", + "url": "https://github.com/alibaba/ice/tree/master/packages/create-ice" }, "gitHead": "07ac7bb07162aac8c90778dd1de4a2060f8df498" } diff --git a/packages/create-use-router/package.json b/packages/create-use-router/package.json index 87bd54f15..ae2a3c3f0 100644 --- a/packages/create-use-router/package.json +++ b/packages/create-use-router/package.json @@ -14,8 +14,8 @@ "lib" ], "repository": { - "type": "git", - "url": "git+https://github.com/alibaba/ice.git" + "type": "http", + "url": "https://github.com/alibaba/ice/tree/master/packages/create-use-router" }, "scripts": { "test": "echo \"Error: run tests from root\" && exit 1" diff --git a/packages/miniapp-renderer/package.json b/packages/miniapp-renderer/package.json index cd4758928..5502ec68f 100644 --- a/packages/miniapp-renderer/package.json +++ b/packages/miniapp-renderer/package.json @@ -17,8 +17,8 @@ "lib" ], "repository": { - "type": "git", - "url": "git+https://github.com/alibaba/ice.git" + "type": "http", + "url": "https://github.com/alibaba/ice/tree/master/packages/miniapp-renderer" }, "scripts": { "test": "echo \"Error: run tests from root\" && exit 1" diff --git a/packages/plugin-antd/package.json b/packages/plugin-antd/package.json index 61c6726e0..8e69491d8 100644 --- a/packages/plugin-antd/package.json +++ b/packages/plugin-antd/package.json @@ -8,6 +8,10 @@ }, "author": "", "license": "MIT", + "repository": { + "type": "http", + "url": "https://github.com/alibaba/ice/tree/master/packages/plugin-antd" + }, "dependencies": { "babel-plugin-import": "^1.11.2" } diff --git a/packages/plugin-app-core/package.json b/packages/plugin-app-core/package.json index 5136ef1ad..531976685 100644 --- a/packages/plugin-app-core/package.json +++ b/packages/plugin-app-core/package.json @@ -37,8 +37,8 @@ "lodash.debounce": "^4.0.8" }, "repository": { - "type": "git", - "url": "git@github.com:alibaba/ice.git" + "type": "http", + "url": "https://github.com/alibaba/ice/tree/master/packages/plugin-app-core" }, "gitHead": "07ac7bb07162aac8c90778dd1de4a2060f8df498" } \ No newline at end of file diff --git a/packages/plugin-auth/package.json b/packages/plugin-auth/package.json index 213c1aafd..0366d8d6d 100644 --- a/packages/plugin-auth/package.json +++ b/packages/plugin-auth/package.json @@ -19,8 +19,8 @@ "src/runtime.tsx" ], "repository": { - "type": "git", - "url": "git+https://github.com/alibaba/ice.git" + "type": "http", + "url": "https://github.com/alibaba/ice/tree/master/packages/plugin-auth" }, "scripts": { "test": "echo \"Error: run tests from root\" && exit 1" diff --git a/packages/plugin-config/package.json b/packages/plugin-config/package.json index 89c3c7be9..d4510e539 100644 --- a/packages/plugin-config/package.json +++ b/packages/plugin-config/package.json @@ -15,8 +15,8 @@ "config" ], "repository": { - "type": "git", - "url": "git@github.com:alibaba/ice.git" + "type": "http", + "url": "https://github.com/alibaba/ice/tree/master/packages/plugin-config" }, "scripts": { "test": "echo \"Error: run tests from root\" && exit 1" diff --git a/packages/plugin-css-assets-local/package.json b/packages/plugin-css-assets-local/package.json index 332d32fa5..742f99780 100644 --- a/packages/plugin-css-assets-local/package.json +++ b/packages/plugin-css-assets-local/package.json @@ -8,6 +8,10 @@ }, "author": "", "license": "MIT", + "repository": { + "type": "http", + "url": "https://github.com/alibaba/ice/tree/master/packages/plugin-css-assets-local" + }, "dependencies": { "extract-css-assets-webpack-plugin": "^0.2.5" } diff --git a/packages/plugin-dev-inspector/package.json b/packages/plugin-dev-inspector/package.json index 7793adeee..0560c9482 100644 --- a/packages/plugin-dev-inspector/package.json +++ b/packages/plugin-dev-inspector/package.json @@ -12,8 +12,8 @@ "src" ], "repository": { - "type": "git", - "url": "git@github.com:alibaba/ice.git" + "type": "http", + "url": "https://github.com/alibaba/ice/tree/master/packages/plugin-dev-inspector" }, "dependencies": { "@alib/build-scripts": "^0.1.31", diff --git a/packages/plugin-esbuild/package.json b/packages/plugin-esbuild/package.json index 84abee03b..06c6bc8b0 100644 --- a/packages/plugin-esbuild/package.json +++ b/packages/plugin-esbuild/package.json @@ -21,8 +21,8 @@ "registry": "https://registry.npmjs.org" }, "repository": { - "type": "git", - "url": "git+https://github.com/alibaba/ice.git" + "type": "http", + "url": "https://github.com/alibaba/ice/tree/master/packages/plugin-esbuild" }, "scripts": { "test": "echo \"Error: run tests from root\" && exit 1" diff --git a/packages/plugin-faas/package.json b/packages/plugin-faas/package.json index e9caf17fd..ad0f709bb 100644 --- a/packages/plugin-faas/package.json +++ b/packages/plugin-faas/package.json @@ -8,6 +8,10 @@ }, "author": "", "license": "MIT", + "repository": { + "type": "http", + "url": "https://github.com/alibaba/ice/tree/master/packages/plugin-faas" + }, "dependencies": { "@midwayjs/faas-dev-pack": "^1.0.0" } diff --git a/packages/plugin-fast-refresh/package.json b/packages/plugin-fast-refresh/package.json index c35b91c8c..66336cefc 100644 --- a/packages/plugin-fast-refresh/package.json +++ b/packages/plugin-fast-refresh/package.json @@ -14,8 +14,8 @@ "lib" ], "repository": { - "type": "git", - "url": "git+https://github.com/alibaba/ice.git" + "type": "http", + "url": "https://github.com/alibaba/ice/tree/master/packages/plugin-fast-refresh" }, "scripts": { "test": "echo \"Error: run tests from root\" && exit 1" diff --git a/packages/plugin-fusion/package.json b/packages/plugin-fusion/package.json index 21576b395..ad73d812b 100644 --- a/packages/plugin-fusion/package.json +++ b/packages/plugin-fusion/package.json @@ -30,5 +30,9 @@ "peerDependencies": { "sass": "^1.0.0", "webpack": "^4.0.0" + }, + "repository": { + "type": "http", + "url": "https://github.com/alibaba/ice/tree/master/packages/plugin-fusion" } -} \ No newline at end of file +} diff --git a/packages/plugin-helmet/package.json b/packages/plugin-helmet/package.json index 8ac120fb7..8222a257b 100644 --- a/packages/plugin-helmet/package.json +++ b/packages/plugin-helmet/package.json @@ -21,8 +21,8 @@ "typescript": "^4.0.0" }, "repository": { - "type": "git", - "url": "git@github.com:alibaba/ice.git" + "type": "http", + "url": "https://github.com/alibaba/ice/tree/master/packages/plugin-helmet" }, "scripts": { "test": "echo \"Error: run tests from root\" && exit 1" diff --git a/packages/plugin-helpers/package.json b/packages/plugin-helpers/package.json index 0b7257081..151d75850 100644 --- a/packages/plugin-helpers/package.json +++ b/packages/plugin-helpers/package.json @@ -29,8 +29,8 @@ "typescript": "^4.0.0" }, "repository": { - "type": "git", - "url": "git@github.com:alibaba/ice.git" + "type": "http", + "url": "https://github.com/alibaba/ice/tree/master/packages/plugin-helpers" }, "scripts": { "test": "echo \"Error: run tests from root\" && exit 1" diff --git a/packages/plugin-ice-ssr/package.json b/packages/plugin-ice-ssr/package.json index 0e8b45793..1f249dd1e 100644 --- a/packages/plugin-ice-ssr/package.json +++ b/packages/plugin-ice-ssr/package.json @@ -15,8 +15,8 @@ "src" ], "repository": { - "type": "git", - "url": "git@github.com:alibaba/ice.git" + "type": "http", + "url": "https://github.com/alibaba/ice/tree/master/packages/plugin-ice-ssr" }, "scripts": { "test": "echo \"Error: run tests from root\" && exit 1" diff --git a/packages/plugin-icestark/package.json b/packages/plugin-icestark/package.json index 67d1e45c7..bd8fb0ce0 100644 --- a/packages/plugin-icestark/package.json +++ b/packages/plugin-icestark/package.json @@ -29,8 +29,8 @@ "typescript": "^4.0.0" }, "repository": { - "type": "git", - "url": "git@github.com:alibaba/ice.git" + "type": "http", + "url": "https://github.com/alibaba/ice/tree/master/packages/plugin-icestark" }, "scripts": { "test": "echo \"Error: run tests from root\" && exit 1" diff --git a/packages/plugin-jsx-plus/package.json b/packages/plugin-jsx-plus/package.json index 3c985223c..5a92ad4e8 100644 --- a/packages/plugin-jsx-plus/package.json +++ b/packages/plugin-jsx-plus/package.json @@ -11,6 +11,10 @@ ], "author": "tony7lee", "license": "MIT", + "repository": { + "type": "http", + "url": "https://github.com/alibaba/ice/tree/master/packages/plugin-jsx-plus" + }, "dependencies": { "babel-plugin-transform-jsx-class": "^0.1.2", "babel-plugin-transform-jsx-condition": "^0.1.2", diff --git a/packages/plugin-keep-alive/package.json b/packages/plugin-keep-alive/package.json index 49c5a05c4..05f60c77d 100644 --- a/packages/plugin-keep-alive/package.json +++ b/packages/plugin-keep-alive/package.json @@ -18,8 +18,8 @@ "src" ], "repository": { - "type": "git", - "url": "git@github.com:alibaba/ice.git" + "type": "http", + "url": "https://github.com/alibaba/ice/tree/master/packages/plugin-keep-alive" }, "scripts": { "test": "echo \"Error: run tests from root\" && exit 1" diff --git a/packages/plugin-load-assets/package.json b/packages/plugin-load-assets/package.json index 1f7819d61..06887765b 100644 --- a/packages/plugin-load-assets/package.json +++ b/packages/plugin-load-assets/package.json @@ -12,6 +12,10 @@ ], "author": "", "license": "ISC", + "repository": { + "type": "http", + "url": "https://github.com/alibaba/ice/tree/master/packages/plugin-load-assets" + }, "dependencies": { "build-plugin-wrap-code": "^0.1.0" } diff --git a/packages/plugin-logger/package.json b/packages/plugin-logger/package.json index 0a6b74881..8965e1860 100644 --- a/packages/plugin-logger/package.json +++ b/packages/plugin-logger/package.json @@ -24,8 +24,8 @@ "typescript": "^4.0.0" }, "repository": { - "type": "git", - "url": "git@github.com:alibaba/ice.git" + "type": "http", + "url": "https://github.com/alibaba/ice/tree/master/packages/plugin-logger" }, "scripts": { "test": "echo \"Error: run tests from root\" && exit 1" diff --git a/packages/plugin-miniapp/package.json b/packages/plugin-miniapp/package.json index b3cc0f7e6..888629a66 100644 --- a/packages/plugin-miniapp/package.json +++ b/packages/plugin-miniapp/package.json @@ -14,8 +14,8 @@ "lib" ], "repository": { - "type": "git", - "url": "git+https://github.com/alibaba/ice.git" + "type": "http", + "url": "https://github.com/alibaba/ice/tree/master/packages/plugin-miniapp" }, "scripts": { "test": "echo \"Error: run tests from root\" && exit 1" diff --git a/packages/plugin-modular-import/package.json b/packages/plugin-modular-import/package.json index 28074b2c3..962e4ea0d 100644 --- a/packages/plugin-modular-import/package.json +++ b/packages/plugin-modular-import/package.json @@ -8,6 +8,10 @@ }, "author": "", "license": "ISC", + "repository": { + "type": "http", + "url": "https://github.com/alibaba/ice/tree/master/packages/plugin-modular-import" + }, "dependencies": { "babel-plugin-import": "^1.11.2" } diff --git a/packages/plugin-moment-locales/package.json b/packages/plugin-moment-locales/package.json index b156fb4a4..5724ef00b 100644 --- a/packages/plugin-moment-locales/package.json +++ b/packages/plugin-moment-locales/package.json @@ -10,6 +10,10 @@ "build-scripts", "build-plugin" ], + "repository": { + "type": "http", + "url": "https://github.com/alibaba/ice/tree/master/packages/plugin-moment-locales" + }, "author": "ICE Team", "license": "MIT" } diff --git a/packages/plugin-mpa/package.json b/packages/plugin-mpa/package.json index d6be6a681..fe8cd3b54 100644 --- a/packages/plugin-mpa/package.json +++ b/packages/plugin-mpa/package.json @@ -13,8 +13,8 @@ "lib" ], "repository": { - "type": "git", - "url": "git@github.com:alibaba/ice.git" + "type": "http", + "url": "https://github.com/alibaba/ice/tree/master/packages/plugin-mpa" }, "scripts": { "test": "echo \"Error: run tests from root\" && exit 1" diff --git a/packages/plugin-prerender/package.json b/packages/plugin-prerender/package.json index 22877c67d..827175ee7 100644 --- a/packages/plugin-prerender/package.json +++ b/packages/plugin-prerender/package.json @@ -7,8 +7,8 @@ "test": "echo \"Error: no test specified\" && exit 1" }, "repository": { - "type": "git", - "url": "git@github.com:alibaba/ice.git" + "type": "http", + "url": "https://github.com/alibaba/ice/tree/master/packages/plugin-prerender" }, "author": "ice-admin@alibaba-inc.com", "license": "MIT", diff --git a/packages/plugin-react-app/package.json b/packages/plugin-react-app/package.json index 73a9776f2..2d665ffaf 100644 --- a/packages/plugin-react-app/package.json +++ b/packages/plugin-react-app/package.json @@ -33,8 +33,8 @@ "webpack": "^4.41.1" }, "repository": { - "type": "git", - "url": "git@github.com:alibaba/ice.git" + "type": "http", + "url": "https://github.com/alibaba/ice/tree/master/packages/plugin-react-app" }, "gitHead": "07ac7bb07162aac8c90778dd1de4a2060f8df498" } \ No newline at end of file diff --git a/packages/plugin-rematch/package.json b/packages/plugin-rematch/package.json index e38703c54..a898ab870 100644 --- a/packages/plugin-rematch/package.json +++ b/packages/plugin-rematch/package.json @@ -29,8 +29,8 @@ "react-redux": "^7.1.3" }, "repository": { - "type": "git", - "url": "git@github.com:alibaba/ice.git" + "type": "http", + "url": "https://github.com/alibaba/ice/tree/master/packages/plugin-rematch" }, "gitHead": "07ac7bb07162aac8c90778dd1de4a2060f8df498" } \ No newline at end of file diff --git a/packages/plugin-request/package.json b/packages/plugin-request/package.json index f08fe2090..cbef3d505 100644 --- a/packages/plugin-request/package.json +++ b/packages/plugin-request/package.json @@ -25,8 +25,8 @@ "staticModule": true }, "repository": { - "type": "git", - "url": "git@github.com:alibaba/ice.git" + "type": "http", + "url": "https://github.com/alibaba/ice/tree/master/packages/plugin-request" }, "scripts": { "test": "echo \"Error: run tests from root\" && exit 1" diff --git a/packages/plugin-router/package.json b/packages/plugin-router/package.json index 9807d797a..426d5e246 100644 --- a/packages/plugin-router/package.json +++ b/packages/plugin-router/package.json @@ -35,8 +35,8 @@ "templates" ], "repository": { - "type": "git", - "url": "git@github.com:alibaba/ice.git" + "type": "http", + "url": "https://github.com/alibaba/ice/tree/master/packages/plugin-router" }, "scripts": { "test": "echo \"Error: run tests from root\" && exit 1" diff --git a/packages/plugin-service/package.json b/packages/plugin-service/package.json index 0566514c0..901e4f9c9 100644 --- a/packages/plugin-service/package.json +++ b/packages/plugin-service/package.json @@ -19,8 +19,8 @@ "lib" ], "repository": { - "type": "git", - "url": "git@github.com:alibaba/ice.git" + "type": "http", + "url": "https://github.com/alibaba/ice/tree/master/packages/plugin-service" }, "scripts": { "test": "echo \"Error: run tests from root\" && exit 1" diff --git a/packages/plugin-smart-debug/package.json b/packages/plugin-smart-debug/package.json index f0dc05b76..134218a78 100644 --- a/packages/plugin-smart-debug/package.json +++ b/packages/plugin-smart-debug/package.json @@ -8,6 +8,10 @@ }, "author": "", "license": "ISC", + "repository": { + "type": "http", + "url": "https://github.com/alibaba/ice/tree/master/packages/plugin-smart-debug" + }, "dependencies": { "build-plugin-load-assets": "^0.1.3", "build-plugin-wrap-code": "^0.1.0" diff --git a/packages/plugin-stark-module/package.json b/packages/plugin-stark-module/package.json index fc6676b0e..ad79d43b9 100644 --- a/packages/plugin-stark-module/package.json +++ b/packages/plugin-stark-module/package.json @@ -17,6 +17,10 @@ }, "author": "", "license": "MIT", + "repository": { + "type": "http", + "url": "https://github.com/alibaba/ice/tree/master/packages/plugin-stark-module" + }, "devDependencies": { "@alib/build-scripts": "^0.1.20", "@types/fs-extra": "^8.1.0", diff --git a/packages/plugin-store/package.json b/packages/plugin-store/package.json index ad6de0fbc..802f86571 100644 --- a/packages/plugin-store/package.json +++ b/packages/plugin-store/package.json @@ -16,8 +16,8 @@ "src/runtime.tsx" ], "repository": { - "type": "git", - "url": "git@github.com:alibaba/ice.git" + "type": "http", + "url": "https://github.com/alibaba/ice/tree/master/packages/plugin-store" }, "scripts": { "test": "echo \"Error: run tests from root\" && exit 1" diff --git a/packages/plugin-webpack5/package.json b/packages/plugin-webpack5/package.json index 827ea79e8..c419fdfd3 100644 --- a/packages/plugin-webpack5/package.json +++ b/packages/plugin-webpack5/package.json @@ -15,6 +15,10 @@ ], "author": "", "license": "ISC", + "repository": { + "type": "http", + "url": "https://github.com/alibaba/ice/tree/master/packages/plugin-webpack5" + }, "devDependencies": { "@alib/build-scripts": "^0.1.18", "typescript": "^4.0.0" diff --git a/packages/plugin-wrap-code/package.json b/packages/plugin-wrap-code/package.json index 4390b128c..0f21f7094 100644 --- a/packages/plugin-wrap-code/package.json +++ b/packages/plugin-wrap-code/package.json @@ -12,6 +12,10 @@ ], "author": "", "license": "ISC", + "repository": { + "type": "http", + "url": "https://github.com/alibaba/ice/tree/master/packages/plugin-wrap-code" + }, "dependencies": { "webpack-sources": "^2.0.0" }, diff --git a/packages/react-app-renderer/package.json b/packages/react-app-renderer/package.json index a04e092aa..5ad0d4556 100644 --- a/packages/react-app-renderer/package.json +++ b/packages/react-app-renderer/package.json @@ -25,8 +25,8 @@ "lib" ], "repository": { - "type": "git", - "url": "git+https://github.com/alibaba/ice.git" + "type": "http", + "url": "https://github.com/alibaba/ice/tree/master/packages/react-app-renderer" }, "scripts": { "test": "echo \"Error: run tests from root\" && exit 1" diff --git a/packages/resolve-sass-import/package.json b/packages/resolve-sass-import/package.json index 2f7cc78bb..b95dde126 100644 --- a/packages/resolve-sass-import/package.json +++ b/packages/resolve-sass-import/package.json @@ -10,6 +10,10 @@ "sass" ], "license": "MIT", + "repository": { + "type": "http", + "url": "https://github.com/alibaba/ice/tree/master/packages/resolve-sass-import" + }, "dependencies": { "fs-extra": "^8.1.0", "loader-utils": "^1.2.3", diff --git a/packages/webpack-dev-mock/package.json b/packages/webpack-dev-mock/package.json index 3066bc106..cc1568ce9 100644 --- a/packages/webpack-dev-mock/package.json +++ b/packages/webpack-dev-mock/package.json @@ -8,6 +8,10 @@ }, "author": "ice-admin@alibaba-inc.com", "license": "MIT", + "repository": { + "type": "http", + "url": "https://github.com/alibaba/ice/tree/master/packages/webpack-dev-mock" + }, "dependencies": { "@builder/babel-preset-ice": "^1.0.0", "@babel/parser": "^7.12.11", @@ -26,6 +30,5 @@ }, "devDependencies": { "express": "^4.16.3" - }, - "repository": "https://github.com/ice-lab/ice-scripts/tree/master/packages/webpack-dev-mock" + } } \ No newline at end of file diff --git a/packages/webpack-loader-skin/package.json b/packages/webpack-loader-skin/package.json index 668cf0ed5..38b1a2e2a 100644 --- a/packages/webpack-loader-skin/package.json +++ b/packages/webpack-loader-skin/package.json @@ -11,6 +11,10 @@ ], "author": "ICE Team", "license": "MIT", + "repository": { + "type": "http", + "url": "https://github.com/alibaba/ice/tree/master/packages/webpack-loader-skin" + }, "dependencies": { "@icedesign/skin": "^0.1.13", "chalk": "^2.4.1", diff --git a/packages/webpack-plugin-eslint-reporting/package.json b/packages/webpack-plugin-eslint-reporting/package.json index 08338245f..9521c92ae 100644 --- a/packages/webpack-plugin-eslint-reporting/package.json +++ b/packages/webpack-plugin-eslint-reporting/package.json @@ -8,6 +8,10 @@ "files": [ "src" ], + "repository": { + "type": "http", + "url": "https://github.com/alibaba/ice/tree/master/packages/webpack-plugin-eslint-reporting" + }, "dependencies": { "eslint": "^6.8.0", "glob": "^7.1.6" diff --git a/packages/webpack-plugin-extract-css-assets/package.json b/packages/webpack-plugin-extract-css-assets/package.json index 36165c564..5102c6981 100644 --- a/packages/webpack-plugin-extract-css-assets/package.json +++ b/packages/webpack-plugin-extract-css-assets/package.json @@ -11,7 +11,7 @@ ], "repository": { "type": "http", - "url": "https://github.com/ice-lab/ice-scripts/tree/master/packages/extract-css-assets-webpack-plugin" + "url": "https://github.com/alibaba/ice/tree/master/packages/webpack-plugin-extract-css-assets" }, "keywords": [ "webpack", diff --git a/packages/webpack-plugin-import/package.json b/packages/webpack-plugin-import/package.json index d4e1760fc..d127fd7dd 100644 --- a/packages/webpack-plugin-import/package.json +++ b/packages/webpack-plugin-import/package.json @@ -8,7 +8,7 @@ }, "repository": { "type": "http", - "url": "https://github.com/ice-lab/ice-scripts/tree/master/packages/webpack-plugin-import" + "url": "https://github.com/alibaba/ice/tree/master/packages/webpack-plugin-import" }, "keywords": [], "author": "ICE Team",