Skip to content

Commit b92c7de

Browse files
committed
fix: node version package
1 parent debe3ae commit b92c7de

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# UnderScript App Changelog
22

3+
## Version 1.3.4 (2020-02-28)
4+
1. Fixed node version (probably)
5+
36
## Version 1.3.3 (2020-02-28)
47
### New Features
58
1. Zoom with CTRL+Scroll

package.json

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,17 @@
77
"start": "electron .",
88
"pack": "electron-builder --dir",
99
"dist": "electron-builder",
10-
"update": "npm version minor --m=\"chore(update): Release v%s\"",
11-
"patch": "npm version patch --m=\"chore(patch): Release v%s\"",
10+
"update": "npm version minor --m=\"chore(update): v%s\"",
11+
"patch": "npm version patch --m=\"chore(patch): v%s\"",
1212
"test": "echo \"Error: no test specified\" && exit 1"
1313
},
14+
"engines": {
15+
"node": ">=16"
16+
},
1417
"keywords": [],
1518
"author": "feildmaster <[email protected]> (https://feildmaster.com/)",
1619
"license": "MIT",
20+
"repository": "https://github.com/UCProjects/UnderScript-App",
1721
"devDependencies": {
1822
"@types/fs-extra": "^9.0.13",
1923
"electron": "^11.5.0",
@@ -27,6 +31,8 @@
2731
},
2832
"build": {
2933
"appId": "com.feildmaster.underscript.app",
30-
"productName": "UnderScript"
34+
"productName": "UnderScript",
35+
"publish": "github",
36+
"nodeVersion": "current"
3137
}
3238
}

0 commit comments

Comments
 (0)