@soybeanjs/cli 0.7.9 → 0.8.1
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/README.md +4 -3
- package/dist/chunks/index.cjs +197 -0
- package/dist/chunks/index.mjs +197 -0
- package/dist/chunks/index2.cjs +5 -0
- package/dist/chunks/index2.mjs +5 -0
- package/dist/chunks/index3.cjs +1 -0
- package/dist/chunks/index3.mjs +1 -0
- package/dist/chunks/index4.cjs +8 -0
- package/dist/chunks/index4.mjs +8 -0
- package/dist/chunks/index5.cjs +1 -0
- package/dist/chunks/index5.mjs +1 -0
- package/dist/index.cjs +2 -2
- package/dist/index.d.cts +16 -19
- package/dist/index.d.mts +16 -19
- package/dist/index.d.ts +16 -19
- package/dist/index.mjs +2 -2
- package/dist/shared/cli.6ba50424.cjs +1 -0
- package/dist/shared/cli.caadc2d6.mjs +1 -0
- package/package.json +26 -15
package/README.md
CHANGED
|
@@ -44,14 +44,15 @@ pnpm soy -h
|
|
|
44
44
|
- 导入 defineConfig 函数
|
|
45
45
|
|
|
46
46
|
```ts
|
|
47
|
-
import { defineConfig } from
|
|
47
|
+
import { defineConfig } from '@soybeanjs/cli';
|
|
48
48
|
|
|
49
49
|
export default defineConfig({
|
|
50
|
-
//options
|
|
50
|
+
// options
|
|
51
51
|
});
|
|
52
52
|
```
|
|
53
53
|
|
|
54
54
|
- 配置参考
|
|
55
|
+
|
|
55
56
|
```ts
|
|
56
|
-
import type { CliOption } from
|
|
57
|
+
import type { CliOption } from '@soybeanjs/cli';
|
|
57
58
|
```
|