deployment stuff, kindof
parent
0015ccae43
commit
845cb376e8
|
|
@ -3,3 +3,6 @@ out
|
||||||
data
|
data
|
||||||
*.log
|
*.log
|
||||||
bin
|
bin
|
||||||
|
deploy/win32/build
|
||||||
|
*-v*.*.*.tgz
|
||||||
|
dist
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
{"appName":"Hadean"}
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"distPath": ".\\dist"
|
||||||
|
}
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "hadean",
|
"name": "hadean",
|
||||||
"version": "1.0.0",
|
"version": "0.0.1",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
|
|
@ -65,6 +65,8 @@
|
||||||
"tsc": "tsc",
|
"tsc": "tsc",
|
||||||
"tsc:watch": "yarn tsc --watch",
|
"tsc:watch": "yarn tsc --watch",
|
||||||
"rollup": "rollup --config rollup.config.js",
|
"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