@blocklet/resolver 1.17.7-beta-20251227-001958-ea2ba3f5 → 1.17.7-beta-20251229-085620-84f09930

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/index.js +4 -1
  2. package/package.json +6 -6
package/index.js CHANGED
@@ -83,7 +83,10 @@ const getComponentConfig = (meta) => {
83
83
  // treat engine as component
84
84
  const engine = (0, engine_1.getBlockletEngine)(meta);
85
85
  if (engine?.interpreter === 'blocklet') {
86
- components.push({ source: engine.source, required: true });
86
+ // @ts-ignore Static server is now part of the built-in engines
87
+ if (engine.source?.name !== constant_1.STATIC_SERVER_ENGINE_DID) {
88
+ components.push({ source: engine.source, required: true });
89
+ }
87
90
  }
88
91
  return components;
89
92
  };
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.17.7-beta-20251227-001958-ea2ba3f5",
6
+ "version": "1.17.7-beta-20251229-085620-84f09930",
7
7
  "description": "Blocklet meta resolver",
8
8
  "main": "index.js",
9
9
  "files": [
@@ -20,16 +20,16 @@
20
20
  "license": "Apache-2.0",
21
21
  "dependencies": {
22
22
  "@arcblock/did": "^1.27.16",
23
- "@blocklet/constant": "1.17.7-beta-20251227-001958-ea2ba3f5",
24
- "@blocklet/meta": "1.17.7-beta-20251227-001958-ea2ba3f5",
23
+ "@blocklet/constant": "1.17.7-beta-20251229-085620-84f09930",
24
+ "@blocklet/meta": "1.17.7-beta-20251229-085620-84f09930",
25
25
  "lodash": "^4.17.21",
26
26
  "lru-cache": "^11.0.2",
27
27
  "semver": "^7.6.3",
28
28
  "ufo": "^1.5.3"
29
29
  },
30
30
  "devDependencies": {
31
- "@abtnode/db-cache": "1.17.7-beta-20251227-001958-ea2ba3f5",
32
- "@abtnode/types": "1.17.7-beta-20251227-001958-ea2ba3f5",
31
+ "@abtnode/db-cache": "1.17.7-beta-20251229-085620-84f09930",
32
+ "@abtnode/types": "1.17.7-beta-20251229-085620-84f09930",
33
33
  "@arcblock/eslint-config-ts": "^0.3.3",
34
34
  "@types/node": "^22.7.5",
35
35
  "@typescript-eslint/eslint-plugin": "^5.42.0",
@@ -38,5 +38,5 @@
38
38
  "prettier": "^3.3.2",
39
39
  "typescript": "^5.6.3"
40
40
  },
41
- "gitHead": "ec0a542fc2c66f2530d25884b43bddfa28d921a0"
41
+ "gitHead": "fe2ffc3cf431bbaa89ac802bed793aa1188da4c3"
42
42
  }