diff --git a/.github/files/lint-project-structure.sh b/.github/files/lint-project-structure.sh index 194bf66cd9d32..7b8df4186ff82 100755 --- a/.github/files/lint-project-structure.sh +++ b/.github/files/lint-project-structure.sh @@ -165,7 +165,7 @@ for PROJECT in projects/*/*; do echo "::error file=$PROJECT/package.json${LINE:-$LINE2}::Set \`.repository.type\` to \"git\", as the monorepo is a git repository." fi URL="$(jq -r '.url' <<<"$JSON")" - if [[ "$URL" != "https://github.com/Automattic/jetpack.git" && "$URL" != "https://github.com/Automattic/jetpack" ]]; then + if [ "$URL" != "git+https://github.com/Automattic/jetpack.git" ]; then EXIT=1 LINE=$(jq --stream -r 'if length == 1 then .[0][:-1] else .[0] end | if . == ["repository","url"] then ",line=\( input_line_number )" else empty end' "$PROJECT/package.json") echo "::error file=$PROJECT/package.json${LINE:-$LINE2}::Set \`.repository.url\` to point to the monorepo, i.e. \"https://github.com/Automattic/jetpack\"." @@ -324,7 +324,7 @@ for PROJECT in projects/*/*; do if jq -e '.extra["npmjs-autopublish"]' "$PROJECT/composer.json" >/dev/null; then if ! jq -e '.repository' "$PROJECT/package.json" >/dev/null; then EXIT=1 - JSON="$(jq --tab --arg dir "$PROJECT" -n '{ type: "git", url: "https://github.com/Automattic/jetpack.git", directory: $dir }')" + JSON="$(jq --tab --arg dir "$PROJECT" -n '{ type: "git", url: "git+https://github.com/Automattic/jetpack.git", directory: $dir }')" echo "---" # Bracket message containing newlines for better visibility in GH's logs. echo "::error file=$PROJECT/package.json::Package $SLUG is published to npmjs but does not specify \`.repository\`.%0A\`\`\`%0A\"repository\": ${JSON//$'\n'/%0A},%0A\`\`\`" echo "---" diff --git a/package.json b/package.json index 954da13145901..8c9f0de517ad0 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git" + "url": "git+https://github.com/Automattic/jetpack.git" }, "license": "GPL-2.0-or-later", "author": "Automattic", diff --git a/projects/js-packages/ai-client/changelog/fix-registry-url-js-packages b/projects/js-packages/ai-client/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..10bcd4fc1e524 --- /dev/null +++ b/projects/js-packages/ai-client/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo URL format to align with what NPM wants (npm pkg fix) + + diff --git a/projects/js-packages/ai-client/package.json b/projects/js-packages/ai-client/package.json index 21266551a3d55..a3989f057c21d 100644 --- a/projects/js-packages/ai-client/package.json +++ b/projects/js-packages/ai-client/package.json @@ -9,7 +9,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/js-packages/ai-client" }, "license": "GPL-2.0-or-later", diff --git a/projects/js-packages/analytics/changelog/fix-registry-url-js-packages b/projects/js-packages/analytics/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..10bcd4fc1e524 --- /dev/null +++ b/projects/js-packages/analytics/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo URL format to align with what NPM wants (npm pkg fix) + + diff --git a/projects/js-packages/analytics/package.json b/projects/js-packages/analytics/package.json index 211139feacf52..5c3b6b1ef2388 100644 --- a/projects/js-packages/analytics/package.json +++ b/projects/js-packages/analytics/package.json @@ -8,7 +8,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/js-packages/analytics" }, "author": "Automattic", diff --git a/projects/js-packages/api/changelog/fix-registry-url-js-packages b/projects/js-packages/api/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..10bcd4fc1e524 --- /dev/null +++ b/projects/js-packages/api/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo URL format to align with what NPM wants (npm pkg fix) + + diff --git a/projects/js-packages/api/package.json b/projects/js-packages/api/package.json index 96ec8fb3cad8a..dcd162f87ef25 100644 --- a/projects/js-packages/api/package.json +++ b/projects/js-packages/api/package.json @@ -8,7 +8,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/js-packages/api" }, "author": "Automattic", diff --git a/projects/js-packages/babel-plugin-replace-textdomain/changelog/fix-registry-url-js-packages b/projects/js-packages/babel-plugin-replace-textdomain/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..10bcd4fc1e524 --- /dev/null +++ b/projects/js-packages/babel-plugin-replace-textdomain/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo URL format to align with what NPM wants (npm pkg fix) + + diff --git a/projects/js-packages/babel-plugin-replace-textdomain/package.json b/projects/js-packages/babel-plugin-replace-textdomain/package.json index 7f8004399692b..0ce6b975e72c7 100644 --- a/projects/js-packages/babel-plugin-replace-textdomain/package.json +++ b/projects/js-packages/babel-plugin-replace-textdomain/package.json @@ -8,7 +8,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/js-packages/babel-plugin-replace-textdomain" }, "license": "GPL-2.0-or-later", diff --git a/projects/js-packages/boost-score-api/changelog/fix-registry-url-js-packages b/projects/js-packages/boost-score-api/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..10bcd4fc1e524 --- /dev/null +++ b/projects/js-packages/boost-score-api/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo URL format to align with what NPM wants (npm pkg fix) + + diff --git a/projects/js-packages/boost-score-api/package.json b/projects/js-packages/boost-score-api/package.json index cc82d6a7d6331..2c4f507950487 100644 --- a/projects/js-packages/boost-score-api/package.json +++ b/projects/js-packages/boost-score-api/package.json @@ -8,7 +8,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/js-packages/boost-score-api" }, "license": "GPL-2.0-or-later", diff --git a/projects/js-packages/charts/changelog/fix-registry-url-js-packages b/projects/js-packages/charts/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..10bcd4fc1e524 --- /dev/null +++ b/projects/js-packages/charts/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo URL format to align with what NPM wants (npm pkg fix) + + diff --git a/projects/js-packages/charts/package.json b/projects/js-packages/charts/package.json index 90c194c7e95a9..090366546af6c 100644 --- a/projects/js-packages/charts/package.json +++ b/projects/js-packages/charts/package.json @@ -8,7 +8,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/js-packages/charts" }, "license": "GPL-2.0-or-later", diff --git a/projects/js-packages/components/changelog/fix-registry-url-js-packages b/projects/js-packages/components/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..10bcd4fc1e524 --- /dev/null +++ b/projects/js-packages/components/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo URL format to align with what NPM wants (npm pkg fix) + + diff --git a/projects/js-packages/components/package.json b/projects/js-packages/components/package.json index c6ef9078b264e..540ec09022dee 100644 --- a/projects/js-packages/components/package.json +++ b/projects/js-packages/components/package.json @@ -7,7 +7,7 @@ "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/components/#readme", "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/js-packages/components" }, "bugs": { diff --git a/projects/js-packages/config/changelog/fix-registry-url-js-packages b/projects/js-packages/config/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..10bcd4fc1e524 --- /dev/null +++ b/projects/js-packages/config/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo URL format to align with what NPM wants (npm pkg fix) + + diff --git a/projects/js-packages/config/package.json b/projects/js-packages/config/package.json index efdac3ed4fdf9..35a3cf1e170a3 100644 --- a/projects/js-packages/config/package.json +++ b/projects/js-packages/config/package.json @@ -8,7 +8,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/js-packages/config" }, "license": "GPL-2.0-or-later", diff --git a/projects/js-packages/connection/changelog/fix-registry-url-js-packages b/projects/js-packages/connection/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..10bcd4fc1e524 --- /dev/null +++ b/projects/js-packages/connection/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo URL format to align with what NPM wants (npm pkg fix) + + diff --git a/projects/js-packages/connection/package.json b/projects/js-packages/connection/package.json index c67af609bee0b..60267d45f70ba 100644 --- a/projects/js-packages/connection/package.json +++ b/projects/js-packages/connection/package.json @@ -8,7 +8,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/js-packages/connection" }, "author": "Automattic", diff --git a/projects/js-packages/critical-css-gen/changelog/fix-registry-url-js-packages b/projects/js-packages/critical-css-gen/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..10bcd4fc1e524 --- /dev/null +++ b/projects/js-packages/critical-css-gen/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo URL format to align with what NPM wants (npm pkg fix) + + diff --git a/projects/js-packages/critical-css-gen/package.json b/projects/js-packages/critical-css-gen/package.json index 39888e91ba759..28feb37df6ab0 100644 --- a/projects/js-packages/critical-css-gen/package.json +++ b/projects/js-packages/critical-css-gen/package.json @@ -9,7 +9,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/js-packages/critical-css-gen" }, "license": "GPL-2.0-or-later", diff --git a/projects/js-packages/eslint-changed/changelog/fix-registry-url-js-packages b/projects/js-packages/eslint-changed/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..10bcd4fc1e524 --- /dev/null +++ b/projects/js-packages/eslint-changed/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo URL format to align with what NPM wants (npm pkg fix) + + diff --git a/projects/js-packages/eslint-changed/package.json b/projects/js-packages/eslint-changed/package.json index 64edf74b5ace3..8d7d44f106741 100644 --- a/projects/js-packages/eslint-changed/package.json +++ b/projects/js-packages/eslint-changed/package.json @@ -9,7 +9,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/js-packages/eslint-changed" }, "license": "GPL-2.0-or-later", diff --git a/projects/js-packages/eslint-config-target-es/changelog/fix-registry-url-js-packages b/projects/js-packages/eslint-config-target-es/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..10bcd4fc1e524 --- /dev/null +++ b/projects/js-packages/eslint-config-target-es/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo URL format to align with what NPM wants (npm pkg fix) + + diff --git a/projects/js-packages/eslint-config-target-es/package.json b/projects/js-packages/eslint-config-target-es/package.json index c228977cca8b7..c4a81c9fe4991 100644 --- a/projects/js-packages/eslint-config-target-es/package.json +++ b/projects/js-packages/eslint-config-target-es/package.json @@ -8,7 +8,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/js-packages/eslint-config-target-es" }, "license": "GPL-2.0-or-later", diff --git a/projects/js-packages/i18n-check-webpack-plugin/changelog/fix-registry-url-js-packages b/projects/js-packages/i18n-check-webpack-plugin/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..10bcd4fc1e524 --- /dev/null +++ b/projects/js-packages/i18n-check-webpack-plugin/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo URL format to align with what NPM wants (npm pkg fix) + + diff --git a/projects/js-packages/i18n-check-webpack-plugin/package.json b/projects/js-packages/i18n-check-webpack-plugin/package.json index ddcd2248037d1..3669cd8f4a45d 100644 --- a/projects/js-packages/i18n-check-webpack-plugin/package.json +++ b/projects/js-packages/i18n-check-webpack-plugin/package.json @@ -8,7 +8,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/js-packages/i18n-check-webpack-plugin" }, "license": "GPL-2.0-or-later", diff --git a/projects/js-packages/i18n-loader-webpack-plugin/changelog/fix-registry-url-js-packages b/projects/js-packages/i18n-loader-webpack-plugin/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..10bcd4fc1e524 --- /dev/null +++ b/projects/js-packages/i18n-loader-webpack-plugin/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo URL format to align with what NPM wants (npm pkg fix) + + diff --git a/projects/js-packages/i18n-loader-webpack-plugin/package.json b/projects/js-packages/i18n-loader-webpack-plugin/package.json index 969185172136b..d5d94e3ddb170 100644 --- a/projects/js-packages/i18n-loader-webpack-plugin/package.json +++ b/projects/js-packages/i18n-loader-webpack-plugin/package.json @@ -8,7 +8,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/js-packages/i18n-loader-webpack-plugin" }, "license": "GPL-2.0-or-later", diff --git a/projects/js-packages/image-guide/changelog/fix-registry-url-js-packages b/projects/js-packages/image-guide/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..10bcd4fc1e524 --- /dev/null +++ b/projects/js-packages/image-guide/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo URL format to align with what NPM wants (npm pkg fix) + + diff --git a/projects/js-packages/image-guide/package.json b/projects/js-packages/image-guide/package.json index 5d76421db9487..a46bf0d5b6755 100644 --- a/projects/js-packages/image-guide/package.json +++ b/projects/js-packages/image-guide/package.json @@ -9,7 +9,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/js-packages/image-guide" }, "license": "GPL-2.0-or-later", diff --git a/projects/js-packages/jetpack-cli/changelog/fix-registry-url-js-packages b/projects/js-packages/jetpack-cli/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..10bcd4fc1e524 --- /dev/null +++ b/projects/js-packages/jetpack-cli/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo URL format to align with what NPM wants (npm pkg fix) + + diff --git a/projects/js-packages/jetpack-cli/package.json b/projects/js-packages/jetpack-cli/package.json index f9f7a69a842cc..d2e8611df7cc8 100644 --- a/projects/js-packages/jetpack-cli/package.json +++ b/projects/js-packages/jetpack-cli/package.json @@ -7,7 +7,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/js-packages/jetpack-cli" }, "bugs": { diff --git a/projects/js-packages/partner-coupon/changelog/fix-registry-url-js-packages b/projects/js-packages/partner-coupon/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..1808caa8a4e1a --- /dev/null +++ b/projects/js-packages/partner-coupon/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo to match npm convention. + + diff --git a/projects/js-packages/partner-coupon/package.json b/projects/js-packages/partner-coupon/package.json index 66fea192f37a5..8a85a65857109 100644 --- a/projects/js-packages/partner-coupon/package.json +++ b/projects/js-packages/partner-coupon/package.json @@ -9,7 +9,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/js-packages/partner-coupon" }, "license": "GPL-2.0-or-later", diff --git a/projects/js-packages/publicize-components/changelog/fix-registry-url-js-packages b/projects/js-packages/publicize-components/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..1808caa8a4e1a --- /dev/null +++ b/projects/js-packages/publicize-components/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo to match npm convention. + + diff --git a/projects/js-packages/publicize-components/package.json b/projects/js-packages/publicize-components/package.json index 687257b6c33e6..16bc981a6315a 100644 --- a/projects/js-packages/publicize-components/package.json +++ b/projects/js-packages/publicize-components/package.json @@ -9,7 +9,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/js-packages/publicize-components" }, "license": "GPL-2.0-or-later", diff --git a/projects/js-packages/react-data-sync-client/changelog/fix-registry-url-js-packages b/projects/js-packages/react-data-sync-client/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..1808caa8a4e1a --- /dev/null +++ b/projects/js-packages/react-data-sync-client/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo to match npm convention. + + diff --git a/projects/js-packages/react-data-sync-client/package.json b/projects/js-packages/react-data-sync-client/package.json index f826f02f32310..60cdb05910849 100644 --- a/projects/js-packages/react-data-sync-client/package.json +++ b/projects/js-packages/react-data-sync-client/package.json @@ -9,7 +9,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/js-packages/react-data-sync-client" }, "license": "GPL-2.0-or-later", diff --git a/projects/js-packages/remove-asset-webpack-plugin/changelog/fix-registry-url-js-packages b/projects/js-packages/remove-asset-webpack-plugin/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..10bcd4fc1e524 --- /dev/null +++ b/projects/js-packages/remove-asset-webpack-plugin/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo URL format to align with what NPM wants (npm pkg fix) + + diff --git a/projects/js-packages/remove-asset-webpack-plugin/package.json b/projects/js-packages/remove-asset-webpack-plugin/package.json index 53e023f78385b..2c5c896e62625 100644 --- a/projects/js-packages/remove-asset-webpack-plugin/package.json +++ b/projects/js-packages/remove-asset-webpack-plugin/package.json @@ -8,7 +8,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/js-packages/remove-asset-webpack-plugin" }, "license": "GPL-2.0-or-later", diff --git a/projects/js-packages/scan/changelog/fix-registry-url-js-packages b/projects/js-packages/scan/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..10bcd4fc1e524 --- /dev/null +++ b/projects/js-packages/scan/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo URL format to align with what NPM wants (npm pkg fix) + + diff --git a/projects/js-packages/scan/package.json b/projects/js-packages/scan/package.json index 6ff31e11c9a4a..470d3f9b44792 100644 --- a/projects/js-packages/scan/package.json +++ b/projects/js-packages/scan/package.json @@ -9,7 +9,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/js-packages/scan" }, "license": "GPL-2.0-or-later", diff --git a/projects/js-packages/script-data/changelog/fix-registry-url-js-packages b/projects/js-packages/script-data/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..10bcd4fc1e524 --- /dev/null +++ b/projects/js-packages/script-data/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo URL format to align with what NPM wants (npm pkg fix) + + diff --git a/projects/js-packages/script-data/package.json b/projects/js-packages/script-data/package.json index 4c7e13fb32041..5c49e891c1360 100644 --- a/projects/js-packages/script-data/package.json +++ b/projects/js-packages/script-data/package.json @@ -8,7 +8,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/js-packages/script-data" }, "license": "GPL-2.0-or-later", diff --git a/projects/js-packages/shared-extension-utils/changelog/fix-registry-url-js-packages b/projects/js-packages/shared-extension-utils/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..10bcd4fc1e524 --- /dev/null +++ b/projects/js-packages/shared-extension-utils/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo URL format to align with what NPM wants (npm pkg fix) + + diff --git a/projects/js-packages/shared-extension-utils/package.json b/projects/js-packages/shared-extension-utils/package.json index 6dfdd5c7ee31b..5a406a530bed0 100644 --- a/projects/js-packages/shared-extension-utils/package.json +++ b/projects/js-packages/shared-extension-utils/package.json @@ -8,7 +8,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/js-packages/shared-extension-utils" }, "license": "GPL-2.0-or-later", diff --git a/projects/js-packages/social-logos/changelog/fix-registry-url-js-packages b/projects/js-packages/social-logos/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..10bcd4fc1e524 --- /dev/null +++ b/projects/js-packages/social-logos/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo URL format to align with what NPM wants (npm pkg fix) + + diff --git a/projects/js-packages/social-logos/package.json b/projects/js-packages/social-logos/package.json index 01e7003d47c7e..67566d5f2015a 100644 --- a/projects/js-packages/social-logos/package.json +++ b/projects/js-packages/social-logos/package.json @@ -26,7 +26,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/js-packages/social-logos" }, "license": "GPL-2.0+", diff --git a/projects/js-packages/storybook/changelog/fix-registry-url-js-packages b/projects/js-packages/storybook/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..1808caa8a4e1a --- /dev/null +++ b/projects/js-packages/storybook/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo to match npm convention. + + diff --git a/projects/js-packages/storybook/package.json b/projects/js-packages/storybook/package.json index 7704baacb33c5..c6abc8169fe7b 100644 --- a/projects/js-packages/storybook/package.json +++ b/projects/js-packages/storybook/package.json @@ -9,7 +9,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/js-packages/storybook" }, "license": "GPL-2.0-or-later", diff --git a/projects/js-packages/svelte-data-sync-client/changelog/fix-registry-url-js-packages b/projects/js-packages/svelte-data-sync-client/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..1808caa8a4e1a --- /dev/null +++ b/projects/js-packages/svelte-data-sync-client/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo to match npm convention. + + diff --git a/projects/js-packages/svelte-data-sync-client/package.json b/projects/js-packages/svelte-data-sync-client/package.json index 6278913887d03..841938b7906ac 100644 --- a/projects/js-packages/svelte-data-sync-client/package.json +++ b/projects/js-packages/svelte-data-sync-client/package.json @@ -10,7 +10,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/js-packages/svelte-data-sync-client" }, "license": "GPL-2.0-or-later", diff --git a/projects/js-packages/videopress-core/changelog/fix-registry-url-js-packages b/projects/js-packages/videopress-core/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..10bcd4fc1e524 --- /dev/null +++ b/projects/js-packages/videopress-core/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo URL format to align with what NPM wants (npm pkg fix) + + diff --git a/projects/js-packages/videopress-core/package.json b/projects/js-packages/videopress-core/package.json index 6def65c04d1d4..dbc5c283db585 100644 --- a/projects/js-packages/videopress-core/package.json +++ b/projects/js-packages/videopress-core/package.json @@ -8,7 +8,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/js-packages/videopress-core" }, "license": "GPL-2.0-or-later", diff --git a/projects/js-packages/webpack-config/changelog/fix-registry-url-js-packages b/projects/js-packages/webpack-config/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..1808caa8a4e1a --- /dev/null +++ b/projects/js-packages/webpack-config/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo to match npm convention. + + diff --git a/projects/js-packages/webpack-config/package.json b/projects/js-packages/webpack-config/package.json index 9504671fbe24e..501babfc420e0 100644 --- a/projects/js-packages/webpack-config/package.json +++ b/projects/js-packages/webpack-config/package.json @@ -9,7 +9,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/js-packages/webpack-config" }, "license": "GPL-2.0-or-later", diff --git a/projects/packages/admin-ui/changelog/fix-registry-url-js-packages b/projects/packages/admin-ui/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..1808caa8a4e1a --- /dev/null +++ b/projects/packages/admin-ui/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo to match npm convention. + + diff --git a/projects/packages/admin-ui/package.json b/projects/packages/admin-ui/package.json index 92a75fb6242dc..a5f54f4dbba94 100644 --- a/projects/packages/admin-ui/package.json +++ b/projects/packages/admin-ui/package.json @@ -9,7 +9,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/packages/admin-ui" }, "license": "GPL-2.0-or-later", diff --git a/projects/packages/backup/changelog/fix-registry-url-js-packages b/projects/packages/backup/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..1808caa8a4e1a --- /dev/null +++ b/projects/packages/backup/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo to match npm convention. + + diff --git a/projects/packages/backup/package.json b/projects/packages/backup/package.json index b7a0ff2bbb412..0be47a5795240 100644 --- a/projects/packages/backup/package.json +++ b/projects/packages/backup/package.json @@ -7,7 +7,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/packages/backup" }, "license": "GPL-2.0-or-later", diff --git a/projects/packages/blaze/changelog/fix-registry-url-js-packages b/projects/packages/blaze/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..1808caa8a4e1a --- /dev/null +++ b/projects/packages/blaze/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo to match npm convention. + + diff --git a/projects/packages/blaze/package.json b/projects/packages/blaze/package.json index d2b553625c8b3..0b57068a769ba 100644 --- a/projects/packages/blaze/package.json +++ b/projects/packages/blaze/package.json @@ -9,7 +9,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/packages/blaze" }, "license": "GPL-2.0-or-later", diff --git a/projects/packages/boost-core/changelog/fix-registry-url-js-packages b/projects/packages/boost-core/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..1808caa8a4e1a --- /dev/null +++ b/projects/packages/boost-core/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo to match npm convention. + + diff --git a/projects/packages/boost-core/package.json b/projects/packages/boost-core/package.json index 3ea2772d01755..1a1ab8103b10f 100644 --- a/projects/packages/boost-core/package.json +++ b/projects/packages/boost-core/package.json @@ -9,7 +9,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/packages/boost-core" }, "license": "GPL-2.0-or-later", diff --git a/projects/packages/calypsoify/changelog/fix-registry-url-js-packages b/projects/packages/calypsoify/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..1808caa8a4e1a --- /dev/null +++ b/projects/packages/calypsoify/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo to match npm convention. + + diff --git a/projects/packages/calypsoify/package.json b/projects/packages/calypsoify/package.json index b99bf9ccb485a..ca203b608bfc8 100644 --- a/projects/packages/calypsoify/package.json +++ b/projects/packages/calypsoify/package.json @@ -9,7 +9,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/packages/calypsoify" }, "license": "GPL-2.0-or-later", diff --git a/projects/packages/chatbot/changelog/fix-registry-url-js-packages b/projects/packages/chatbot/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..1808caa8a4e1a --- /dev/null +++ b/projects/packages/chatbot/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo to match npm convention. + + diff --git a/projects/packages/chatbot/package.json b/projects/packages/chatbot/package.json index ca0c2cb73d99e..9ea7185dabc07 100644 --- a/projects/packages/chatbot/package.json +++ b/projects/packages/chatbot/package.json @@ -9,7 +9,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/packages/chatbot" }, "license": "GPL-2.0-or-later", diff --git a/projects/packages/classic-theme-helper/changelog/fix-registry-url-js-packages b/projects/packages/classic-theme-helper/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..1808caa8a4e1a --- /dev/null +++ b/projects/packages/classic-theme-helper/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo to match npm convention. + + diff --git a/projects/packages/classic-theme-helper/package.json b/projects/packages/classic-theme-helper/package.json index 4c7e30116e270..3da9325d14c79 100644 --- a/projects/packages/classic-theme-helper/package.json +++ b/projects/packages/classic-theme-helper/package.json @@ -9,7 +9,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/packages/classic-theme-helper" }, "license": "GPL-2.0-or-later", diff --git a/projects/packages/connection/changelog/fix-registry-url-js-packages b/projects/packages/connection/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..1808caa8a4e1a --- /dev/null +++ b/projects/packages/connection/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo to match npm convention. + + diff --git a/projects/packages/connection/package.json b/projects/packages/connection/package.json index 837e4e6b1f370..ff680c2f7f8eb 100644 --- a/projects/packages/connection/package.json +++ b/projects/packages/connection/package.json @@ -7,7 +7,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/packages/connection" }, "license": "GPL-2.0-or-later", diff --git a/projects/packages/explat/changelog/fix-registry-url-js-packages b/projects/packages/explat/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..1808caa8a4e1a --- /dev/null +++ b/projects/packages/explat/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo to match npm convention. + + diff --git a/projects/packages/explat/package.json b/projects/packages/explat/package.json index b939c4fd83692..440147e881e0d 100644 --- a/projects/packages/explat/package.json +++ b/projects/packages/explat/package.json @@ -9,7 +9,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/packages/explat" }, "license": "GPL-2.0-or-later", diff --git a/projects/packages/forms/changelog/fix-registry-url-js-packages b/projects/packages/forms/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..1808caa8a4e1a --- /dev/null +++ b/projects/packages/forms/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo to match npm convention. + + diff --git a/projects/packages/forms/package.json b/projects/packages/forms/package.json index 4369cae08cc88..a2390b2c1c249 100644 --- a/projects/packages/forms/package.json +++ b/projects/packages/forms/package.json @@ -9,7 +9,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/packages/forms" }, "license": "GPL-2.0-or-later", diff --git a/projects/packages/google-analytics/changelog/fix-registry-url-js-packages b/projects/packages/google-analytics/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..1808caa8a4e1a --- /dev/null +++ b/projects/packages/google-analytics/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo to match npm convention. + + diff --git a/projects/packages/google-analytics/package.json b/projects/packages/google-analytics/package.json index 389aaecd84165..6b793671e854a 100644 --- a/projects/packages/google-analytics/package.json +++ b/projects/packages/google-analytics/package.json @@ -9,7 +9,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/packages/google-analytics" }, "license": "GPL-2.0-or-later", diff --git a/projects/packages/import/changelog/fix-registry-url-js-packages b/projects/packages/import/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..1808caa8a4e1a --- /dev/null +++ b/projects/packages/import/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo to match npm convention. + + diff --git a/projects/packages/import/package.json b/projects/packages/import/package.json index 1e754e2218de6..6a870f1477ab6 100644 --- a/projects/packages/import/package.json +++ b/projects/packages/import/package.json @@ -9,7 +9,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/packages/import" }, "license": "GPL-2.0-or-later", diff --git a/projects/packages/jetpack-mu-wpcom/changelog/fix-registry-url-js-packages b/projects/packages/jetpack-mu-wpcom/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..1808caa8a4e1a --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo to match npm convention. + + diff --git a/projects/packages/jetpack-mu-wpcom/package.json b/projects/packages/jetpack-mu-wpcom/package.json index eca06a26709bc..745f72c67a7c5 100644 --- a/projects/packages/jetpack-mu-wpcom/package.json +++ b/projects/packages/jetpack-mu-wpcom/package.json @@ -9,7 +9,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/packages/jetpack-mu-wpcom" }, "license": "GPL-2.0-or-later", diff --git a/projects/packages/jitm/changelog/fix-registry-url-js-packages b/projects/packages/jitm/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..1808caa8a4e1a --- /dev/null +++ b/projects/packages/jitm/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo to match npm convention. + + diff --git a/projects/packages/jitm/package.json b/projects/packages/jitm/package.json index c90f1a61dce39..b9c66fe0486fe 100644 --- a/projects/packages/jitm/package.json +++ b/projects/packages/jitm/package.json @@ -7,7 +7,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/packages/jitm" }, "license": "GPL-2.0-or-later", diff --git a/projects/packages/masterbar/changelog/fix-registry-url-js-packages b/projects/packages/masterbar/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..1808caa8a4e1a --- /dev/null +++ b/projects/packages/masterbar/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo to match npm convention. + + diff --git a/projects/packages/masterbar/package.json b/projects/packages/masterbar/package.json index fa2138e1a85b2..7defc7adffd7f 100644 --- a/projects/packages/masterbar/package.json +++ b/projects/packages/masterbar/package.json @@ -9,7 +9,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/packages/masterbar" }, "license": "GPL-2.0-or-later", diff --git a/projects/packages/my-jetpack/changelog/fix-registry-url-js-packages b/projects/packages/my-jetpack/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..1808caa8a4e1a --- /dev/null +++ b/projects/packages/my-jetpack/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo to match npm convention. + + diff --git a/projects/packages/my-jetpack/package.json b/projects/packages/my-jetpack/package.json index 9f957f3a2dfcc..db4eba36dd68e 100644 --- a/projects/packages/my-jetpack/package.json +++ b/projects/packages/my-jetpack/package.json @@ -9,7 +9,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/packages/my-jetpack" }, "license": "GPL-2.0-or-later", diff --git a/projects/packages/plans/changelog/fix-registry-url-js-packages b/projects/packages/plans/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..1808caa8a4e1a --- /dev/null +++ b/projects/packages/plans/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo to match npm convention. + + diff --git a/projects/packages/plans/package.json b/projects/packages/plans/package.json index cb0c804ebffa3..63265695ce48d 100644 --- a/projects/packages/plans/package.json +++ b/projects/packages/plans/package.json @@ -9,7 +9,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/packages/plans" }, "license": "GPL-2.0-or-later", diff --git a/projects/packages/plugin-deactivation/changelog/fix-registry-url-js-packages b/projects/packages/plugin-deactivation/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..1808caa8a4e1a --- /dev/null +++ b/projects/packages/plugin-deactivation/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo to match npm convention. + + diff --git a/projects/packages/plugin-deactivation/package.json b/projects/packages/plugin-deactivation/package.json index 3a1f1ad29d219..1215c5aa6a629 100644 --- a/projects/packages/plugin-deactivation/package.json +++ b/projects/packages/plugin-deactivation/package.json @@ -9,7 +9,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/packages/plugin-deactivation" }, "license": "GPL-2.0-or-later", diff --git a/projects/packages/protect-status/changelog/fix-registry-url-js-packages b/projects/packages/protect-status/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..1808caa8a4e1a --- /dev/null +++ b/projects/packages/protect-status/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo to match npm convention. + + diff --git a/projects/packages/protect-status/package.json b/projects/packages/protect-status/package.json index ed72b8e40516a..45cafc7fb9243 100644 --- a/projects/packages/protect-status/package.json +++ b/projects/packages/protect-status/package.json @@ -9,7 +9,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/packages/protect-status" }, "license": "GPL-2.0-or-later", diff --git a/projects/packages/publicize/changelog/fix-registry-url-js-packages b/projects/packages/publicize/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..1808caa8a4e1a --- /dev/null +++ b/projects/packages/publicize/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo to match npm convention. + + diff --git a/projects/packages/publicize/package.json b/projects/packages/publicize/package.json index f461892616b78..f21d59ae50692 100644 --- a/projects/packages/publicize/package.json +++ b/projects/packages/publicize/package.json @@ -9,7 +9,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/packages/publicize" }, "license": "GPL-2.0-or-later", diff --git a/projects/packages/stats-admin/changelog/fix-registry-url-js-packages b/projects/packages/stats-admin/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..1808caa8a4e1a --- /dev/null +++ b/projects/packages/stats-admin/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo to match npm convention. + + diff --git a/projects/packages/stats-admin/package.json b/projects/packages/stats-admin/package.json index c18eb6dca0ffc..7423bd2a39e71 100644 --- a/projects/packages/stats-admin/package.json +++ b/projects/packages/stats-admin/package.json @@ -9,7 +9,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/packages/stats-admin" }, "license": "GPL-2.0-or-later", diff --git a/projects/packages/transport-helper/changelog/fix-registry-url-js-packages b/projects/packages/transport-helper/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..1808caa8a4e1a --- /dev/null +++ b/projects/packages/transport-helper/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo to match npm convention. + + diff --git a/projects/packages/transport-helper/package.json b/projects/packages/transport-helper/package.json index 485f78455209e..f63f3bc24ef66 100644 --- a/projects/packages/transport-helper/package.json +++ b/projects/packages/transport-helper/package.json @@ -9,7 +9,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/packages/transport-helper" }, "license": "GPL-2.0-or-later", diff --git a/projects/packages/videopress/changelog/fix-registry-url-js-packages b/projects/packages/videopress/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..1808caa8a4e1a --- /dev/null +++ b/projects/packages/videopress/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo to match npm convention. + + diff --git a/projects/packages/videopress/package.json b/projects/packages/videopress/package.json index d5dbf61f809d6..e8dfc31c4d3e6 100644 --- a/projects/packages/videopress/package.json +++ b/projects/packages/videopress/package.json @@ -9,7 +9,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/packages/videopress" }, "license": "GPL-2.0-or-later", diff --git a/projects/packages/wordads/changelog/fix-registry-url-js-packages b/projects/packages/wordads/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..1808caa8a4e1a --- /dev/null +++ b/projects/packages/wordads/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo to match npm convention. + + diff --git a/projects/packages/wordads/package.json b/projects/packages/wordads/package.json index cb4d15f2fc537..9da3397268b4a 100644 --- a/projects/packages/wordads/package.json +++ b/projects/packages/wordads/package.json @@ -13,7 +13,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/packages/wordads" }, "license": "GPL-2.0-or-later", diff --git a/projects/packages/wp-js-data-sync/changelog/fix-registry-url-js-packages b/projects/packages/wp-js-data-sync/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..1808caa8a4e1a --- /dev/null +++ b/projects/packages/wp-js-data-sync/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo to match npm convention. + + diff --git a/projects/packages/wp-js-data-sync/package.json b/projects/packages/wp-js-data-sync/package.json index 5defe2e677208..d9621a1c105be 100644 --- a/projects/packages/wp-js-data-sync/package.json +++ b/projects/packages/wp-js-data-sync/package.json @@ -9,7 +9,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/packages/wp-js-data-sync" }, "license": "GPL-2.0-or-later", diff --git a/projects/packages/yoast-promo/changelog/fix-registry-url-js-packages b/projects/packages/yoast-promo/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..1808caa8a4e1a --- /dev/null +++ b/projects/packages/yoast-promo/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo to match npm convention. + + diff --git a/projects/packages/yoast-promo/package.json b/projects/packages/yoast-promo/package.json index 7e2ca3e965950..3bad23967a48f 100644 --- a/projects/packages/yoast-promo/package.json +++ b/projects/packages/yoast-promo/package.json @@ -9,7 +9,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/packages/yoast-promo" }, "license": "GPL-2.0-or-later", diff --git a/projects/plugins/automattic-for-agencies-client/changelog/fix-registry-url-js-packages b/projects/plugins/automattic-for-agencies-client/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..1808caa8a4e1a --- /dev/null +++ b/projects/plugins/automattic-for-agencies-client/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo to match npm convention. + + diff --git a/projects/plugins/automattic-for-agencies-client/package.json b/projects/plugins/automattic-for-agencies-client/package.json index 2b45a0aedf1b0..ace33e4b71d9e 100644 --- a/projects/plugins/automattic-for-agencies-client/package.json +++ b/projects/plugins/automattic-for-agencies-client/package.json @@ -7,7 +7,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/plugins/automattic-for-agencies-client" }, "license": "GPL-2.0-or-later", diff --git a/projects/plugins/automattic-for-agencies-client/tests/e2e/package.json b/projects/plugins/automattic-for-agencies-client/tests/e2e/package.json index 764e9d8bc18cb..99fb2b5f2154a 100644 --- a/projects/plugins/automattic-for-agencies-client/tests/e2e/package.json +++ b/projects/plugins/automattic-for-agencies-client/tests/e2e/package.json @@ -8,7 +8,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/plugins/automattic-for-agencies-client" }, "license": "GPL-2.0-or-later", diff --git a/projects/plugins/boost/changelog/fix-registry-url-js-packages b/projects/plugins/boost/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..1808caa8a4e1a --- /dev/null +++ b/projects/plugins/boost/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo to match npm convention. + + diff --git a/projects/plugins/boost/tests/e2e/package.json b/projects/plugins/boost/tests/e2e/package.json index 0121aa55e79da..dee4d087546db 100644 --- a/projects/plugins/boost/tests/e2e/package.json +++ b/projects/plugins/boost/tests/e2e/package.json @@ -8,7 +8,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git" + "url": "git+https://github.com/Automattic/jetpack.git" }, "license": "GPL-2.0-or-later", "author": "Automattic", diff --git a/projects/plugins/classic-theme-helper-plugin/changelog/fix-registry-url-js-packages b/projects/plugins/classic-theme-helper-plugin/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..1808caa8a4e1a --- /dev/null +++ b/projects/plugins/classic-theme-helper-plugin/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo to match npm convention. + + diff --git a/projects/plugins/classic-theme-helper-plugin/package.json b/projects/plugins/classic-theme-helper-plugin/package.json index cc74590242f14..90539fc49f7aa 100644 --- a/projects/plugins/classic-theme-helper-plugin/package.json +++ b/projects/plugins/classic-theme-helper-plugin/package.json @@ -7,7 +7,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/plugins/classic-theme-helper-plugin" }, "license": "GPL-2.0-or-later", diff --git a/projects/plugins/classic-theme-helper-plugin/tests/e2e/package.json b/projects/plugins/classic-theme-helper-plugin/tests/e2e/package.json index 1abf3ffd9f812..2728ac9627ffe 100644 --- a/projects/plugins/classic-theme-helper-plugin/tests/e2e/package.json +++ b/projects/plugins/classic-theme-helper-plugin/tests/e2e/package.json @@ -8,7 +8,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/plugins/classic-theme-helper-plugin" }, "license": "GPL-2.0-or-later", diff --git a/projects/plugins/crm/changelog/fix-registry-url-js-packages b/projects/plugins/crm/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..1808caa8a4e1a --- /dev/null +++ b/projects/plugins/crm/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo to match npm convention. + + diff --git a/projects/plugins/crm/package.json b/projects/plugins/crm/package.json index 23915120fca2e..28fe4d528b7cf 100644 --- a/projects/plugins/crm/package.json +++ b/projects/plugins/crm/package.json @@ -14,7 +14,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/plugins/crm" }, "dependencies": { diff --git a/projects/plugins/inspect/changelog/fix-registry-url-js-packages b/projects/plugins/inspect/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..1808caa8a4e1a --- /dev/null +++ b/projects/plugins/inspect/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo to match npm convention. + + diff --git a/projects/plugins/inspect/package.json b/projects/plugins/inspect/package.json index 05174f390a661..86d2880239cec 100644 --- a/projects/plugins/inspect/package.json +++ b/projects/plugins/inspect/package.json @@ -10,7 +10,7 @@ "type": "module", "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/plugins/inspect" }, "license": "GPL-2.0-or-later", diff --git a/projects/plugins/jetpack/changelog/fix-registry-url-js-packages b/projects/plugins/jetpack/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..3c6571e7f9b60 --- /dev/null +++ b/projects/plugins/jetpack/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: other +Comment: Updated URL in package.json, no impact + + diff --git a/projects/plugins/jetpack/package.json b/projects/plugins/jetpack/package.json index 5885e3bd71c20..eb2c36d878ff5 100644 --- a/projects/plugins/jetpack/package.json +++ b/projects/plugins/jetpack/package.json @@ -9,7 +9,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/plugins/jetpack" }, "license": "GPL-2.0-or-later", diff --git a/projects/plugins/jetpack/tests/e2e/package.json b/projects/plugins/jetpack/tests/e2e/package.json index d45561b038e83..789e5492e6356 100644 --- a/projects/plugins/jetpack/tests/e2e/package.json +++ b/projects/plugins/jetpack/tests/e2e/package.json @@ -8,7 +8,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git" + "url": "git+https://github.com/Automattic/jetpack.git" }, "license": "GPL-2.0-or-later", "author": "Automattic", diff --git a/projects/plugins/mu-wpcom-plugin/changelog/fix-registry-url-js-packages b/projects/plugins/mu-wpcom-plugin/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..1808caa8a4e1a --- /dev/null +++ b/projects/plugins/mu-wpcom-plugin/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo to match npm convention. + + diff --git a/projects/plugins/mu-wpcom-plugin/package.json b/projects/plugins/mu-wpcom-plugin/package.json index bda5def29de5d..696c2aac22919 100644 --- a/projects/plugins/mu-wpcom-plugin/package.json +++ b/projects/plugins/mu-wpcom-plugin/package.json @@ -9,7 +9,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/plugins/mu-wpcom-plugin" }, "license": "GPL-2.0-or-later", diff --git a/projects/plugins/protect/changelog/fix-registry-url-js-packages b/projects/plugins/protect/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..1808caa8a4e1a --- /dev/null +++ b/projects/plugins/protect/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo to match npm convention. + + diff --git a/projects/plugins/protect/package.json b/projects/plugins/protect/package.json index 81cacdb7f7ba4..e3b799dbe9f01 100644 --- a/projects/plugins/protect/package.json +++ b/projects/plugins/protect/package.json @@ -7,7 +7,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/plugins/protect" }, "license": "GPL-2.0-or-later", diff --git a/projects/plugins/search/changelog/fix-registry-url-js-packages b/projects/plugins/search/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..1808caa8a4e1a --- /dev/null +++ b/projects/plugins/search/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo to match npm convention. + + diff --git a/projects/plugins/search/package.json b/projects/plugins/search/package.json index 0bed41fa151d4..f73a466f3b76a 100644 --- a/projects/plugins/search/package.json +++ b/projects/plugins/search/package.json @@ -7,7 +7,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/plugins/search" }, "license": "GPL-2.0-or-later", diff --git a/projects/plugins/search/tests/e2e/package.json b/projects/plugins/search/tests/e2e/package.json index 56ce4e0989500..acc6a0f2035af 100644 --- a/projects/plugins/search/tests/e2e/package.json +++ b/projects/plugins/search/tests/e2e/package.json @@ -5,7 +5,7 @@ "homepage": "https://jetpack.com", "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git" + "url": "git+https://github.com/Automattic/jetpack.git" }, "license": "GPL-2.0-or-later", "author": "Automattic", diff --git a/projects/plugins/social/changelog/fix-registry-url-js-packages b/projects/plugins/social/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..1808caa8a4e1a --- /dev/null +++ b/projects/plugins/social/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo to match npm convention. + + diff --git a/projects/plugins/social/package.json b/projects/plugins/social/package.json index 3c7107c889539..16968149f1181 100644 --- a/projects/plugins/social/package.json +++ b/projects/plugins/social/package.json @@ -7,7 +7,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/plugins/social" }, "license": "GPL-2.0-or-later", diff --git a/projects/plugins/social/tests/e2e/package.json b/projects/plugins/social/tests/e2e/package.json index f15c2a56b88f1..8ded846f01cf1 100644 --- a/projects/plugins/social/tests/e2e/package.json +++ b/projects/plugins/social/tests/e2e/package.json @@ -8,7 +8,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/plugins/social" }, "license": "GPL-2.0-or-later", diff --git a/projects/plugins/starter-plugin/changelog/fix-registry-url-js-packages b/projects/plugins/starter-plugin/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..1808caa8a4e1a --- /dev/null +++ b/projects/plugins/starter-plugin/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo to match npm convention. + + diff --git a/projects/plugins/starter-plugin/package.json b/projects/plugins/starter-plugin/package.json index 07ec276f91280..f2f69ed711ab9 100644 --- a/projects/plugins/starter-plugin/package.json +++ b/projects/plugins/starter-plugin/package.json @@ -7,7 +7,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/plugins/starter-plugin" }, "license": "GPL-2.0-or-later", diff --git a/projects/plugins/starter-plugin/tests/e2e/package.json b/projects/plugins/starter-plugin/tests/e2e/package.json index 41cbbf0950ed3..7fc81dc22aab0 100644 --- a/projects/plugins/starter-plugin/tests/e2e/package.json +++ b/projects/plugins/starter-plugin/tests/e2e/package.json @@ -8,7 +8,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/plugins/starter-plugin" }, "license": "GPL-2.0-or-later", diff --git a/projects/plugins/super-cache/changelog/fix-registry-url-js-packages b/projects/plugins/super-cache/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..1808caa8a4e1a --- /dev/null +++ b/projects/plugins/super-cache/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo to match npm convention. + + diff --git a/projects/plugins/super-cache/package.json b/projects/plugins/super-cache/package.json index dfdef9da30307..e1fa735a9c29c 100644 --- a/projects/plugins/super-cache/package.json +++ b/projects/plugins/super-cache/package.json @@ -9,7 +9,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/plugins/super-cache" }, "license": "GPL-2.0-or-later", diff --git a/projects/plugins/videopress/changelog/fix-registry-url-js-packages b/projects/plugins/videopress/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..1808caa8a4e1a --- /dev/null +++ b/projects/plugins/videopress/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo to match npm convention. + + diff --git a/projects/plugins/videopress/package.json b/projects/plugins/videopress/package.json index 41f62753255d1..0003b900f8335 100644 --- a/projects/plugins/videopress/package.json +++ b/projects/plugins/videopress/package.json @@ -7,7 +7,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/plugins/videopress" }, "license": "GPL-2.0-or-later", diff --git a/projects/plugins/videopress/tests/e2e/package.json b/projects/plugins/videopress/tests/e2e/package.json index 7ebc72623571e..89127401f55b1 100644 --- a/projects/plugins/videopress/tests/e2e/package.json +++ b/projects/plugins/videopress/tests/e2e/package.json @@ -8,7 +8,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/plugins/videopress" }, "license": "GPL-2.0-or-later", diff --git a/projects/plugins/wpcomsh/changelog/fix-registry-url-js-packages b/projects/plugins/wpcomsh/changelog/fix-registry-url-js-packages new file mode 100644 index 0000000000000..1808caa8a4e1a --- /dev/null +++ b/projects/plugins/wpcomsh/changelog/fix-registry-url-js-packages @@ -0,0 +1,5 @@ +Significance: patch +Type: fixed +Comment: Updated package.json repo to match npm convention. + + diff --git a/projects/plugins/wpcomsh/package.json b/projects/plugins/wpcomsh/package.json index dc6311381c019..a15f67307ab56 100644 --- a/projects/plugins/wpcomsh/package.json +++ b/projects/plugins/wpcomsh/package.json @@ -9,7 +9,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git", + "url": "git+https://github.com/Automattic/jetpack.git", "directory": "projects/plugins/wpcomsh" }, "license": "GPL-2.0-or-later", diff --git a/tools/cli/package.json b/tools/cli/package.json index 428d9d11f404a..a8c8208bdf8d0 100644 --- a/tools/cli/package.json +++ b/tools/cli/package.json @@ -10,7 +10,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git" + "url": "git+https://github.com/Automattic/jetpack.git" }, "license": "GPL-2.0-or-later", "author": "Automattic", diff --git a/tools/cli/skeletons/common/package.json b/tools/cli/skeletons/common/package.json index 6097e7f1cd3b2..b0c2b9ce9a8eb 100644 --- a/tools/cli/skeletons/common/package.json +++ b/tools/cli/skeletons/common/package.json @@ -9,7 +9,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Automattic/jetpack.git" + "url": "git+https://github.com/Automattic/jetpack.git" }, "license": "GPL-2.0-or-later", "author": "Automattic",