Restructured to significantly reduce package size
This commit is contained in:
parent
7b5c5aac57
commit
1acfa6830b
5 changed files with 9 additions and 9 deletions
|
|
@ -4,7 +4,7 @@ const path = require('path')
|
|||
convertToWindowsStore({
|
||||
containerVirtualization: false,
|
||||
inputDirectory: path.join(__dirname, '../release-builds/openflexure-microscope-js-win32-x64'),
|
||||
outputDirectory: path.join(__dirname, '/release-builds'),
|
||||
outputDirectory: path.join(__dirname, '../release-builds/installers'),
|
||||
assets: path.join(__dirname, '/appx/assets'),
|
||||
manifest: path.join(__dirname, '/appx/AppXManifest.xml'),
|
||||
packageName: 'OpenFlexureMicroscopeJS',
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ const path = require('path')
|
|||
|
||||
const options = {
|
||||
src: path.join(__dirname, '../release-builds/openflexure-microscope-js-linux-armv7l/'),
|
||||
dest: path.join(__dirname, '/release-builds'),
|
||||
dest: path.join(__dirname, '../release-builds/installers'),
|
||||
arch: 'armhf',
|
||||
icon: path.join(__dirname, '../icons/png/1024x1024.png'),
|
||||
categories: [
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ const path = require('path')
|
|||
|
||||
const options = {
|
||||
src: path.join(__dirname, '../release-builds/openflexure-microscope-js-linux-x64/'),
|
||||
dest: path.join(__dirname, '/release-builds'),
|
||||
dest: path.join(__dirname, '../release-builds/installers'),
|
||||
arch: 'amd64',
|
||||
icon: path.join(__dirname, '../icons/png/1024x1024.png'),
|
||||
categories: [
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ function getInstallerConfig () {
|
|||
appDirectory: path.join(__dirname, '../release-builds/openflexure-microscope-js-win32-x64'),
|
||||
authors: 'OpenFlexure',
|
||||
noMsi: true,
|
||||
outputDirectory: path.join(__dirname, '/release-builds'),
|
||||
outputDirectory: path.join(__dirname, '../release-builds/installers'),
|
||||
exe: 'openflexure-microscope-js.exe',
|
||||
setupExe: 'OpenFlexureMicroscopeJsInstaller.exe',
|
||||
setupIcon: path.join(__dirname, '../icons/win/icon.ico')
|
||||
|
|
|
|||
10
package.json
10
package.json
|
|
@ -21,13 +21,13 @@
|
|||
"make": "npm run build && npm run package-all"
|
||||
},
|
||||
"dependencies": {
|
||||
"axios": "^0.18.0",
|
||||
"electron-context-menu": "^0.11.0",
|
||||
"uikit": "^3.0.2",
|
||||
"vue": "^2.5.21",
|
||||
"vuex": "^3.0.1"
|
||||
"electron-context-menu": "^0.11.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"uikit": "^3.0.2",
|
||||
"vue": "^2.5.21",
|
||||
"vuex": "^3.0.1",
|
||||
"axios": "^0.18.0",
|
||||
"@vue/cli-plugin-babel": "^3.3.0",
|
||||
"@vue/cli-service": "^3.3.0",
|
||||
"css-loader": "^2.1.0",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue