jdeploy-installer 1.0.3 → 3.0.0-alpha.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
|
@@ -2,3 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
A desktop installer for GUI apps deployed using [jDeploy](https://github.com/shannah/jdeploy)
|
|
4
4
|
|
|
5
|
+
# Release Instructions
|
|
6
|
+
|
|
7
|
+
NPM releases are automated in Github actions. By creating a tag in Github, it will automatically make the corresponding release on NPM.
|
|
8
|
+
|
|
9
|
+
Version naming convension: X.Y.Z-alpha.N
|
|
10
|
+
|
|
11
|
+
E.g. 3.0.0-alpha.1 for pre-release. or 3.0.0 for stable release.
|
|
12
|
+
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,22 +1,37 @@
|
|
|
1
1
|
{
|
|
2
|
-
"bin": {
|
|
2
|
+
"bin": {
|
|
3
|
+
"jdeploy-installer": "jdeploy-bundle/jdeploy.js"
|
|
4
|
+
},
|
|
3
5
|
"author": "Steve Hannah",
|
|
4
6
|
"description": "Desktop installer for Java applications deployed using jDeploy",
|
|
5
7
|
"main": "index.js",
|
|
6
8
|
"preferGlobal": true,
|
|
7
9
|
"repository": {
|
|
8
|
-
"type"
|
|
9
|
-
"url"
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "https://github.com/shannah/jdeploy.git",
|
|
10
12
|
"directory": "installer"
|
|
11
13
|
},
|
|
12
|
-
"version": "
|
|
14
|
+
"version": "3.0.0-alpha.4",
|
|
13
15
|
"jdeploy": {
|
|
14
|
-
|
|
15
|
-
|
|
16
|
+
"jar": "target/jdeploy-installer-1.0-SNAPSHOT.jar",
|
|
17
|
+
"bundles": [
|
|
18
|
+
"mac",
|
|
19
|
+
"win",
|
|
20
|
+
"linux"
|
|
21
|
+
],
|
|
22
|
+
"macAppBundleId": "HRNMHC7527.ca.weblite.jdeploy.installer",
|
|
23
|
+
"codesign": true,
|
|
24
|
+
"notarize": false
|
|
25
|
+
},
|
|
26
|
+
"dependencies": {
|
|
27
|
+
"shelljs": "^0.8.4"
|
|
16
28
|
},
|
|
17
|
-
"dependencies": {"shelljs": "^0.8.4"},
|
|
18
29
|
"license": "ISC",
|
|
19
30
|
"name": "jdeploy-installer",
|
|
20
|
-
"files": [
|
|
21
|
-
|
|
22
|
-
|
|
31
|
+
"files": [
|
|
32
|
+
"jdeploy-bundle"
|
|
33
|
+
],
|
|
34
|
+
"scripts": {
|
|
35
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
36
|
+
}
|
|
37
|
+
}
|
|
Binary file
|