Skip to content

Commit 339cf0d

Browse files
committed
bump version
1 parent 7425a14 commit 339cf0d

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

electron-src/esbuild.main.config.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,12 @@ const config: BuildOptions = {
1111
],
1212
bundle: true,
1313
external: ["next", "better-sqlite3", "electron-mac-contacts", "node-electron-permissions"],
14+
minify: true,
15+
minifyWhitespace: true,
16+
minifyIdentifiers: true,
17+
minifySyntax: true,
1418
treeShaking: true,
15-
target: "node19.4.0", // electron version target
19+
target: "node19.9.0",
1620
};
1721

1822
export default config;

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"author": "JonLuca DeCaro <mimessage@jonlu.ca>",
44
"main": "build/electron-src/index.js",
55
"name": "MiMessage",
6-
"version": "1.0.11",
6+
"version": "1.0.12",
77
"productName": "Mimessage",
88
"description": "Apple Messages UI alternative, with export, search, and more.",
99
"scripts": {
@@ -16,7 +16,7 @@
1616
"notarize": "DEBUG=electron* node --experimental-specifier-resolution=node --no-warnings --loader ts-node/esm/transpile-only electron-src/hooks/notarize.ts",
1717
"start:app": "electron-esbuild dev",
1818
"clean": "rimraf dist build src/out .next src/.next",
19-
"dev": "yarn start:app",
19+
"dev": "DEBUG=* yarn start:app",
2020
"dev:debug": "DEBUG_LOGGING=true yarn start:app",
2121
"gen-types": "node --experimental-specifier-resolution=node --no-warnings --loader ts-node/esm/transpile-only scripts/gen-types.ts",
2222
"typecheck": "tsc -p src --noEmit && tsc --noEmit"

0 commit comments

Comments
 (0)