@todesktop/cli 1.9.0 → 1.9.1

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
@@ -538,6 +538,12 @@ This option allows you to configure whether your app should run in a sandboxed e
538
538
 
539
539
  We default this to `true` for compatibility reasons because some Linux distributions do not support unprivileged user namespaces.
540
540
 
541
+ ### `includeSubNodeModules` - (optional) boolean
542
+
543
+ Default: `false`
544
+
545
+ Whether to include **all** of the submodules node_modules directories
546
+
541
547
  ### `mac` - (optional) object
542
548
 
543
549
  Default: We have good default settings for Mac.
@@ -1056,6 +1062,10 @@ Now, when we build your app on ToDesktop servers, it will also run your custom `
1056
1062
 
1057
1063
  ## Changelog
1058
1064
 
1065
+ ## v1.9.1
1066
+
1067
+ - Add support for `includeSubNodeModules` in config
1068
+
1059
1069
  ## v1.9.0
1060
1070
 
1061
1071
  - You can now specify `@electron/rebuild` as a custom `rebuildLibrary` in your `todesktop.json` file.
package/dist/cli.js CHANGED
@@ -1596,6 +1596,10 @@ var full_default = (context) => {
1596
1596
  }
1597
1597
  },
1598
1598
  id: { type: "string", minLength: 1 },
1599
+ includeSubNodeModules: {
1600
+ type: "boolean",
1601
+ default: false
1602
+ },
1599
1603
  mac: {
1600
1604
  type: "object",
1601
1605
  properties: {
@@ -5162,7 +5166,7 @@ var package_default = {
5162
5166
  access: "public"
5163
5167
  },
5164
5168
  name: "@todesktop/cli",
5165
- version: "1.8.1",
5169
+ version: "1.9.0",
5166
5170
  license: "MIT",
5167
5171
  author: "Dave Jeffery <dave@todesktop.com> (http://www.todesktop.com/)",
5168
5172
  homepage: "https://todesktop.com/cli",