Skip to content

Commit

Permalink
support for windows dev using shx #396
Browse files Browse the repository at this point in the history
  • Loading branch information
angrykoala committed Jan 22, 2021
1 parent 5907093 commit 4a48e2c
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
* Fix problem with collapsible settings and task form
* Adds ellipsis to task title if window is too narrow
* Support for opening GitHub link in about modal
* Support for windows development out-of-the-box through shx

0.10.0 / 2021-01-16
===================
Expand Down
36 changes: 36 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,20 +29,21 @@
"mocha": "^8.2.1",
"parcel": "^1.12.4",
"sass": "^1.32.5",
"shx": "^0.3.3",
"sinon": "^9.2.3",
"vue-template-compiler": "^2.6.12"
},
"scripts": {
"build": "rm -rf public/ && parcel build src/app/index.html --target electron --public-url ./ --out-dir public --no-source-maps",
"test": "cross-env NODE_ENV=test npm run build && mocha tests --recursive --exit",
"start": "electron .",
"build": "shx rm -rf public/ && parcel build src/app/index.html --target electron --public-url ./ --out-dir public --no-source-maps",
"test": "cross-env NODE_ENV=test npm run build && mocha tests --recursive --exit",
"start-dev": "npm run build && cross-env NODE_ENV=dev npm start",
"eslint": "eslint main.js src tests --ext .vue --ext .js",
"eslint-fix": "eslint main.js src tests --ext .vue --ext .js --fix",
"dist": "npm run clean && npm run build && electron-builder",
"dist-all": "npm run clean && npm run build && electron-builder -wlm --x64",
"pack": "npm run build && rm -rf dist/ && electron-builder --dir",
"clean": "rm -rf dist/ && rm -rf public/"
"pack": "npm run build && shx rm -rf dist/ && electron-builder --dir",
"clean": "shx rm -rf dist/ && shx rm -rf public/"
},
"build": {
"appId": "angrykoala.gaucho",
Expand Down

0 comments on commit 4a48e2c

Please sign in to comment.