@hile/cli 2.0.1 → 2.0.3
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/dist/start.js +0 -4
- 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.
|
|
3
|
+
"version": "2.0.3",
|
|
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": "^
|
|
32
|
-
"@hile/micro": "^2.0.
|
|
31
|
+
"@hile/core": "^2.0.1",
|
|
32
|
+
"@hile/micro": "^2.0.2",
|
|
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": "
|
|
39
|
+
"gitHead": "2c8011db01f2815e5ce34de964d5492640396828"
|
|
40
40
|
}
|