@todesktop/cli 1.1.1 → 1.1.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.
- package/README.md +10 -0
- package/build/commands/build.js +115 -4740
- package/build/commands/build.js.map +1 -1
- package/build/commands/builds.js +109 -4224
- package/build/commands/builds.js.map +1 -1
- package/build/commands/logout.js +57 -2511
- package/build/commands/logout.js.map +1 -1
- package/build/commands/release.js +89 -3606
- package/build/commands/release.js.map +1 -1
- package/build/commands/whoami.js +57 -2511
- package/build/commands/whoami.js.map +1 -1
- package/package.json +1 -2
package/README.md
CHANGED
|
@@ -229,6 +229,16 @@ Example: `word`.
|
|
|
229
229
|
|
|
230
230
|
If you want to register a protocol for your application (e.g. `example://`) and or support deeplinking, you will need to use this option. If your desired protocol is `example://`, you would set `"appProtocolScheme": "example"`. NOTE: these features also require additional application logic.
|
|
231
231
|
|
|
232
|
+
### `asarUnpack` - (optional) boolean or array of glob patterns
|
|
233
|
+
|
|
234
|
+
Default: [`**/*.node`]
|
|
235
|
+
|
|
236
|
+
This option allows you to decide which files get unpacked from the asar archive. By default we unpack all native `*.node` files.
|
|
237
|
+
|
|
238
|
+
If you want to unpack only files that are required to be unpacked, you can set this property to `false`.
|
|
239
|
+
|
|
240
|
+
You can also specify a list of glob patterns to unpack.
|
|
241
|
+
|
|
232
242
|
### `copyright` - (optional) string
|
|
233
243
|
|
|
234
244
|
Default: The `package.json` [productName](#recommendations-for-app-packagejson) / `name`.
|