@opentapd/tplugin-cli 0.57.1-alpha.0 → 0.58.1-alpha.0

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.
Files changed (2) hide show
  1. package/lib/lint.js +2 -2
  2. package/package.json +2 -2
package/lib/lint.js CHANGED
@@ -14,7 +14,7 @@ const checkPluginYaml = require('../util/checkPluginYaml');
14
14
  const Joi = require('joi');
15
15
 
16
16
  const schema = Joi.object({
17
- app: {
17
+ app: Joi.object({
18
18
  code: Joi.string(),
19
19
  desc: Joi.string(),
20
20
  name: Joi.string(),
@@ -173,7 +173,7 @@ const schema = Joi.object({
173
173
  validate: Joi.string(),
174
174
  })
175
175
  .unique('code'),
176
- },
176
+ }).unknown(),
177
177
  });
178
178
 
179
179
  // 检查插件格式
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opentapd/tplugin-cli",
3
- "version": "0.57.1-alpha.0",
3
+ "version": "0.58.1-alpha.0",
4
4
  "description": "tplugin-cli",
5
5
  "bin": {
6
6
  "tplugin-cli": "index.js"
@@ -79,5 +79,5 @@
79
79
  "node": ">=14.13.0"
80
80
  },
81
81
  "main": "index.js",
82
- "gitHead": "b3880b767fc08ea7de35ef51c6336c6e44a5e9c7"
82
+ "gitHead": "892402b867f4729b2016651d3a341f3ac9cc55c3"
83
83
  }