Skip to content

Commit bcda97c

Browse files
committed
Conform with replugged changes
1 parent e79a445 commit bcda97c

File tree

8 files changed

+206
-485
lines changed

8 files changed

+206
-485
lines changed

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
run: pnpm install
3030

3131
- name: Build TypeScript and bundle into asar
32-
run: pnpm run build-and-bundle
32+
run: pnpm run bundle
3333

3434
- uses: ncipollo/release-action@v1
3535
with:

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -103,5 +103,4 @@ dist
103103
# TernJS port file
104104
.tern-port
105105

106-
/*.asar
107106
/bundle

manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"discordID": "372148345894076416",
88
"github": "SammCheese"
99
},
10-
"version": "1.2.1",
10+
"version": "1.2.2",
1111
"updater": {
1212
"type": "github",
1313
"id": "SammCheese/invisible-chat"

package.json

+10-15
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,35 @@
11
{
22
"name": "invisible-chat",
3-
"version": "1.2.1",
3+
"version": "1.2.2",
44
"description": "Encrypt your Discord Messages",
55
"engines": {
66
"node": ">=14.0.0"
77
},
88
"scripts": {
9-
"build": "tsx scripts/build.ts",
10-
"watch": "tsx scripts/build.ts --watch",
11-
"bundle": "tsx scripts/bundle.ts",
12-
"build-and-bundle": "pnpm run build --no-install && pnpm run bundle",
9+
"build": "replugged build plugin",
10+
"watch": "replugged build plugin --watch",
11+
"bundle": "replugged bundle plugin",
1312
"check": "tsc --noEmit",
14-
"prettier:check": "prettier ./src ./scripts --check",
15-
"eslint:check": "eslint ./src ./scripts",
16-
"prettier:fix": "prettier ./src ./scripts --write",
17-
"eslint:fix": "eslint ./src ./scripts --fix",
13+
"prettier:check": "prettier ./src --check",
14+
"eslint:check": "eslint ./src",
15+
"prettier:fix": "prettier ./src --write",
16+
"eslint:fix": "eslint ./src --fix",
1817
"lint": "pnpm run prettier:check && pnpm run eslint:check && pnpm run check",
1918
"lint:fix": "pnpm run prettier:fix && pnpm run eslint:fix"
2019
},
2120
"keywords": [],
2221
"author": "",
23-
"license": "Unlicensed",
22+
"license": "ISC",
2423
"devDependencies": {
25-
"@electron/asar": "^3.2.1",
2624
"@types/node": "^18.11.2",
27-
"@types/react": "^18.0.26",
2825
"@typescript-eslint/eslint-plugin": "^5.40.1",
2926
"@typescript-eslint/parser": "^5.40.1",
30-
"esbuild": "^0.15.11",
3127
"eslint": "^8.25.0",
3228
"eslint-config-dmitmel": "github:dmitmel/eslint-config-dmitmel",
3329
"eslint-plugin-node": "^11.1.0",
3430
"eslint-plugin-react": "^7.31.10",
3531
"prettier": "^2.8.1",
36-
"replugged": "4.0.0-beta0.22",
37-
"tsx": "^3.10.3",
32+
"replugged": "4.0.0-beta0.23",
3833
"typescript": "^4.8.4"
3934
}
4035
}

0 commit comments

Comments
 (0)