deployment stuff, kindof
parent
0015ccae43
commit
845cb376e8
|
|
@ -3,3 +3,6 @@ out
|
|||
data
|
||||
*.log
|
||||
bin
|
||||
deploy/win32/build
|
||||
*-v*.*.*.tgz
|
||||
dist
|
||||
|
|
@ -0,0 +1 @@
|
|||
{"appName":"Hadean"}
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"distPath": ".\\dist"
|
||||
}
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "hadean",
|
||||
"version": "1.0.0",
|
||||
"version": "0.0.1",
|
||||
"main": "index.js",
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
|
|
@ -65,6 +65,8 @@
|
|||
"tsc": "tsc",
|
||||
"tsc:watch": "yarn tsc --watch",
|
||||
"rollup": "rollup --config rollup.config.js",
|
||||
"rollup:watch": "yarn rollup --watch"
|
||||
"rollup:watch": "yarn rollup --watch",
|
||||
"poop": "rollup --config rollup.prod.config.js && nodegui-packer --pack ./dist && \".\\deploy\\win32\\build\\Hadean\\qode.exe\"",
|
||||
"build": "nodegui-packer --pack ./dist"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
import configs from './rollup.config.js';
|
||||
const appBundleConfig = configs[0];
|
||||
appBundleConfig.output.file = 'dist/index.js';
|
||||
appBundleConfig.output.format = 'es';
|
||||
export default [
|
||||
appBundleConfig
|
||||
];
|
||||
Loading…
Reference in New Issue