Skip to content

Commit 4108cbc

Browse files
committed
revert: fix deps in package.json
I didn't realize this but our release-prep.sh script will accidentally update all strings in the package.json that match the version udpate. This means if a dependency is 4.0.0 and we're upgrading code-server to 4.0.1, our script updates the dependency too. Oops. Documented here: #4679
1 parent b465808 commit 4108cbc

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"@types/cookie-parser": "^1.4.2",
4040
"@types/express": "^4.17.8",
4141
"@types/http-proxy": "^1.17.4",
42-
"@types/js-yaml": "^4.0.1",
42+
"@types/js-yaml": "^4.0.0",
4343
"@types/node": "^14.17.1",
4444
"@types/pem": "^1.9.5",
4545
"@types/proxy-from-env": "^1.0.1",
@@ -57,7 +57,7 @@
5757
"eslint-config-prettier": "^8.1.0",
5858
"eslint-import-resolver-typescript": "^2.5.0",
5959
"eslint-plugin-import": "^2.18.2",
60-
"eslint-plugin-prettier": "^4.0.1",
60+
"eslint-plugin-prettier": "^4.0.0",
6161
"prettier": "^2.2.1",
6262
"prettier-plugin-sh": "^0.8.0",
6363
"shellcheck": "^1.0.0",
@@ -88,7 +88,7 @@
8888
"express": "^5.0.0-alpha.8",
8989
"http-proxy": "^1.18.0",
9090
"httpolyglot": "^0.1.2",
91-
"js-yaml": "^4.0.1",
91+
"js-yaml": "^4.0.0",
9292
"limiter": "^1.1.5",
9393
"pem": "^1.14.2",
9494
"proxy-agent": "^5.0.0",
@@ -97,9 +97,9 @@
9797
"safe-buffer": "^5.1.1",
9898
"safe-compare": "^1.1.4",
9999
"semver": "^7.1.3",
100-
"split2": "^4.0.1",
100+
"split2": "^4.0.0",
101101
"ws": "^8.0.0",
102-
"xdg-basedir": "^4.0.1",
102+
"xdg-basedir": "^4.0.0",
103103
"yarn": "^1.22.4"
104104
},
105105
"bin": {

0 commit comments

Comments
 (0)