Fix build scripts

This commit is contained in:
Piotr Rogowski 2021-03-23 01:09:29 +01:00
parent 06c5fbd900
commit ce2a85c029
No known key found for this signature in database
GPG Key ID: F40F61D5587F5673
1 changed files with 2 additions and 2 deletions

View File

@ -12,8 +12,8 @@
"build": "craco build",
"electron:compile": "tsc -p tsconfig.custom.json",
"electron:start": "npm run electron:compile && electron-forge start",
"electron:package": "npm run web:build && npm run electron:compile && electron-forge package",
"electron:make": "npm run web:build && npm run electron:compile && electron-forge make",
"electron:package": "npm run build && npm run electron:compile && electron-forge package",
"electron:make": "npm run build && npm run electron:compile && electron-forge make",
"ini:compile": "tsc -p tsconfig.custom.json",
"ini:start": "npm run ini:compile && node src/parser/ini.js",
"ini:watch": "npx onchange src/parser/ini.ts -- npm run ini:start",