Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,14 @@
"lint:fix": "ESLINT_USE_FLAT_CONFIG=true eslint -c eslint.config.mjs --fix .",
"format": "prettier --write '**/*.{yml,json,md,html,ts,js}'",
"format:check": "prettier --check '**/*.{yml,json,md,html,ts,js}'",
"prod": "npm run compile && npm run bundle && npm run launch",
"prepare": "npm run compile && sleep 4 && npm run bundle",
"prod": "npm run prepare && npm run launch",
"compile": "npm run copy-assets && tsc --project tsconfig.build.json",
"compile:watch": "npm run copy-assets && tsc --project tsconfig.build.json -w",
"build": "npm run compile && sleep 4 && npm run bundle && sleep 4 && electron-builder",
"build": "npm run prepare && sleep 4 && electron-builder",
"copy-assets": "shx mkdir -p ./compiled/main/windows && shx cp ./main/windows/*.png ./compiled/main/windows",
"publish": "electron-builder -c.snap.publish=github",
"release": "npm run compile && sleep 4 && npm run bundle && sleep 4 && npm run publish",
"release": "npm run prepare && sleep 4 && npm run publish",
"postinstall": "electron-builder install-app-deps",
"test": "npm run test:unit && npm run test:e2e",
"test:exec": "jest --detectOpenHandles --runInBand",
Expand Down