@todesktop/cli 1.10.0 → 1.10.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
@@ -1125,6 +1125,10 @@ Now, when we build your app on ToDesktop servers, it will also run your custom `
1125
1125
 
1126
1126
  ## Changelog
1127
1127
 
1128
+ ### v1.10.1
1129
+
1130
+ - Fix: add JSON schema for missing `todesktop.json` properties
1131
+
1128
1132
  ### v1.10.0
1129
1133
 
1130
1134
  - Throw error if unsupported properties are provided in `todesktop.json`
package/dist/cli.js CHANGED
@@ -1533,6 +1533,7 @@ var full_default = (context) => {
1533
1533
  type: "string",
1534
1534
  minLength: 1
1535
1535
  },
1536
+ extends: { type: "string", minLength: 1 },
1536
1537
  extraContentFiles: {
1537
1538
  type: "array",
1538
1539
  items: {
@@ -1599,7 +1600,7 @@ var full_default = (context) => {
1599
1600
  },
1600
1601
  rank: {
1601
1602
  type: "string",
1602
- minLength: 1
1603
+ enum: ["Owner", "Default", "Alternate", "None"]
1603
1604
  }
1604
1605
  }
1605
1606
  },
@@ -1769,6 +1770,9 @@ var full_default = (context) => {
1769
1770
  validSemver: {},
1770
1771
  minLength: 1
1771
1772
  },
1773
+ packageJson: {
1774
+ type: "object"
1775
+ },
1772
1776
  packageManager: {
1773
1777
  type: "string",
1774
1778
  enum: ["npm", "yarn", "pnpm"]
@@ -5310,7 +5314,7 @@ var package_default = {
5310
5314
  access: "public"
5311
5315
  },
5312
5316
  name: "@todesktop/cli",
5313
- version: "1.9.8",
5317
+ version: "1.10.0",
5314
5318
  license: "MIT",
5315
5319
  author: "Dave Jeffery <dave@todesktop.com> (http://www.todesktop.com/)",
5316
5320
  homepage: "https://todesktop.com/cli",