@hile/cli 2.0.1 → 2.0.2

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/dist/start.js +0 -4
  2. package/package.json +4 -4
package/dist/start.js CHANGED
@@ -112,13 +112,9 @@ export async function start(options) {
112
112
  if (!fn || !isService(fn))
113
113
  throw new Error(`invalid service file: ${file}`);
114
114
  await loadService(fn);
115
- if (!options.silent) {
116
- console.info(`+ [bootstrap] ${file}`);
117
- }
118
115
  }));
119
116
  // 如果没有服务要加载,则提示
120
117
  if (!files.length) {
121
- console.warn('no services to load');
122
118
  offEvent();
123
119
  return;
124
120
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hile/cli",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "scripts": {
@@ -28,13 +28,13 @@
28
28
  "vitest": "^4.0.18"
29
29
  },
30
30
  "dependencies": {
31
- "@hile/core": "^1.1.2",
32
- "@hile/micro": "^2.0.0",
31
+ "@hile/core": "^2.0.0",
32
+ "@hile/micro": "^2.0.1",
33
33
  "async-exit-hook": "^2.0.1",
34
34
  "commander": "^14.0.3",
35
35
  "glob": "^13.0.6",
36
36
  "tsx": "^4.21.0",
37
37
  "yaml": "^2.9.0"
38
38
  },
39
- "gitHead": "0767f680fb6cb4e2d9fda2a19778a8b78f5d7623"
39
+ "gitHead": "8e0fd1f78b5a8abd21218d1f596ada2533a0c8e7"
40
40
  }