@todesktop/cli 0.28.0 → 0.28.2

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.
@@ -1,41 +1,5 @@
1
1
  {
2
2
  "commands": [
3
- {
4
- "description": "",
5
- "positionalArgs": [],
6
- "args": [],
7
- "isIndex": false,
8
- "name": "logout",
9
- "path": "logout.js",
10
- "subCommands": []
11
- },
12
- {
13
- "description": "",
14
- "positionalArgs": [],
15
- "args": [],
16
- "isIndex": false,
17
- "name": "whoami",
18
- "path": "whoami.js",
19
- "subCommands": []
20
- },
21
- {
22
- "description": "Build an Electron app with native installers, code signing baked-in, etc. but without releasing it (existing users won't get an auto-update). For quicker builds, you can append `--code-sign=false` to disable code-signing and notarization.",
23
- "positionalArgs": [],
24
- "args": [
25
- {
26
- "key": "codeSign",
27
- "type": "boolean",
28
- "description": "Whether or not code-signing and notarization should be performed. Disable this for quicker builds",
29
- "isRequired": false,
30
- "aliases": [],
31
- "positional": false
32
- }
33
- ],
34
- "isIndex": false,
35
- "name": "build",
36
- "path": "build.js",
37
- "subCommands": []
38
- },
39
3
  {
40
4
  "description": "View your builds",
41
5
  "positionalArgs": [
@@ -64,6 +28,24 @@
64
28
  "path": "builds.js",
65
29
  "subCommands": []
66
30
  },
31
+ {
32
+ "description": "Build an Electron app with native installers, code signing baked-in, etc. but without releasing it (existing users won't get an auto-update). For quicker builds, you can append `--code-sign=false` to disable code-signing and notarization.",
33
+ "positionalArgs": [],
34
+ "args": [
35
+ {
36
+ "key": "codeSign",
37
+ "type": "boolean",
38
+ "description": "Whether or not code-signing and notarization should be performed. Disable this for quicker builds",
39
+ "isRequired": false,
40
+ "aliases": [],
41
+ "positional": false
42
+ }
43
+ ],
44
+ "isIndex": false,
45
+ "name": "build",
46
+ "path": "build.js",
47
+ "subCommands": []
48
+ },
67
49
  {
68
50
  "description": "Release a build",
69
51
  "positionalArgs": [
@@ -99,6 +81,24 @@
99
81
  "name": "release",
100
82
  "path": "release.js",
101
83
  "subCommands": []
84
+ },
85
+ {
86
+ "description": "",
87
+ "positionalArgs": [],
88
+ "args": [],
89
+ "isIndex": false,
90
+ "name": "whoami",
91
+ "path": "whoami.js",
92
+ "subCommands": []
93
+ },
94
+ {
95
+ "description": "",
96
+ "positionalArgs": [],
97
+ "args": [],
98
+ "isIndex": false,
99
+ "name": "logout",
100
+ "path": "logout.js",
101
+ "subCommands": []
102
102
  }
103
103
  ]
104
104
  }
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "access": "public"
5
5
  },
6
6
  "name": "@todesktop/cli",
7
- "version": "0.28.0",
7
+ "version": "0.28.2",
8
8
  "license": "MIT",
9
9
  "author": "Dave Jeffery <dave@todesktop.com> (http://www.todesktop.com/)",
10
10
  "homepage": "https://todesktop.com/cli",
@@ -19,10 +19,10 @@
19
19
  },
20
20
  "scripts": {
21
21
  "dev": "cp-cli dev.env .env && pastel dev",
22
- "build": "cross-env NODE_ENV=production pastel build && cp-cli prod.env .env && cp node_modules/pastel/boot.js build/boot.js && sed -i '.bak' 's/pastel\\/boot/.\\/boot/g' build/cli.js",
22
+ "build": "cross-env NODE_ENV=production pastel build && cp-cli prod.env .env && cp node_modules/pastel/boot.js build/boot.js && sed -i'.bak' 's@pastel\\/boot@.\\/boot@g' build/cli.js",
23
23
  "lint": "eslint .",
24
24
  "lint--fix": "eslint . --fix",
25
- "release": "npm run build && npx np --no-tests --tag=latest",
25
+ "release": "npm run build && npx np --tag=latest",
26
26
  "release-beta": "npm run build && npx np --any-branch --no-tests --tag=beta",
27
27
  "test": "npm run build && ava",
28
28
  "test--watch": "npm test -- --watch"