@blocklet/meta 1.6.31 → 1.7.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.
package/lib/constants.js CHANGED
@@ -173,7 +173,7 @@ module.exports = Object.freeze({
173
173
 
174
174
  BLOCKLET_DEFAULT_VERSION: '1.0.0',
175
175
 
176
- BLOCKLET_LATEST_SPEC_VERSION: '1.2.3',
176
+ BLOCKLET_LATEST_SPEC_VERSION: '1.2.4',
177
177
  BLOCKLET_LATEST_REQUIREMENT_SERVER: '>=1.6.2',
178
178
  BLOCKLET_LATEST_REQUIREMENT_ABTNODE: '>=1.5.15', // Deprecated
179
179
 
package/lib/schema.js CHANGED
@@ -36,6 +36,7 @@ const environmentSchema = Joi.object({
36
36
  required: Joi.boolean().default(false),
37
37
  secure: Joi.boolean().default(false),
38
38
  validation: Joi.string().optional(),
39
+ shared: Joi.boolean().default(true),
39
40
  });
40
41
 
41
42
  const scriptsSchema = Joi.object({
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.6.31",
6
+ "version": "1.7.0",
7
7
  "description": "Library to parse/validate/fix blocklet meta",
8
8
  "main": "lib/index.js",
9
9
  "files": [
@@ -18,14 +18,14 @@
18
18
  "author": "wangshijun <wangshijun2020@gmail.com> (http://github.com/wangshijun)",
19
19
  "license": "MIT",
20
20
  "dependencies": {
21
- "@arcblock/did": "^1.14.24",
22
- "@arcblock/did-ext": "^1.14.24",
23
- "@arcblock/did-util": "^1.14.24",
24
- "@arcblock/nft": "^1.14.24",
25
- "@ocap/asset": "^1.14.24",
26
- "@ocap/mcrypto": "^1.14.24",
27
- "@ocap/util": "^1.14.24",
28
- "@ocap/wallet": "^1.14.24",
21
+ "@arcblock/did": "^1.14.25",
22
+ "@arcblock/did-ext": "^1.14.25",
23
+ "@arcblock/did-util": "^1.14.25",
24
+ "@arcblock/nft": "^1.14.25",
25
+ "@ocap/asset": "^1.14.25",
26
+ "@ocap/mcrypto": "^1.14.25",
27
+ "@ocap/util": "^1.14.25",
28
+ "@ocap/wallet": "^1.14.25",
29
29
  "ajv": "^7.0.3",
30
30
  "cjk-length": "^1.0.0",
31
31
  "debug": "^4.3.3",
@@ -43,5 +43,5 @@
43
43
  "devDependencies": {
44
44
  "jest": "^27.4.5"
45
45
  },
46
- "gitHead": "ccda31a16ac6b606d34336fcc6db0b2aff15c32e"
46
+ "gitHead": "fc949a5e8a1017fbe17533d3bd78b166c7dad132"
47
47
  }