Skip to content

Commit 7b5b840

Browse files
authoredMar 4, 2022
chore: switch to yarn v3 (#71)
1 parent e163491 commit 7b5b840

File tree

7 files changed

+4918
-2213
lines changed

7 files changed

+4918
-2213
lines changed
 

‎.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,9 @@ dist
77
package/*/*/
88
package/*/*.zst
99

10+
# Yarn cache files
11+
.yarn/install-state.gz
12+
.yarn/build-state.yml
13+
.yarn/cache
14+
1015
.DS_Store

‎.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs

+363
Large diffs are not rendered by default.

‎.yarn/releases/yarn-3.2.0.cjs

+785
Large diffs are not rendered by default.

‎.yarnrc.yml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
nodeLinker: node-modules
2+
3+
plugins:
4+
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
5+
spec: "@yarnpkg/plugin-interactive-tools"

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@ There are also numerous OS-specific commands related to building and testing, al
5252

5353
## License
5454

55-
Revolt Desktop is licensed under the [GNU Affero General Public License v3.0](https://github.com/revoltchat/desktop/blob/master/LICENSE).
55+
Revolt Desktop is licensed under the [GNU Affero General Public License v3.0](https://github.com/revoltchat/desktop/blob/master/LICENSE).

‎package.json

+9-8
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@
2929
"devDependencies": {
3030
"@types/auto-launch": "^5.0.2",
3131
"@types/discord-rpc": "^4.0.0",
32-
"dotenv-cli": "^4.0.0",
33-
"electron": "^13.1.6",
34-
"electron-builder": "^22.11.7",
32+
"dotenv-cli": "^5.0.0",
33+
"electron": "^17.1.0",
34+
"electron-builder": "^22.14.13",
3535
"rimraf": "^3.0.2",
36-
"tsc-watch": "^4.4.0",
37-
"typescript": "^4.3.5"
36+
"tsc-watch": "^4.6.0",
37+
"typescript": "^4.5.5"
3838
},
3939
"build": {
4040
"appId": "chat.revolt.app",
@@ -74,9 +74,10 @@
7474
"dependencies": {
7575
"auto-launch": "^5.0.5",
7676
"discord-rpc": "^4.0.1",
77-
"electron-store": "^8.0.0",
78-
"electron-updater": "^4.3.9",
77+
"electron-store": "^8.0.1",
78+
"electron-updater": "^4.6.5",
7979
"electron-window-state": "^5.0.3",
8080
"electron-winstore-auto-launch": "^2.0.6"
81-
}
81+
},
82+
"packageManager": "yarn@3.1.1"
8283
}

‎yarn.lock

+3,750-2,204
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Please sign in to comment.