binary-collections 2.0.11 → 2.0.12

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 (225) hide show
  1. package/.opencode/package.json +5 -0
  2. package/binaries/rmx +15 -1
  3. package/binaries/rmx.cmd +12 -0
  4. package/binaries/test-cjs +9 -1
  5. package/binaries/test-cjs.cmd +16 -1
  6. package/binaries/test-esm +16 -0
  7. package/binaries/test-esm.cjs +178 -0
  8. package/binaries/test-esm.cmd +23 -0
  9. package/binaries/yarn-clean +1 -1
  10. package/binaries/yarn-clean.cmd +1 -1
  11. package/binaries/yarn-clean.py +33 -15
  12. package/binaries/yc +110 -0
  13. package/binaries/yc.cjs +178 -0
  14. package/lib/binary-collections/config.cjs +126 -0
  15. package/lib/binary-collections/config.mjs +7 -0
  16. package/lib/binary-collections/executeScript.cjs +19 -0
  17. package/lib/binary-collections/executeScript.d.cts +12 -0
  18. package/lib/binary-collections/executeScript.mjs +6 -0
  19. package/lib/binary-collections/findScript.cjs +284 -0
  20. package/lib/binary-collections/findScript.d.cts +12 -0
  21. package/lib/binary-collections/findScript.mjs +7 -0
  22. package/lib/binary-collections/listScript.cjs +266 -0
  23. package/lib/binary-collections/listScript.d.cts +19 -0
  24. package/lib/binary-collections/listScript.mjs +7 -0
  25. package/lib/binary-collections.cjs +224 -137
  26. package/lib/binary-collections.mjs +22 -282
  27. package/lib/changelog.cjs +2 -2
  28. package/lib/changelog.mjs +1 -1
  29. package/lib/{chunk-AJDD5DZM.mjs → chunk-2LSRSEXF.mjs} +1 -1
  30. package/lib/{chunk-Z6JLYU2J.mjs → chunk-5RTXZVCW.mjs} +2 -2
  31. package/lib/{chunk-XA3SNBPA.mjs → chunk-66KDU4TX.mjs} +93 -9
  32. package/lib/chunk-6PU7BAHB.mjs +61 -0
  33. package/lib/chunk-C6D2TTYU.mjs +32 -0
  34. package/lib/chunk-FB2WKVJD.mjs +158 -0
  35. package/lib/{chunk-NCXAP7AA.mjs → chunk-G5UUEWUO.mjs} +9 -5
  36. package/lib/{chunk-N436BNBK.mjs → chunk-GAGABICI.mjs} +19 -13
  37. package/lib/chunk-H44UWUFY.mjs +105 -0
  38. package/lib/chunk-NCZPTKDV.mjs +79 -0
  39. package/lib/chunk-NGFK3EYW.mjs +28 -0
  40. package/lib/chunk-NVEG3LEZ.mjs +143 -0
  41. package/lib/chunk-OGXVGBRI.mjs +29 -0
  42. package/lib/chunk-OXV52GD5.mjs +62 -0
  43. package/lib/chunk-PXBMHE7O.mjs +35 -0
  44. package/lib/chunk-R5FJOR63.mjs +47 -0
  45. package/lib/chunk-SPTECFE5.mjs +180 -0
  46. package/lib/chunk-UXCFNAR6.mjs +55 -0
  47. package/lib/chunk-V2IBPCEV.mjs +39 -0
  48. package/lib/chunk-XPJGCDOD.mjs +14 -0
  49. package/lib/chunk-ZOWVMII3.mjs +228 -0
  50. package/lib/clean-github-actions-caches-cli.cjs +465 -0
  51. package/lib/clean-github-actions-caches-cli.d.cts +1 -0
  52. package/lib/clean-github-actions-caches-cli.mjs +56 -0
  53. package/lib/clean-github-actions-caches.cjs +149 -205
  54. package/lib/clean-github-actions-caches.d.cts +15 -1
  55. package/lib/clean-github-actions-caches.mjs +4 -130
  56. package/lib/cross-env/command.cjs +63 -0
  57. package/lib/cross-env/command.d.ts +8 -0
  58. package/lib/cross-env/command.js +45 -0
  59. package/lib/cross-env/command.mjs +9 -0
  60. package/lib/cross-env/index.cjs +178 -0
  61. package/lib/cross-env/index.d.ts +8 -0
  62. package/lib/cross-env/index.js +102 -0
  63. package/lib/cross-env/index.mjs +101 -0
  64. package/lib/cross-env/variable.cjs +60 -0
  65. package/lib/cross-env/variable.d.ts +7 -0
  66. package/lib/cross-env/variable.js +59 -0
  67. package/lib/cross-env/variable.mjs +9 -0
  68. package/lib/del-gradle.cjs +2 -2
  69. package/lib/del-gradle.js +8 -8
  70. package/lib/del-gradle.mjs +1 -1
  71. package/lib/del-node-modules.js +24 -24
  72. package/lib/del-ps.cjs +2 -2
  73. package/lib/del-ps.js +8 -8
  74. package/lib/del-ps.mjs +1 -1
  75. package/lib/del-yarn-caches.cjs +2 -2
  76. package/lib/del-yarn-caches.js +2 -2
  77. package/lib/del-yarn-caches.mjs +1 -1
  78. package/lib/file/copy-cli.cjs +92 -0
  79. package/lib/file/copy-cli.d.mts +1 -0
  80. package/lib/file/copy-cli.mjs +55 -0
  81. package/lib/file/copy.cjs +56 -0
  82. package/lib/file/copy.d.mts +1 -0
  83. package/lib/file/copy.mjs +8 -0
  84. package/lib/file/move-cli.cjs +91 -0
  85. package/lib/file/move-cli.d.mts +1 -0
  86. package/lib/file/move-cli.mjs +55 -0
  87. package/lib/file/move.cjs +55 -0
  88. package/lib/file/move.d.mts +1 -0
  89. package/lib/file/move.mjs +8 -0
  90. package/lib/find-node-modules-cli.js +1 -1
  91. package/lib/free-chatgpt.cjs +21 -15
  92. package/lib/free-chatgpt.js +10 -10
  93. package/lib/free-chatgpt.mjs +2 -2
  94. package/lib/git/user-config.cjs +2 -2
  95. package/lib/git/user-config.mjs +2 -2
  96. package/lib/git-diff-cli.cjs +188 -42
  97. package/lib/git-diff-cli.mjs +5 -4
  98. package/lib/git-diff.cjs +188 -42
  99. package/lib/git-diff.d.ts +2 -1
  100. package/lib/git-diff.js +91 -34
  101. package/lib/git-diff.mjs +5 -4
  102. package/lib/git-fix.cjs +2 -2
  103. package/lib/git-fix.mjs +2 -2
  104. package/lib/git-purge.cjs +2 -2
  105. package/lib/git-purge.mjs +1 -1
  106. package/lib/index.d.ts +1 -1
  107. package/lib/kill-night-crows.cjs +7 -7
  108. package/lib/kill-night-crows.mjs +7 -7
  109. package/lib/node-cache-cleaner/npm.cjs +65 -0
  110. package/lib/node-cache-cleaner/npm.d.ts +2 -0
  111. package/lib/node-cache-cleaner/npm.js +41 -0
  112. package/lib/node-cache-cleaner/npm.mjs +10 -0
  113. package/lib/node-cache-cleaner/npx.cjs +89 -0
  114. package/lib/node-cache-cleaner/npx.d.ts +4 -0
  115. package/lib/node-cache-cleaner/npx.js +82 -0
  116. package/lib/{ps/index.d.mjs → node-cache-cleaner/npx.mjs} +6 -5
  117. package/lib/node-cache-cleaner/yarn.cjs +73 -0
  118. package/lib/node-cache-cleaner/yarn.d.ts +2 -0
  119. package/lib/node-cache-cleaner/yarn.js +62 -0
  120. package/lib/node-cache-cleaner/yarn.mjs +10 -0
  121. package/lib/node-cache-cleaner-cli.cjs +182 -0
  122. package/lib/node-cache-cleaner-cli.d.ts +2 -0
  123. package/lib/node-cache-cleaner-cli.js +60 -0
  124. package/lib/node-cache-cleaner-cli.mjs +56 -0
  125. package/lib/node-executor.cjs +91 -0
  126. package/lib/node-executor.d.cts +2 -0
  127. package/lib/node-executor.mjs +103 -0
  128. package/lib/npm-run-series.cjs +21 -28
  129. package/lib/npm-run-series.mjs +20 -6
  130. package/lib/package-resolutions-updater-cli.cjs +213 -128
  131. package/lib/package-resolutions-updater-cli.mjs +17 -39
  132. package/lib/package-resolutions-updater.cjs +204 -98
  133. package/lib/package-resolutions-updater.d.mts +20 -1
  134. package/lib/package-resolutions-updater.mjs +7 -5
  135. package/lib/print-directory-tree.cjs +2 -2
  136. package/lib/print-directory-tree.mjs +1 -1
  137. package/lib/ps/connected-domain.js +10 -10
  138. package/lib/ps/index.cjs +1 -1
  139. package/lib/ps/index.mjs +177 -171
  140. package/lib/ps/isWin.js +1 -1
  141. package/lib/ps/table-parser.js +6 -6
  142. package/lib/remove-module.cjs +2 -2
  143. package/lib/remove-module.mjs +1 -1
  144. package/lib/rm-node-module-cli.cjs +222 -0
  145. package/lib/rm-node-module-cli.d.cts +1 -0
  146. package/lib/rm-node-module-cli.mjs +89 -0
  147. package/lib/rm-node-modules.cjs +127 -0
  148. package/lib/rm-node-modules.d.cts +35 -0
  149. package/lib/{binary-collections-config.mjs → rm-node-modules.mjs} +3 -3
  150. package/lib/rmpath.cjs +2 -2
  151. package/lib/rmpath.mjs +1 -1
  152. package/lib/submodule-install.cjs +47 -34
  153. package/lib/submodule-install.mjs +46 -33
  154. package/lib/submodule-remove-cli.cjs +1 -2
  155. package/lib/submodule-remove-cli.js +3 -3
  156. package/lib/submodule-remove-cli.mjs +1 -2
  157. package/lib/utils/chatgpt.cjs +19 -13
  158. package/lib/utils/chatgpt.js +94 -94
  159. package/lib/utils/chatgpt.mjs +1 -1
  160. package/lib/utils/findEnvFiles.cjs +28 -46
  161. package/lib/utils/findEnvFiles.d.cts +19 -0
  162. package/lib/utils/findEnvFiles.mjs +3 -5
  163. package/lib/utils/findWorkspaceRoot.js +4 -4
  164. package/lib/utils/index.cjs +2 -2
  165. package/lib/utils/index.mjs +1 -1
  166. package/lib/utils/isGithubTokenValid.js +7 -7
  167. package/lib/{ps/index.d.cjs → utils/isWindows.cjs} +17 -3
  168. package/lib/utils/isWindows.d.ts +5 -0
  169. package/lib/utils/isWindows.js +10 -0
  170. package/lib/utils/isWindows.mjs +8 -0
  171. package/lib/utils/runBash.cjs +53 -0
  172. package/lib/utils/runBash.d.cts +12 -0
  173. package/lib/utils/runBash.mjs +66 -0
  174. package/lib/yarn-per-branch-lock-installer.cjs +97 -0
  175. package/lib/yarn-per-branch-lock-installer.d.cts +2 -0
  176. package/lib/yarn-per-branch-lock-installer.mjs +109 -0
  177. package/lib/yarn-reinstall.cjs +2 -2
  178. package/lib/yarn-reinstall.mjs +1 -1
  179. package/package.json +61 -52
  180. package/readme.html +784 -0
  181. package/readme.md +106 -218
  182. package/releases/readme.md +1 -1
  183. package/test/README.md +2 -2
  184. package/test-project/package.json +8 -2
  185. package/test-project/workspaces/workspace-a/package.json +135 -0
  186. package/test-project/workspaces/workspace-a/readme.md +20 -0
  187. package/test-project/workspaces/workspace-a/release/readme.md +42 -0
  188. package/test-project/workspaces/workspace-a/test/demo/package.json +25 -0
  189. package/test-project/workspaces/workspace-a/test/readme.md +12 -0
  190. package/test-project/workspaces/workspace-b/package.json +139 -0
  191. package/test-project/workspaces/workspace-b/readme.md +94 -0
  192. package/test-project/workspaces/workspace-b/requirements.txt +1 -0
  193. package/test-project/workspaces/workspace-b/test/sample-project/package.json +7 -0
  194. package/test-project/workspaces/workspace-b/themes/hexo-theme-flowbite/package.json +96 -0
  195. package/test-project/workspaces/workspace-b/themes/hexo-theme-flowbite/readme.md +156 -0
  196. package/tmp/rm-node-modules-test-project/package.json +17 -0
  197. package/tmp/rm-node-modules-test-project/packages/workspace-a/package.json +16 -0
  198. package/tmp/rm-node-modules-test-project/packages/workspace-b/package.json +16 -0
  199. package/tmp/test-repo/README.md +2 -35
  200. package/tmp/test-repo/package.json +13 -3
  201. package/docs-src/clean-github-actions-caches.md +0 -26
  202. package/docs-src/free-chatgpt.md +0 -26
  203. package/lib/binary-collections-config.cjs +0 -15
  204. package/lib/chunk-2CBJCW7E.mjs +0 -81
  205. package/lib/chunk-4UHL4WVN.mjs +0 -136
  206. package/lib/chunk-66PAU5PS.mjs +0 -31
  207. package/lib/chunk-6HHJRKFB.mjs +0 -59
  208. package/lib/chunk-7XTEJHOE.mjs +0 -193
  209. package/lib/chunk-FCDQGYBF.mjs +0 -136
  210. package/lib/chunk-GEYA2USY.mjs +0 -207
  211. package/lib/chunk-GJTGHXRA.mjs +0 -356
  212. package/lib/chunk-ID2WBTE2.mjs +0 -80
  213. package/lib/chunk-JXFOHKDM.mjs +0 -239
  214. package/lib/chunk-PDSXF5HY.mjs +0 -187
  215. package/lib/chunk-RWLXRTYP.mjs +0 -109
  216. package/lib/chunk-TOIVAQF7.mjs +0 -136
  217. package/lib/chunk-V5SKYJUB.mjs +0 -136
  218. package/lib/chunk-WSRETQCA.mjs +0 -59
  219. package/lib/chunk-YYLIQQKF.mjs +0 -31
  220. package/lib/ps/index.d.ts +0 -2
  221. package/lib/ps/index.js +0 -254
  222. package/lib/utils/findEnvFiles.d.ts +0 -8
  223. package/lib/utils/findEnvFiles.js +0 -121
  224. package/tmp/typedoc/readme.md +0 -320
  225. /package/lib/{binary-collections-config.d.cts → binary-collections/config.d.cts} +0 -0
@@ -0,0 +1,5 @@
1
+ {
2
+ "dependencies": {
3
+ "@opencode-ai/plugin": "1.15.10"
4
+ }
5
+ }
package/binaries/rmx CHANGED
@@ -55,16 +55,30 @@ rm -rf "$1" &
55
55
 
56
56
  # vowels=( a i u e o A I U E O )
57
57
  vowels=( a i u e o A I U E O 0 1 2 3 4 5 6 7 8 9 _ - . )
58
+
59
+ max_jobs=4 # set the maximum number of concurrent jobs
60
+
58
61
  for letter in {{a..z},{A..Z}}; do
59
62
  for vowel in "${vowels[@]}"; do
63
+
60
64
  toBeDeleted=( "$1/.${letter}*" "$1/@${letter}*" "$1/${letter}*" "$1/@${letter}${vowel}*" "$1/.${letter}${vowel}*" "$1/${letter}${vowel}*" )
65
+
61
66
  shuffled=( $(shuf -e "${toBeDeleted[@]}") )
67
+
62
68
  for fpath in "${shuffled[@]}"; do
69
+
63
70
  if [ -d "$1" ]; then
71
+
72
+ # wait for a slot to be free if we have reached the maximum number of concurrent jobs
73
+ while (( $(jobs -rp | wc -l) >= max_jobs )); do
74
+ wait -n
75
+ done
76
+
64
77
  rm -rf $fpath && echo "removed $fpath" || echo "cannot delete $fpath" &
78
+
65
79
  fi
66
80
  done
67
81
  done
68
82
  done
69
83
 
70
- wait
84
+ wait
@@ -0,0 +1,12 @@
1
+ @echo off
2
+ setlocal
3
+
4
+ set "SCRIPT_DIR=%~dp0"
5
+
6
+ where bash >nul 2>&1
7
+ if errorlevel 1 (
8
+ echo Error: bash not found in PATH.
9
+ exit /b 1
10
+ )
11
+
12
+ bash "%SCRIPT_DIR%rmx" %*
package/binaries/test-cjs CHANGED
@@ -1,10 +1,18 @@
1
1
  #!/usr/bin/env bash
2
2
 
3
+ # Detect GitHub Actions or GitLab CI
4
+ CI_ARG=""
5
+
6
+ if [[ -n "${GITHUB_ACTIONS:-}" || -n "${GITLAB_CI:-}" ]]; then
7
+ CI_ARG="--ci"
8
+ fi
9
+
3
10
  # Run Jest while forwarding all arguments
4
- npx jest \
11
+ npx -y jest \
5
12
  --runInBand \
6
13
  --forceExit \
7
14
  --testTimeout=120000 \
8
15
  --testPathIgnorePatterns="\\.mjs$" \
9
16
  --detectOpenHandles \
17
+ ${CI_ARG:+$CI_ARG} \
10
18
  "$@"
@@ -1,11 +1,26 @@
1
1
  @echo off
2
+ setlocal
3
+
4
+ :: Detect GitHub Actions or GitLab CI
5
+ set "CI_ARG="
6
+
7
+ if defined GITHUB_ACTIONS (
8
+ set "CI_ARG=--ci"
9
+ )
10
+
11
+ if defined GITLAB_CI (
12
+ set "CI_ARG=--ci"
13
+ )
2
14
 
3
15
  :: Run the specific Jest test file while ignoring .mjs files.
4
16
  :: Use caret (^) for line continuation in Windows CMD.
5
- npx jest ^
17
+ npx -y jest ^
6
18
  --runInBand ^
7
19
  --forceExit ^
8
20
  --testTimeout=120000 ^
9
21
  --testPathIgnorePatterns="\\.mjs$" ^
10
22
  --detectOpenHandles ^
23
+ %CI_ARG% ^
11
24
  %*
25
+
26
+ endlocal
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env bash
2
+
3
+ # Detect GitHub Actions or GitLab CI
4
+ CI_ARG=""
5
+
6
+ if [[ -n "${GITHUB_ACTIONS:-}" || -n "${GITLAB_CI:-}" ]]; then
7
+ CI_ARG="--ci"
8
+ fi
9
+
10
+ node --experimental-vm-modules node_modules/jest/bin/jest.js \
11
+ --runInBand \
12
+ --forceExit \
13
+ --testTimeout=120000 \
14
+ --testPathIgnorePatterns="\\.(ts|js|cjs)$" \
15
+ ${CI_ARG:+$CI_ARG} \
16
+ "$@"
@@ -0,0 +1,178 @@
1
+ #!/usr/bin/env node
2
+
3
+ /**
4
+ * Built-in Node.js modules:
5
+ *
6
+ * - child_process:
7
+ * Used to launch external scripts/programs.
8
+ *
9
+ * - path:
10
+ * Safely handles file paths across operating systems.
11
+ *
12
+ * - fs:
13
+ * Used to check whether files exist.
14
+ */
15
+ const { spawnSync } = require("child_process");
16
+ const path = require("path");
17
+ const fs = require("fs");
18
+
19
+ /**
20
+ * __dirname
21
+ * Absolute directory path of this launcher script.
22
+ *
23
+ * __filename
24
+ * Absolute path of this launcher file itself.
25
+ *
26
+ * base
27
+ * Filename without extension.
28
+ *
29
+ * Example:
30
+ * File = "/tools/mytool.js"
31
+ *
32
+ * binDir = "/tools"
33
+ * base = "mytool"
34
+ */
35
+ const binDir = __dirname;
36
+ const base = path.basename(__filename, path.extname(__filename));
37
+
38
+ /**
39
+ * Determine which script extensions to search for
40
+ * based on the current operating system.
41
+ *
42
+ * Windows:
43
+ * .cmd
44
+ * .bat
45
+ * .ps1
46
+ * .vbs
47
+ *
48
+ * Linux/macOS:
49
+ * .sh
50
+ * executable file without extension
51
+ */
52
+ const candidates = process.platform === "win32" ? [".cmd", ".bat", ".ps1", ".vbs"] : [".sh", ""];
53
+
54
+ /**
55
+ * Search for the first matching script
56
+ * in the same directory as this launcher.
57
+ *
58
+ * Example:
59
+ * If base = "mytool"
60
+ *
61
+ * Windows checks:
62
+ * mytool.cmd
63
+ * mytool.bat
64
+ * mytool.ps1
65
+ * mytool.vbs
66
+ *
67
+ * Linux/macOS checks:
68
+ * mytool.sh
69
+ * mytool
70
+ */
71
+ let found = null;
72
+
73
+ for (const ext of candidates) {
74
+ const script = path.join(binDir, base + ext);
75
+
76
+ if (fs.existsSync(script)) {
77
+ found = script;
78
+ break;
79
+ }
80
+ }
81
+
82
+ /**
83
+ * If no matching script was found,
84
+ * print an error and exit with failure code 1.
85
+ */
86
+ if (!found) {
87
+ console.error(`No script found for ${base} in ${binDir}`);
88
+ process.exit(1);
89
+ }
90
+
91
+ /**
92
+ * Detect special script types
93
+ * that require a shell/interpreter.
94
+ */
95
+ const isPs1 = found.endsWith(".ps1");
96
+ const isCmd = found.endsWith(".cmd");
97
+
98
+ /**
99
+ * cmd
100
+ * The executable program to launch.
101
+ *
102
+ * args
103
+ * Arguments passed to the executable.
104
+ */
105
+ let cmd, args;
106
+
107
+ /**
108
+ * PowerShell scripts:
109
+ *
110
+ * Run through powershell.exe because .ps1 files
111
+ * are not directly executable like binaries.
112
+ *
113
+ * Flags:
114
+ * -NoProfile
115
+ * Prevent loading user profile scripts.
116
+ *
117
+ * -ExecutionPolicy Bypass
118
+ * Allow script execution even if policy blocks it.
119
+ *
120
+ * -File
121
+ * Specifies the script to execute.
122
+ *
123
+ * process.argv.slice(2)
124
+ * Forward all user-provided command-line arguments.
125
+ */
126
+ if (isPs1) {
127
+ cmd = "powershell.exe";
128
+
129
+ args = ["-NoProfile", "-ExecutionPolicy", "Bypass", "-File", found, ...process.argv.slice(2)];
130
+
131
+ /**
132
+ * CMD batch files:
133
+ *
134
+ * Run through cmd.exe using:
135
+ * /c
136
+ * which means:
137
+ * "execute command and terminate"
138
+ */
139
+ } else if (isCmd) {
140
+ cmd = "cmd.exe";
141
+
142
+ args = ["/c", found, ...process.argv.slice(2)];
143
+
144
+ /**
145
+ * Other scripts:
146
+ *
147
+ * Usually:
148
+ * - shell scripts (.sh)
149
+ * - executable binaries
150
+ *
151
+ * These can be executed directly.
152
+ */
153
+ } else {
154
+ cmd = found;
155
+ args = process.argv.slice(2);
156
+ }
157
+
158
+ /**
159
+ * Execute the selected script synchronously.
160
+ *
161
+ * stdio: "inherit"
162
+ * Shares the current terminal with the child process,
163
+ * so stdout/stderr/input behave normally.
164
+ *
165
+ * spawnSync waits until the child process exits.
166
+ */
167
+ const result = spawnSync(cmd, args, {
168
+ stdio: "inherit"
169
+ });
170
+
171
+ /**
172
+ * Exit using the same exit code
173
+ * returned by the child process.
174
+ *
175
+ * If result.status is null/undefined,
176
+ * default to exit code 1.
177
+ */
178
+ process.exit(result.status ?? 1);
@@ -0,0 +1,23 @@
1
+ @echo off
2
+ setlocal
3
+
4
+ :: Detect GitHub Actions or GitLab CI
5
+ set "CI_ARG="
6
+
7
+ if defined GITHUB_ACTIONS (
8
+ set "CI_ARG=--ci"
9
+ )
10
+
11
+ if defined GITLAB_CI (
12
+ set "CI_ARG=--ci"
13
+ )
14
+
15
+ node --experimental-vm-modules node_modules/jest/bin/jest.js ^
16
+ --runInBand ^
17
+ --forceExit ^
18
+ --testTimeout=120000 ^
19
+ --testPathIgnorePatterns="\\.(ts|js|cjs)$" ^
20
+ %CI_ARG% ^
21
+ %*
22
+
23
+ endlocal
@@ -29,4 +29,4 @@ fi
29
29
 
30
30
  echo "Using script: $TARGET"
31
31
 
32
- python "$TARGET" "$@"
32
+ "$SCRIPT_DIR/py" "$TARGET" "$@"
@@ -27,4 +27,4 @@ if "%TARGET%"=="" (
27
27
  echo Using script: %TARGET%
28
28
 
29
29
  REM Run Python script with all arguments
30
- python "%TARGET%" %*
30
+ "%SCRIPT_DIR%py.cmd" "%TARGET%" %*
@@ -9,6 +9,15 @@ import glob
9
9
  from typing import Union
10
10
 
11
11
 
12
+ # -------------------------
13
+ # IGNORE RULES
14
+ # -------------------------
15
+ IGNORE_DIR_NAMES = {".git", "tmp", "dist", "build", "out", "coverage", ".cache"}
16
+
17
+
18
+ # -------------------------
19
+ # DELETE HELPERS
20
+ # -------------------------
12
21
  def delete_dir(path: Path) -> tuple[str, Path]:
13
22
  shutil.rmtree(path, ignore_errors=True)
14
23
  return ("dir", path)
@@ -19,6 +28,9 @@ def delete_file(path: Path) -> tuple[str, Path]:
19
28
  return ("file", path)
20
29
 
21
30
 
31
+ # -------------------------
32
+ # CLEAN FUNCTION
33
+ # -------------------------
22
34
  def clean(base_dir: Union[str, Path]) -> None:
23
35
  root = Path(base_dir).resolve()
24
36
 
@@ -27,14 +39,20 @@ def clean(base_dir: Union[str, Path]) -> None:
27
39
 
28
40
  print(f"Scanning: {root}")
29
41
 
30
- # Collect targets
31
42
  for current_root, dirs, files in os.walk(root, topdown=True):
32
43
  current = Path(current_root)
33
44
 
45
+ # -------------------------
46
+ # IGNORE DIRECTORIES
47
+ # -------------------------
48
+ dirs[:] = [
49
+ d for d in dirs
50
+ if d not in IGNORE_DIR_NAMES and not d.startswith(".deploy_")
51
+ ]
52
+
53
+ # Skip node_modules scanning deeper
34
54
  if "node_modules" in dirs:
35
55
  node_modules_dirs.append(current / "node_modules")
36
-
37
- # Prevent recursive scan into node_modules
38
56
  dirs.remove("node_modules")
39
57
 
40
58
  if "yarn.lock" in files:
@@ -71,15 +89,13 @@ def clean(base_dir: Union[str, Path]) -> None:
71
89
  print(f"Deleted yarn.lock: {deleted_files}")
72
90
 
73
91
 
92
+ # -------------------------
93
+ # WORKSPACE COLLECTOR
94
+ # -------------------------
74
95
  def collect_workspace_dirs(
75
96
  start_root: Union[str, Path],
76
97
  include_start_root: bool = False,
77
98
  ) -> list[Path]:
78
- """Return workspace package directories sorted by longest path first.
79
-
80
- This walks workspace globs declared in each package.json it finds,
81
- recursively, stopping at directories already visited to avoid cycles.
82
- """
83
99
  visited = set()
84
100
  results = set()
85
101
 
@@ -120,7 +136,7 @@ def collect_workspace_dirs(
120
136
  for m in matches:
121
137
  p = Path(m)
122
138
 
123
- # Skip symlinked package directories; do not follow them
139
+ # skip symlinks
124
140
  if p.is_symlink():
125
141
  continue
126
142
 
@@ -129,20 +145,22 @@ def collect_workspace_dirs(
129
145
  if p_res.is_dir() and p_res not in visited:
130
146
  stack.append(p_res)
131
147
 
132
- return sorted(
133
- results,
134
- key=lambda p: (len(p.parts), str(p)),
135
- reverse=True,
136
- )
148
+ return sorted(results, key=lambda p: (len(p.parts), str(p)), reverse=True)
137
149
 
138
150
 
151
+ # -------------------------
152
+ # MAIN
153
+ # -------------------------
139
154
  if __name__ == "__main__":
140
155
  workspace_dirs = collect_workspace_dirs(Path("."))
156
+
141
157
  for d in workspace_dirs:
142
158
  if Path(d / "node_modules").is_dir() or (d / "yarn.lock").is_file():
143
159
  print(f"Cleaning workspace package: {d}")
144
160
  clean(d)
145
161
  else:
146
162
  print(f"Skipping workspace package (no node_modules or yarn.lock): {d}")
163
+
164
+ # root cleanup
147
165
  shutil.rmtree(Path(".") / "node_modules", ignore_errors=True)
148
- (Path(".") / "yarn.lock").unlink(missing_ok=True)
166
+ (Path(".") / "yarn.lock").unlink(missing_ok=True)
package/binaries/yc ADDED
@@ -0,0 +1,110 @@
1
+ #!/bin/bash
2
+ set -u
3
+
4
+ cwd="$(pwd)"
5
+ max_jobs=4
6
+
7
+ # colors
8
+ GREEN='\033[0;32m'
9
+ RED='\033[0;31m'
10
+ GRAY='\033[0;90m'
11
+ BLUE='\033[0;34m'
12
+ NC='\033[0m'
13
+
14
+ timestamp() {
15
+ date "+%Y-%m-%d %H:%M:%S"
16
+ }
17
+
18
+ relative_path() {
19
+ local path="$1"
20
+
21
+ path="${path#"$cwd"/}"
22
+
23
+ [[ "$path" == "$cwd" ]] && path="."
24
+
25
+ echo "$path"
26
+ }
27
+
28
+ log() {
29
+ local level="$1"
30
+ shift
31
+
32
+ local color="$NC"
33
+
34
+ case "$level" in
35
+ OK) color="$GREEN" ;;
36
+ FAIL) color="$RED" ;;
37
+ SKIP) color="$GRAY" ;;
38
+ INFO) color="$BLUE" ;;
39
+ esac
40
+
41
+ echo -e "${color}[$(timestamp)] [$level] $*${NC}"
42
+ }
43
+
44
+ cleanup_letter() {
45
+ local letter="$1"
46
+
47
+ shopt -s nullglob
48
+
49
+ local targets=(
50
+ "${cwd}/node_modules/${letter}"*
51
+ "${cwd}/node_modules/@types/${letter}"*
52
+ "${cwd}/node_modules/@${letter}"*
53
+ )
54
+
55
+ local removed_any=0
56
+
57
+ for path in "${targets[@]}"; do
58
+ local rel
59
+ rel="$(relative_path "$path")"
60
+
61
+ if rm -rf "$path"; then
62
+ log OK "$rel"
63
+ removed_any=1
64
+ else
65
+ log FAIL "$rel"
66
+ fi
67
+ done
68
+
69
+ if (( removed_any == 0 )); then
70
+ log SKIP "'${letter}'"
71
+ fi
72
+ }
73
+
74
+ export -f cleanup_letter
75
+ export -f log
76
+ export -f timestamp
77
+ export -f relative_path
78
+
79
+ export cwd
80
+ export GREEN RED GRAY BLUE NC
81
+
82
+ log INFO "Cleaning $(relative_path "${cwd}/node_modules")"
83
+
84
+ running=0
85
+
86
+ for letter in $(printf "%s\n" {a..z} | shuf); do
87
+ cleanup_letter "$letter" &
88
+
89
+ ((running++))
90
+
91
+ if (( running >= max_jobs )); then
92
+ wait -n
93
+ ((running--))
94
+ fi
95
+ done
96
+
97
+ wait
98
+
99
+ log INFO "Removing remaining node_modules"
100
+
101
+ final_target="${cwd}/node_modules"
102
+ final_rel="$(relative_path "$final_target")"
103
+
104
+ if rm -rf "$final_target"; then
105
+ log OK "$final_rel"
106
+ else
107
+ log FAIL "$final_rel"
108
+ fi
109
+
110
+ log INFO "Done"