Version bump

This commit is contained in:
The Jared Wilcurt 2019-12-27 00:53:31 -05:00
parent 5a46f07509
commit 5a8a3aa04c

View File

@ -2,11 +2,11 @@
"ManifestComments": [ "ManifestComments": [
"Only add dependencies that you want shipped to the end user, for everything else, use devDependencies, including things that will be bundled by webpack.", "Only add dependencies that you want shipped to the end user, for everything else, use devDependencies, including things that will be bundled by webpack.",
"NW.js requires a name and a main, everything else is optional.", "NW.js requires a name and a main, everything else is optional.",
"The build section is used by nwjs-builder-phoenix, see it's documentation for more info", "The build section is used by nwjs-builder-phoenix, see its documentation for more info",
"To turn spell checking off, remove it from the chromium-args in this file" "To turn spell checking off, remove it from the chromium-args in this file"
], ],
"name": "nw-vue", "name": "nw-vue",
"version": "1.2.0", "version": "1.3.0",
"main": "http://localhost:8964", "main": "http://localhost:8964",
"node-remote": "http://localhost:8964", "node-remote": "http://localhost:8964",
"node-main": "", "node-main": "",
@ -27,10 +27,10 @@
"build:nw": "build --concurrent --tasks win-x86,linux-x86,linux-x64,mac-x64 --mirror https://dl.nwjs.io/ .", "build:nw": "build --concurrent --tasks win-x86,linux-x86,linux-x64,mac-x64 --mirror https://dl.nwjs.io/ .",
"build:win": "npm run build:win:clean && npm run build:vue && build --tasks win-x86 --mirror https://dl.nwjs.io/ .", "build:win": "npm run build:win:clean && npm run build:vue && build --tasks win-x86 --mirror https://dl.nwjs.io/ .",
"build:lin": "npm run build:lin:clean && npm run build:vue && build --tasks linux-x64 --mirror https://dl.nwjs.io/ .", "build:lin": "npm run build:lin:clean && npm run build:vue && build --tasks linux-x64 --mirror https://dl.nwjs.io/ .",
"build:win:clean": "rimraf ./dist-vue ./dist/nw-vue-1.2.0-win-x86 ./dist/nw-vue-1.2.0-win-x86.zip ./dist/nw-vue-1.2.0-win-x86.7z ./dist/nw-vue-1.2.0-win-x86-Setup.exe", "build:win:clean": "rimraf ./dist-vue ./dist/nw-vue-1.3.0-win-x86 ./dist/nw-vue-1.3.0-win-x86.zip ./dist/nw-vue-1.3.0-win-x86.7z ./dist/nw-vue-1.3.0-win-x86-Setup.exe",
"build:lin:clean": "rimraf ./dist-vue ./dist/nw-vue-1.2.0-linux-x64 ./dist/nw-vue-1.2.0-linux-x64.zip", "build:lin:clean": "rimraf ./dist-vue ./dist/nw-vue-1.3.0-linux-x64 ./dist/nw-vue-1.3.0-linux-x64.zip",
"run:win": "dist\\nw-vue-1.2.0-win-x86\\nw-vue.exe", "run:win": "dist\\nw-vue-1.3.0-win-x86\\nw-vue.exe",
"run:lin": "./dist/nw-vue-1.2.0-linux-x64/nw-vue", "run:lin": "./dist/nw-vue-1.3.0-linux-x64/nw-vue",
"regression": "rd /s /q node_modules & rd /s /q node_modules & rd /s /q node_modules & npm install && npm run lint && npm test && npm run build:win && npm run run:win", "regression": "rd /s /q node_modules & rd /s /q node_modules & rd /s /q node_modules & npm install && npm run lint && npm test && npm run build:win && npm run run:win",
"lint": "vue-cli-service lint --no-fix", "lint": "vue-cli-service lint --no-fix",
"fix": "vue-cli-service lint --fix", "fix": "vue-cli-service lint --fix",
@ -82,7 +82,7 @@
}, },
"chromium-args": "--enable-spell-checking --load-extension='./node_modules/nw-vue-devtools-prebuilt/extension'", "chromium-args": "--enable-spell-checking --load-extension='./node_modules/nw-vue-devtools-prebuilt/extension'",
"build": { "build": {
"nwVersion": "v0.42.3", "nwVersion": "v0.43.2",
"nwFlavor": "normal", "nwFlavor": "normal",
"targets": [ "targets": [
"zip", "zip",
@ -104,6 +104,7 @@
".gitignore", ".gitignore",
".editorconfig", ".editorconfig",
"babel.config.js", "babel.config.js",
"CODE_OF_CONDUCT.md",
"cypress.json", "cypress.json",
"jest.config.js", "jest.config.js",
"nightwatch.conf.js", "nightwatch.conf.js",
@ -115,6 +116,7 @@
"vue.config.js" "vue.config.js"
], ],
"strippedProperties": [ "strippedProperties": [
"ManifestComments",
"scripts", "scripts",
"devDependencies", "devDependencies",
"build" "build"
@ -123,7 +125,14 @@
"main": "http://localhost:8965", "main": "http://localhost:8965",
"node-remote": "http://localhost:8965", "node-remote": "http://localhost:8965",
"node-main": "server.js", "node-main": "server.js",
"chromium-args": "--enable-spell-checking" "chromium-args": "--enable-spell-checking",
"window": {
"width": 960,
"height": 600,
"min_width": 700,
"min_height": 500,
"icon": "dist-vue/vue.png"
}
}, },
"win": { "win": {
"icon": "public/icon-256.ico" "icon": "public/icon-256.ico"