Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
jonluca committed Apr 19, 2023
1 parent 7425a14 commit 339cf0d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion electron-src/esbuild.main.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,12 @@ const config: BuildOptions = {
],
bundle: true,
external: ["next", "better-sqlite3", "electron-mac-contacts", "node-electron-permissions"],
minify: true,
minifyWhitespace: true,
minifyIdentifiers: true,
minifySyntax: true,
treeShaking: true,
target: "node19.4.0", // electron version target
target: "node19.9.0",
};

export default config;
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"author": "JonLuca DeCaro <[email protected]>",
"main": "build/electron-src/index.js",
"name": "MiMessage",
"version": "1.0.11",
"version": "1.0.12",
"productName": "Mimessage",
"description": "Apple Messages UI alternative, with export, search, and more.",
"scripts": {
Expand All @@ -16,7 +16,7 @@
"notarize": "DEBUG=electron* node --experimental-specifier-resolution=node --no-warnings --loader ts-node/esm/transpile-only electron-src/hooks/notarize.ts",
"start:app": "electron-esbuild dev",
"clean": "rimraf dist build src/out .next src/.next",
"dev": "yarn start:app",
"dev": "DEBUG=* yarn start:app",
"dev:debug": "DEBUG_LOGGING=true yarn start:app",
"gen-types": "node --experimental-specifier-resolution=node --no-warnings --loader ts-node/esm/transpile-only scripts/gen-types.ts",
"typecheck": "tsc -p src --noEmit && tsc --noEmit"
Expand Down

0 comments on commit 339cf0d

Please sign in to comment.