@ruan-cat/utils 4.15.0 → 4.17.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ruan-cat/utils",
3
- "version": "4.15.0",
3
+ "version": "4.17.0",
4
4
  "description": "阮喵喵工具集合。默认提供js文件,也直接提供ts文件。",
5
5
  "type": "module",
6
6
  "main": "./src/index.ts",
@@ -52,25 +52,29 @@
52
52
  },
53
53
  "files": [
54
54
  "!**/.vercel/**",
55
+ "!**/.vitepress/**",
55
56
  "src",
56
- "dist/*",
57
- "!src/tests",
58
- "!src/**/tests",
57
+ "dist/**",
58
+ "tsconfig.json",
59
+ "README.md",
60
+ "!src/**/docs/**",
61
+ "!src/**/tests/**",
62
+ "!*.test.*",
59
63
  "!src/**/*.md",
60
- "!src/typedoc-md/**/*",
61
- "tsconfig.json"
64
+ "!src/typedoc-md/**/*"
62
65
  ],
63
66
  "dependencies": {
64
67
  "@vueuse/integrations": "^13.9.0",
65
- "axios": "^1.12.2",
68
+ "axios": "^1.13.2",
66
69
  "consola": "^3.4.2",
70
+ "glob": "^11.0.3",
67
71
  "lodash-es": "^4.17.21"
68
72
  },
69
73
  "devDependencies": {
70
- "@antfu/utils": "^9.2.1",
74
+ "@antfu/utils": "^9.3.0",
71
75
  "@types/js-yaml": "^4.0.9",
72
76
  "@types/lodash-es": "^4.17.12",
73
- "@types/node": "^22.18.6",
77
+ "@types/node": "^22.19.0",
74
78
  "@types/qs": "^6.14.0",
75
79
  "automd": "^0.4.2",
76
80
  "commander": "^13.1.0",
@@ -78,12 +82,12 @@
78
82
  "qs": "^6.14.0",
79
83
  "tsup": "^8.5.0",
80
84
  "type-plus": "^7.6.2",
81
- "typedoc": "^0.28.13",
85
+ "typedoc": "^0.28.14",
82
86
  "typedoc-plugin-frontmatter": "^1.3.0",
83
87
  "typedoc-plugin-markdown": "^4.9.0",
84
- "typescript": "^5.9.2",
85
- "unplugin-auto-import": "^20.1.0",
86
- "unplugin-vue-router": "^0.15.0",
88
+ "typescript": "^5.9.3",
89
+ "unplugin-auto-import": "^20.2.0",
90
+ "unplugin-vue-router": "^0.16.1",
87
91
  "vite-plugin-autogeneration-import-file": "^3.0.0",
88
92
  "vitepress": "^1.6.4"
89
93
  },
@@ -2,17 +2,7 @@
2
2
  // import { defineRuanCatVuepressConfig } from "@ruan-cat/vuepress-preset-config";
3
3
  import { defineRuanCatVuepressConfig } from "../../../vuepress-preset-config";
4
4
 
5
- import { addChangelog2doc } from "@ruan-cat/utils/node-esm";
6
-
7
- addChangelog2doc({
8
- target: "./src",
9
- data: {
10
- order: 940,
11
- dir: {
12
- order: 940,
13
- },
14
- },
15
- });
5
+ // 注意:这里没有使用 addChangelog2doc 反正 vuepress 我后续也不用了
16
6
 
17
7
  export default defineRuanCatVuepressConfig({
18
8
  title: "阮喵喵工具包",
package/src/index.ts CHANGED
@@ -2,6 +2,7 @@ export * from "./conditions";
2
2
  export * from "./print";
3
3
  export * from "./define-promise-tasks";
4
4
  export * from "./simple-promise-tools";
5
+ export * from "./monorepo";
5
6
 
6
7
  export * from "./types/pnpm-workspace.yaml.shim";
7
8
  export * from "./types/Prettify";
@@ -0,0 +1,70 @@
1
+ import { join } from "node:path";
2
+ import * as fs from "node:fs";
3
+ import { sync } from "glob";
4
+ import { load } from "js-yaml";
5
+ import { isUndefined } from "lodash-es";
6
+ import type { PnpmWorkspace } from "./types/pnpm-workspace.yaml.shim";
7
+
8
+ /**
9
+ * 路径转换工具
10
+ * @private 暂时不考虑复用
11
+ */
12
+ function pathChange(path: string) {
13
+ return path.replace(/\\/g, "/");
14
+ // FIXME: 无法有效地实现解析路径 测试用例不通过
15
+ // return normalize(path);
16
+ // FIXME: tsup打包时,无法处理好vite的依赖 会导致打包失败 不知道怎么单独使用并打包该函数
17
+ // return normalizePath(path);
18
+ }
19
+
20
+ /**
21
+ * 判断目标项目是否是 monorepo 格式的项目
22
+ * @description
23
+ * 判别逻辑:
24
+ * 1. 目标项目同时存在 `pnpm-workspace.yaml` 文件
25
+ * 2. `pnpm-workspace.yaml` 提供了有效的 packages 匹配配置
26
+ * 3. 至少能匹配到一个 package.json 文件
27
+ *
28
+ * @returns {boolean} 是否是 monorepo 项目
29
+ * @throws {Error} 当 pnpm-workspace.yaml 格式错误时抛出错误
30
+ */
31
+ export function isMonorepoProject(): boolean {
32
+ // 1. 检查 pnpm-workspace.yaml 是否存在
33
+ const workspaceConfigPath = join(process.cwd(), "pnpm-workspace.yaml");
34
+ if (!fs.existsSync(workspaceConfigPath)) {
35
+ return false;
36
+ }
37
+
38
+ // 2. 解析 YAML 文件
39
+ let workspaceConfig: PnpmWorkspace;
40
+ try {
41
+ const workspaceFile = fs.readFileSync(workspaceConfigPath, "utf8");
42
+ workspaceConfig = <PnpmWorkspace>load(workspaceFile);
43
+ } catch (error) {
44
+ throw new Error(
45
+ `解析 pnpm-workspace.yaml 文件失败,请检查文件格式是否正确。错误信息:${error instanceof Error ? error.message : String(error)}`,
46
+ );
47
+ }
48
+
49
+ // 3. 检查 packages 配置是否存在且不为空数组
50
+ const pkgPatterns = workspaceConfig.packages;
51
+ if (isUndefined(pkgPatterns) || pkgPatterns.length === 0) {
52
+ return false;
53
+ }
54
+
55
+ // 4. 检查是否至少能匹配到一个 package.json
56
+ for (const pkgPattern of pkgPatterns) {
57
+ const matchedPath = pathChange(join(process.cwd(), pkgPattern, "package.json"));
58
+ const matchedPaths = sync(matchedPath, {
59
+ ignore: "**/node_modules/**",
60
+ });
61
+
62
+ // 只要有一个模式能匹配到文件,就认为是有效的 monorepo
63
+ if (matchedPaths.length > 0) {
64
+ return true;
65
+ }
66
+ }
67
+
68
+ // 没有匹配到任何 package.json
69
+ return false;
70
+ }
@@ -1,38 +0,0 @@
1
- // 工具包文档项目 直接导入生成文档配置 避免出现循环依赖
2
- import { setUserConfig, setGenerateSidebar, addChangelog2doc, copyReadmeMd } from "../../../vitepress-preset-config";
3
-
4
- import { description } from "../../package.json";
5
-
6
- copyReadmeMd("./src");
7
-
8
- addChangelog2doc({
9
- target: "./src",
10
- data: {
11
- order: 2000,
12
- dir: {
13
- order: 2000,
14
- },
15
- },
16
- });
17
-
18
- const userConfig = setUserConfig({
19
- title: "阮喵喵工具包",
20
- description,
21
- themeConfig: {
22
- editLink: {
23
- pattern: "https://github.com/ruan-cat/monorepo/blob/dev/packages/utils/src/:path",
24
- },
25
- socialLinks: [
26
- {
27
- icon: "github",
28
- link: "https://github.com/ruan-cat/monorepo/tree/main/packages/utils",
29
- },
30
- ],
31
- },
32
- });
33
-
34
- // @ts-ignore
35
- userConfig.themeConfig.sidebar = setGenerateSidebar({
36
- documentRootPath: "src",
37
- });
38
- export default userConfig;
@@ -1,6 +0,0 @@
1
- import { defineRuancatPresetTheme } from "@ruan-cat/vitepress-preset-config/theme";
2
-
3
- // 增加用户自定义样式
4
- import "./style.css";
5
-
6
- export default defineRuancatPresetTheme();
@@ -1,130 +0,0 @@
1
- /**
2
- * Customize default theme styling by overriding CSS variables:
3
- * https://github.com/vuejs/vitepress/blob/main/src/client/theme-default/styles/vars.css
4
- */
5
-
6
- /**
7
- * Colors
8
- *
9
- * Each colors have exact same color scale system with 3 levels of solid
10
- * colors with different brightness, and 1 soft color.
11
- *
12
- * - `XXX-1`: The most solid color used mainly for colored text. It must
13
- * satisfy the contrast ratio against when used on top of `XXX-soft`.
14
- *
15
- * - `XXX-2`: The color used mainly for hover state of the button.
16
- *
17
- * - `XXX-3`: The color for solid background, such as bg color of the button.
18
- * It must satisfy the contrast ratio with pure white (#ffffff) text on
19
- * top of it.
20
- *
21
- * - `XXX-soft`: The color used for subtle background such as custom container
22
- * or badges. It must satisfy the contrast ratio when putting `XXX-1` colors
23
- * on top of it.
24
- *
25
- * The soft color must be semi transparent alpha channel. This is crucial
26
- * because it allows adding multiple "soft" colors on top of each other
27
- * to create a accent, such as when having inline code block inside
28
- * custom containers.
29
- *
30
- * - `default`: The color used purely for subtle indication without any
31
- * special meanings attched to it such as bg color for menu hover state.
32
- *
33
- * - `brand`: Used for primary brand colors, such as link text, button with
34
- * brand theme, etc.
35
- *
36
- * - `tip`: Used to indicate useful information. The default theme uses the
37
- * brand color for this by default.
38
- *
39
- * - `warning`: Used to indicate warning to the users. Used in custom
40
- * container, badges, etc.
41
- *
42
- * - `danger`: Used to show error, or dangerous message to the users. Used
43
- * in custom container, badges, etc.
44
- * -------------------------------------------------------------------------- */
45
-
46
- :root {
47
- --vp-c-default-1: var(--vp-c-gray-1);
48
- --vp-c-default-2: var(--vp-c-gray-2);
49
- --vp-c-default-3: var(--vp-c-gray-3);
50
- --vp-c-default-soft: var(--vp-c-gray-soft);
51
-
52
- --vp-c-brand-1: var(--vp-c-indigo-1);
53
- --vp-c-brand-2: var(--vp-c-indigo-2);
54
- --vp-c-brand-3: var(--vp-c-indigo-3);
55
- --vp-c-brand-soft: var(--vp-c-indigo-soft);
56
-
57
- --vp-c-tip-1: var(--vp-c-brand-1);
58
- --vp-c-tip-2: var(--vp-c-brand-2);
59
- --vp-c-tip-3: var(--vp-c-brand-3);
60
- --vp-c-tip-soft: var(--vp-c-brand-soft);
61
-
62
- --vp-c-warning-1: var(--vp-c-yellow-1);
63
- --vp-c-warning-2: var(--vp-c-yellow-2);
64
- --vp-c-warning-3: var(--vp-c-yellow-3);
65
- --vp-c-warning-soft: var(--vp-c-yellow-soft);
66
-
67
- --vp-c-danger-1: var(--vp-c-red-1);
68
- --vp-c-danger-2: var(--vp-c-red-2);
69
- --vp-c-danger-3: var(--vp-c-red-3);
70
- --vp-c-danger-soft: var(--vp-c-red-soft);
71
- }
72
-
73
- /**
74
- * Component: Button
75
- * -------------------------------------------------------------------------- */
76
-
77
- :root {
78
- --vp-button-brand-border: transparent;
79
- --vp-button-brand-text: var(--vp-c-white);
80
- --vp-button-brand-bg: var(--vp-c-brand-3);
81
- --vp-button-brand-hover-border: transparent;
82
- --vp-button-brand-hover-text: var(--vp-c-white);
83
- --vp-button-brand-hover-bg: var(--vp-c-brand-2);
84
- --vp-button-brand-active-border: transparent;
85
- --vp-button-brand-active-text: var(--vp-c-white);
86
- --vp-button-brand-active-bg: var(--vp-c-brand-1);
87
- }
88
-
89
- /**
90
- * Component: Home
91
- * -------------------------------------------------------------------------- */
92
-
93
- :root {
94
- --vp-home-hero-name-color: transparent;
95
- --vp-home-hero-name-background: -webkit-linear-gradient(120deg, #bd34fe 30%, #41d1ff);
96
-
97
- --vp-home-hero-image-background-image: linear-gradient(-45deg, #bd34fe 50%, #47caff 50%);
98
- --vp-home-hero-image-filter: blur(44px);
99
- }
100
-
101
- @media (min-width: 640px) {
102
- :root {
103
- --vp-home-hero-image-filter: blur(56px);
104
- }
105
- }
106
-
107
- @media (min-width: 960px) {
108
- :root {
109
- --vp-home-hero-image-filter: blur(68px);
110
- }
111
- }
112
-
113
- /**
114
- * Component: Custom Block
115
- * -------------------------------------------------------------------------- */
116
-
117
- :root {
118
- --vp-custom-block-tip-border: transparent;
119
- --vp-custom-block-tip-text: var(--vp-c-text-1);
120
- --vp-custom-block-tip-bg: var(--vp-c-brand-soft);
121
- --vp-custom-block-tip-code-bg: var(--vp-c-brand-soft);
122
- }
123
-
124
- /**
125
- * Component: Algolia
126
- * -------------------------------------------------------------------------- */
127
-
128
- .DocSearch {
129
- --docsearch-primary-color: var(--vp-c-brand-1) !important;
130
- }