@ruan-cat/utils 4.20.0 → 4.22.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/README.md +26 -0
- package/dist/cli/chunk-46BA5ZMG.js +2788 -0
- package/dist/cli/chunk-46BA5ZMG.js.map +1 -0
- package/dist/cli/index.js +65 -0
- package/dist/cli/index.js.map +1 -0
- package/dist/cli/move-vercel-output-to-root.js +14 -0
- package/dist/cli/move-vercel-output-to-root.js.map +1 -0
- package/dist/node-cjs/index.cjs +18 -2
- package/dist/node-cjs/index.cjs.map +1 -1
- package/dist/node-cjs/index.d.cts +11 -1
- package/dist/node-esm/index.d.ts +88 -1
- package/dist/node-esm/index.js +199 -12
- package/dist/node-esm/index.js.map +1 -1
- package/package.json +21 -15
- package/src/cli/index.ts +87 -0
- package/src/cli/move-vercel-output-to-root.ts +17 -0
- package/src/monorepo/index.ts +28 -1
- package/src/node-esm/index.ts +1 -0
- package/src/node-esm/scripts/move-vercel-output-to-root/index.test.ts +151 -0
- package/src/node-esm/scripts/move-vercel-output-to-root/index.ts +286 -0
package/README.md
CHANGED
|
@@ -14,3 +14,29 @@ dir:
|
|
|
14
14
|
<!-- /automd -->
|
|
15
15
|
|
|
16
16
|
这是阮喵喵开发的工具包,提供了一些工具函数。
|
|
17
|
+
|
|
18
|
+
## Install
|
|
19
|
+
|
|
20
|
+
<!-- automd:pm-install name="@ruan-cat/utils" -->
|
|
21
|
+
|
|
22
|
+
```sh
|
|
23
|
+
# ✨ Auto-detect
|
|
24
|
+
npx nypm install @ruan-cat/utils
|
|
25
|
+
|
|
26
|
+
# npm
|
|
27
|
+
npm install @ruan-cat/utils
|
|
28
|
+
|
|
29
|
+
# yarn
|
|
30
|
+
yarn add @ruan-cat/utils
|
|
31
|
+
|
|
32
|
+
# pnpm
|
|
33
|
+
pnpm add @ruan-cat/utils
|
|
34
|
+
|
|
35
|
+
# bun
|
|
36
|
+
bun install @ruan-cat/utils
|
|
37
|
+
|
|
38
|
+
# deno
|
|
39
|
+
deno install npm:@ruan-cat/utils
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
<!-- /automd -->
|