Skip to content

Commit d56cd27

Browse files
authored
fix(deploy): redeploy all packages to sync semver ranges (#8486)
1 parent b3ce7f7 commit d56cd27

File tree

14 files changed

+63
-47
lines changed

14 files changed

+63
-47
lines changed

.changeset/chilled-pigs-fly.md

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
"app-builder-lib": patch
3+
"builder-util": patch
4+
"builder-util-runtime": patch
5+
"dmg-builder": patch
6+
"electron-builder": patch
7+
"electron-builder-squirrel-windows": patch
8+
"electron-forge-maker-appimage": patch
9+
"electron-forge-maker-nsis": patch
10+
"electron-forge-maker-nsis-web": patch
11+
"electron-forge-maker-snap": patch
12+
"electron-publish": patch
13+
"electron-updater": patch
14+
---
15+
16+
fix(deploy): redeploy all packages to sync semver ranges

.changeset/config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
"updateInternalDependencies": "patch",
2020
"ignore": ["@electron-builder/test"],
2121
"___experimentalUnsafeOptions_WILL_CHANGE_IN_PATCH": {
22-
"onlyUpdatePeerDependentsWhenOutOfRange": true
22+
"onlyUpdatePeerDependentsWhenOutOfRange": false
2323
}
2424
}

packages/app-builder-lib/package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -55,15 +55,15 @@
5555
"@types/fs-extra": "9.0.13",
5656
"async-exit-hook": "^2.0.1",
5757
"bluebird-lst": "^1.0.9",
58-
"builder-util": "workspace:^25.1.0",
59-
"builder-util-runtime": "workspace:^9",
58+
"builder-util": "workspace:*",
59+
"builder-util-runtime": "workspace:*",
6060
"chromium-pickle-js": "^0.2.0",
6161
"config-file-ts": "0.2.8-rc1",
6262
"debug": "^4.3.4",
6363
"dotenv": "^16.4.5",
6464
"dotenv-expand": "^11.0.6",
6565
"ejs": "^3.1.8",
66-
"electron-publish": "workspace:^25.1.0",
66+
"electron-publish": "workspace:*",
6767
"form-data": "^4.0.0",
6868
"fs-extra": "^10.1.0",
6969
"hosted-git-info": "^4.1.0",
@@ -107,13 +107,13 @@
107107
"@types/js-yaml": "4.0.3",
108108
"@types/semver": "7.3.8",
109109
"@types/tar": "^6.1.3",
110-
"dmg-builder": "workspace:^25.1.0",
111-
"electron-builder-squirrel-windows": "workspace:^25.1.0",
110+
"dmg-builder": "workspace:*",
111+
"electron-builder-squirrel-windows": "workspace:*",
112112
"toml": "^3.0.0"
113113
},
114114
"peerDependencies": {
115-
"dmg-builder": "workspace:^25.1.0",
116-
"electron-builder-squirrel-windows": "workspace:^25.1.0"
115+
"dmg-builder": "workspace:*",
116+
"electron-builder-squirrel-windows": "workspace:*"
117117
},
118118
"//": "electron-builder-squirrel-windows and dmg-builder added as dev dep for tests (as otherwise `require` doesn't work using Yarn 2)",
119119
"typings": "./out/index.d.ts"

packages/builder-util/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"@types/debug": "^4.1.6",
2020
"app-builder-bin": "5.0.0-alpha.8",
2121
"bluebird-lst": "^1.0.9",
22-
"builder-util-runtime": "workspace:^9",
22+
"builder-util-runtime": "workspace:*",
2323
"chalk": "^4.1.2",
2424
"cross-spawn": "^7.0.3",
2525
"debug": "^4.3.4",

packages/dmg-builder/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
"vendor"
1818
],
1919
"dependencies": {
20-
"app-builder-lib": "workspace:^25",
21-
"builder-util": "workspace:^25",
22-
"builder-util-runtime": "workspace:^9",
20+
"app-builder-lib": "workspace:*",
21+
"builder-util": "workspace:*",
22+
"builder-util-runtime": "workspace:*",
2323
"fs-extra": "^10.1.0",
2424
"iconv-lite": "^0.6.2",
2525
"js-yaml": "^4.1.0"

packages/electron-builder-squirrel-windows/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
"out"
1616
],
1717
"dependencies": {
18-
"app-builder-lib": "workspace:^25",
18+
"app-builder-lib": "workspace:*",
1919
"archiver": "^5.3.1",
20-
"builder-util": "workspace:^25",
20+
"builder-util": "workspace:*",
2121
"fs-extra": "^10.1.0"
2222
},
2323
"devDependencies": {

packages/electron-builder/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,11 @@
5050
"bugs": "https://github.com/electron-userland/electron-builder/issues",
5151
"homepage": "https://github.com/electron-userland/electron-builder",
5252
"dependencies": {
53-
"app-builder-lib": "workspace:^25",
54-
"builder-util": "workspace:^25",
55-
"builder-util-runtime": "workspace:^9",
53+
"app-builder-lib": "workspace:*",
54+
"builder-util": "workspace:*",
55+
"builder-util-runtime": "workspace:*",
5656
"chalk": "^4.1.2",
57-
"dmg-builder": "workspace:^25",
57+
"dmg-builder": "workspace:*",
5858
"fs-extra": "^10.1.0",
5959
"is-ci": "^3.0.0",
6060
"lazy-val": "^1.0.5",

packages/electron-forge-maker-appimage/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
"*.js"
1616
],
1717
"dependencies": {
18-
"app-builder-lib": "workspace:^25"
18+
"app-builder-lib": "workspace:*"
1919
}
2020
}

packages/electron-forge-maker-nsis-web/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
"*.js"
1616
],
1717
"dependencies": {
18-
"app-builder-lib": "workspace:^25"
18+
"app-builder-lib": "workspace:*"
1919
}
2020
}

packages/electron-forge-maker-nsis/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
"*.js"
1616
],
1717
"dependencies": {
18-
"app-builder-lib": "workspace:^25"
18+
"app-builder-lib": "workspace:*"
1919
}
2020
}

packages/electron-forge-maker-snap/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
"*.js"
1616
],
1717
"dependencies": {
18-
"app-builder-lib": "workspace:^25"
18+
"app-builder-lib": "workspace:*"
1919
}
2020
}

packages/electron-publish/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
],
1717
"dependencies": {
1818
"@types/fs-extra": "^9.0.11",
19-
"builder-util": "workspace:^25",
20-
"builder-util-runtime": "workspace:^9",
19+
"builder-util": "workspace:*",
20+
"builder-util-runtime": "workspace:*",
2121
"chalk": "^4.1.2",
2222
"fs-extra": "^10.1.0",
2323
"lazy-val": "^1.0.5",

packages/electron-updater/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"out"
1717
],
1818
"dependencies": {
19-
"builder-util-runtime": "workspace:^9",
19+
"builder-util-runtime": "workspace:*",
2020
"fs-extra": "^10.1.0",
2121
"js-yaml": "^4.1.0",
2222
"lazy-val": "^1.0.5",

pnpm-lock.yaml

+22-22
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)