@pezkuwi/dev 0.85.1 → 0.85.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.
Files changed (66) hide show
  1. package/.skip-deno +0 -0
  2. package/README.md +547 -0
  3. package/config/eslint.rules.js +1 -1
  4. package/package.json +19 -241
  5. package/scripts/pezkuwi-ci-ghact-build.mjs +4 -0
  6. package/tsconfig.build.json +18 -0
  7. package/tsconfig.build.tsbuildinfo +1 -0
  8. package/tsconfig.config.json +14 -0
  9. package/tsconfig.config.tsbuildinfo +1 -0
  10. package/tsconfig.scripts.json +14 -0
  11. package/tsconfig.scripts.tsbuildinfo +1 -0
  12. package/tsconfig.spec.json +18 -0
  13. package/tsconfig.spec.tsbuildinfo +1 -0
  14. package/LICENSE +0 -201
  15. package/cjs/detectOther.d.ts +0 -2
  16. package/cjs/detectOther.js +0 -3
  17. package/cjs/index.d.ts +0 -1
  18. package/cjs/index.js +0 -3
  19. package/cjs/package.json +0 -3
  20. package/cjs/packageInfo.d.ts +0 -6
  21. package/cjs/packageInfo.js +0 -4
  22. package/cjs/root.d.ts +0 -2
  23. package/cjs/root.js +0 -6
  24. package/cjs/rootJs/Clazz.d.ts +0 -18
  25. package/cjs/rootJs/Clazz.js +0 -36
  26. package/cjs/rootJs/Jsx.d.ts +0 -5
  27. package/cjs/rootJs/Jsx.js +0 -16
  28. package/cjs/rootJs/JsxChild.d.ts +0 -9
  29. package/cjs/rootJs/JsxChild.js +0 -9
  30. package/cjs/rootJs/augmented.d.ts +0 -8
  31. package/cjs/rootJs/augmented.js +0 -3
  32. package/cjs/rootJs/index.d.ts +0 -19
  33. package/cjs/rootJs/index.js +0 -51
  34. package/cjs/rootTests.d.ts +0 -2
  35. package/cjs/rootTests.js +0 -44
  36. package/cjs/sample.d.ts +0 -1
  37. package/cjs/sample.js +0 -4
  38. package/cjs/types.d.ts +0 -2
  39. package/cjs/types.js +0 -2
  40. package/detectOther.d.ts +0 -2
  41. package/detectOther.js +0 -1
  42. package/index.d.ts +0 -1
  43. package/index.js +0 -2
  44. package/package.json.new +0 -315
  45. package/packageInfo.d.ts +0 -6
  46. package/packageInfo.js +0 -1
  47. package/root.d.ts +0 -2
  48. package/root.js +0 -2
  49. package/rootJs/Clazz.d.ts +0 -18
  50. package/rootJs/Clazz.js +0 -32
  51. package/rootJs/Jsx.d.ts +0 -5
  52. package/rootJs/Jsx.js +0 -13
  53. package/rootJs/JsxChild.d.ts +0 -9
  54. package/rootJs/JsxChild.js +0 -6
  55. package/rootJs/augmented.d.ts +0 -8
  56. package/rootJs/augmented.js +0 -2
  57. package/rootJs/dynamic.d.mts +0 -8
  58. package/rootJs/dynamic.mjs +0 -13
  59. package/rootJs/index.d.ts +0 -19
  60. package/rootJs/index.js +0 -39
  61. package/rootJs/testJson.json +0 -5
  62. package/rootStatic/zagros.svg +0 -1
  63. package/rootTests.d.ts +0 -2
  64. package/rootTests.js +0 -41
  65. package/types.d.ts +0 -2
  66. package/types.js +0 -1
package/.skip-deno ADDED
File without changes
package/README.md ADDED
@@ -0,0 +1,547 @@
1
+ # @pezkuwi/dev
2
+
3
+ A collection of shared CI scripts and development environment (configuration, dependencies) used by [@pezkuwi](https://pezkuwi.js.org) projects.
4
+
5
+ # Scripts
6
+
7
+ ## pezkuwi-ci-ghact-build
8
+
9
+ **Summary**:
10
+ This script automates the continuous integration (CI) process for building, testing, versioning, and publishing packages in the repository. It handles tasks like cleaning the workspace, running tests, updating versions, publishing to npm, GitHub repositories, and Deno, and generating changelogs.
11
+
12
+ ### CLI Arguments
13
+
14
+ - **`--skip-beta`**:
15
+ Prevents incrementing the version to a beta release.
16
+
17
+ ### Usage
18
+
19
+ ```bash
20
+ yarn pezkuwi-ci-ghact-build [options]
21
+ ```
22
+
23
+ ## pezkuwi-ci-ghact-docs
24
+
25
+ **Summary**:
26
+ This script generates documentation for the repository and deploys it to GitHub Pages. It ensures the documentation is built and published with the correct configuration.
27
+
28
+ ### CLI Arguments
29
+
30
+ This script does not accept any CLI arguments.
31
+
32
+ ### Usage
33
+
34
+ ```bash
35
+ yarn pezkuwi-ci-ghact-docs
36
+ ```
37
+
38
+ ## pezkuwi-ci-ghpages-force
39
+
40
+ **Summary**:
41
+ This script force-refreshes the `gh-pages` branch of the repository by creating a new orphan branch, resetting its contents, and pushing it to GitHub. It ensures a clean state for GitHub Pages deployment.
42
+
43
+ ### CLI Arguments
44
+
45
+ This script does not accept any CLI arguments.
46
+
47
+ ### Usage
48
+
49
+ ```bash
50
+ yarn pezkuwi-ci-ghpages-force
51
+ ```
52
+
53
+ ## pezkuwi-dev-build-docs
54
+
55
+ **Summary**:
56
+ This script prepares the documentation for building by copying the `docs` directory to a `build-docs` directory. If the `build-docs` directory already exists, it is cleared before copying.
57
+
58
+ ### CLI Arguments
59
+
60
+ This script does not accept any CLI arguments.
61
+
62
+ ### Usage
63
+
64
+ ```bash
65
+ yarn pezkuwi-dev-build-docs
66
+ ```
67
+
68
+ ## pezkuwi-dev-build-ts
69
+
70
+ **Summary**:
71
+ This script compiles TypeScript source files into JavaScript outputs using the specified compiler (`tsc`), prepares the build artifacts, rewrites imports for compatibility (e.g., for Deno), lints dependencies, and updates package metadata for distribution. It supports CommonJS, ESM, and Deno outputs, along with configuration validation and export mapping.
72
+
73
+ ### CLI Arguments
74
+
75
+ - **`--compiler <type>`**: Specifies the compiler to use for TypeScript compilation.
76
+ - Acceptable values: `tsc`
77
+ - Default: `tsc`
78
+
79
+ ### Usage
80
+
81
+ ```bash
82
+ yarn pezkuwi-dev-build-ts [options]
83
+ ```
84
+
85
+ ## pezkuwi-dev-circular
86
+
87
+ **Summary**:
88
+ This script checks the project for circular dependencies in TypeScript (`.ts`, `.tsx`) files using the `madge` library. It reports any detected circular dependencies and exits with an error if any are found.
89
+
90
+ ### CLI Arguments
91
+
92
+ This script does not accept any CLI arguments.
93
+
94
+ ```bash
95
+ yarn pezkuwi-dev-circular
96
+ ```
97
+
98
+ ## pezkuwi-dev-clean-build
99
+
100
+ **Summary**:
101
+ This script removes build artifacts and temporary files from the repository. It targets directories like `build` and files such as `tsconfig.*.tsbuildinfo`, ensuring a clean workspace for fresh builds.
102
+
103
+ ### CLI Arguments
104
+
105
+ This script does not accept any CLI arguments.
106
+
107
+ ```bash
108
+ yarn pezkuwi-dev-clean-build
109
+ ```
110
+
111
+ ## pezkuwi-dev-contrib
112
+
113
+ **Summary**:
114
+ This script generates a `CONTRIBUTORS` file by aggregating and listing all contributors to the repository based on the Git commit history. It excludes bot accounts and service-related commits (e.g., GitHub Actions, Travis CI). The output includes the number of contributions, contributor names, and their most recent commit hash.
115
+
116
+ ### CLI Arguments
117
+
118
+ This script does not accept any CLI arguments.
119
+
120
+ ```bash
121
+ yarn pezkuwi-dev-contrib
122
+ ```
123
+
124
+ ## pezkuwi-dev-copy-dir
125
+
126
+ **Summary**:
127
+ This script copies directories from specified source paths to a destination path. It supports options to change the working directory and to flatten the directory structure during copying.
128
+
129
+ ### CLI Arguments
130
+
131
+ - **`--cd <path>`**:
132
+ Specifies a working directory to prepend to the source and destination paths.
133
+
134
+ - **`--flatten`**:
135
+ Copies all files directly to the destination without preserving the source directory structure.
136
+
137
+ ### Usage
138
+
139
+ ```bash
140
+ yarn pezkuwi-dev-copy-dir [options] <source>... <destination>
141
+ ```
142
+ - `<source>`: One or more source directories to copy.
143
+ - `<destination>`: Destination directory for the copied files.
144
+
145
+ ## pezkuwi-dev-copy-to
146
+
147
+ **Summary**:
148
+ This script copies the `build` output and `node_modules` of all packages in the repository to a specified destination directory. It ensures the destination `node_modules` folder exists and is up-to-date.
149
+
150
+ ### CLI Arguments
151
+
152
+ - **`<destination>`**:
153
+ Specifies the target directory where the `node_modules` folder resides.
154
+
155
+ ### Usage
156
+
157
+ ```bash
158
+ yarn pezkuwi-dev-copy-to <destination>
159
+ ```
160
+
161
+ ## pezkuwi-dev-deno-map
162
+
163
+ **Summary**:
164
+ This script generates a `mod.ts` file and an `import_map.json` file for Deno compatibility. It exports all packages with a `mod.ts` file in their `src` directory and maps their paths for use in Deno.
165
+
166
+ ### Outputs
167
+
168
+ - **`mod.ts`**:
169
+ An auto-generated TypeScript module exporting all packages for Deno. If the file does not exist, it is created.
170
+
171
+ - **`import_map.json`**:
172
+ A JSON file mapping package paths to their corresponding Deno-compatible build paths. If an `import_map.in.json` file exists, its mappings are merged into the output.
173
+
174
+ ### CLI Arguments
175
+
176
+ This script does not accept any CLI arguments.
177
+
178
+ ## pezkuwi-dev-run-lint
179
+
180
+ **Summary**:
181
+ This script runs linting and TypeScript checks on the repository. It uses `eslint` for code linting and `tsc` for TypeScript type checking. Specific checks can be skipped using CLI arguments.
182
+
183
+ ### CLI Arguments
184
+
185
+ - **`--skip-eslint`**:
186
+ Skips running `eslint` during the linting process.
187
+
188
+ - **`--skip-tsc`**:
189
+ Skips running the TypeScript (`tsc`) type checker.
190
+
191
+ ### Usage
192
+
193
+ ```bash
194
+ yarn pezkuwi-dev-run-lint [options]
195
+ ```
196
+
197
+ ## pezkuwi-dev-run-node-ts
198
+
199
+ **Summary**:
200
+ This script executes a Node.js script with TypeScript support, using the `@pezkuwi/dev-ts/cached` loader by default. It dynamically handles global and local loaders and allows for additional Node.js flags to be passed.
201
+
202
+ ### CLI Arguments
203
+
204
+ - `<script>`: The TypeScript file to execute.
205
+ - `[args...]`: Arguments to pass to the executed script.
206
+ - Node.js flags, such as `--require`, `--loader`, and `--import`, are also supported and processed as follows:
207
+ - **Global loaders** (e.g., absolute or non-relative paths) are prioritized.
208
+ - The TypeScript loader is inserted after global loaders.
209
+ - **Local loaders** (e.g., relative paths starting with `.`) are appended last.
210
+
211
+ ### Default Behavior
212
+
213
+ - Suppresses warnings using the `--no-warnings` flag.
214
+ - Enables source maps with `--enable-source-maps`.
215
+ - Uses the `@pezkuwi/dev-ts/cached` loader for TypeScript execution.
216
+
217
+ ### Usage
218
+
219
+ ```bash
220
+ yarn pezkuwi-dev-run-node-ts <script> [nodeFlags...] [args...]
221
+ ```
222
+
223
+ Notes:
224
+
225
+ - The execNodeTs function ensures correct ordering of loaders:
226
+ 1. Global loaders are added first.
227
+ 2. The default TypeScript loader is included.
228
+ 3. Local loaders are appended.
229
+ - Global and local loaders can be mixed for flexible runtime configurations.
230
+
231
+ ## pezkuwi-dev-run-test
232
+
233
+ **Summary**:
234
+ This script runs test files in the repository, filtering by file extensions and optional path-based filters. It supports both Node.js and browser environments, custom flags, and development-specific configurations.
235
+
236
+ ### CLI Arguments
237
+
238
+ - **`--dev-build`**:
239
+ Enables development mode, using local development builds for dependencies and loaders.
240
+
241
+ - **`--env <environment>`**:
242
+ Specifies the test environment.
243
+ - Acceptable values: `node`, `browser`
244
+ - Default: `node`
245
+
246
+ - **`--bail`**:
247
+ Stops the test suite on the first failure.
248
+
249
+ - **`--console`**:
250
+ Enables console output during tests.
251
+
252
+ - **`--logfile <file>`**:
253
+ Specifies a log file to capture test output.
254
+
255
+ - **`--import <module>`**:
256
+ Imports the specified module.
257
+
258
+ - **`--loader <loader>`**:
259
+ Specifies a custom Node.js loader.
260
+
261
+ - **`--require <module>`**:
262
+ Preloads the specified module.
263
+
264
+ - **Filters**:
265
+ You can include or exclude specific test files by specifying path-based filters:
266
+ - Include: `filter` (e.g., `utils`)
267
+ - Exclude: `^filter` (e.g., `^utils`)
268
+
269
+ ### Supported Test Files
270
+
271
+ The script searches for test files with the following extensions:
272
+ - **File Types**: `.spec`, `.test`
273
+ - **Languages**: `.ts`, `.tsx`, `.js`, `.jsx`, `.cjs`, `.mjs`
274
+
275
+ ### Usage
276
+
277
+ ```bash
278
+ yarn pezkuwi-dev-run-test [options] [filters...]
279
+ ```
280
+
281
+ ### Behavior
282
+
283
+ - **Filters:**
284
+ Filters are applied to include or exclude test files based on their paths. Included filters take precedence, and excluded filters are applied afterward.
285
+
286
+ - **Execution:**
287
+ The script dynamically loads the appropriate environment setup (node or browser) and runs the tests using @pezkuwi/dev-test.
288
+
289
+ - **Errors:**
290
+ If no matching files are found, the script exits with a fatal error.
291
+
292
+ - **Development Mode:**
293
+ In development mode, local build paths are used for test and TypeScript loaders.
294
+
295
+ ## pezkuwi-dev-version
296
+
297
+ **Summary**:
298
+ This script automates the version bump process for a package or a monorepo. It updates the `version` field in `package.json` files and synchronizes dependency versions across workspaces. It supports major, minor, patch, and pre-release version bumps.
299
+
300
+ ### CLI Arguments
301
+
302
+ - `<type>`: The type of version bump to apply.
303
+ - Acceptable values: `major`, `minor`, `patch`, `pre`
304
+ - Required.
305
+
306
+ ### Behavior
307
+
308
+ 1. **Version Bump**:
309
+ - Uses `yarn version` to bump the root package version based on the specified `<type>`.
310
+
311
+ 2. **Synchronizes Dependencies**:
312
+ - Updates all `dependencies`, `devDependencies`, `peerDependencies`, `optionalDependencies`, and `resolutions` across all workspace packages to match the new version where applicable.
313
+
314
+ 3. **Handles `-x` Suffix**:
315
+ - If the root package's version ends with `-x`, it is temporarily removed before the version bump and re-added afterward for pre-releases.
316
+
317
+ 4. **Updates Workspaces**:
318
+ - Loops through all `packages/*` directories to update their `package.json` files with the new version and aligned dependencies.
319
+
320
+ 5. **Installs Updated Dependencies**:
321
+ - Runs `yarn install` to apply dependency updates after bumping versions.
322
+
323
+ ### Usage
324
+
325
+ ```bash
326
+ yarn pezkuwi-dev-version <type>
327
+ ```
328
+
329
+ ## pezkuwi-dev-yarn-only
330
+
331
+
332
+ **Summary**:
333
+ This script ensures that `yarn` is being used as the package manager. It exits with an error if a different package manager (e.g., `npm`) is detected.
334
+
335
+ ### Behavior
336
+
337
+ 1. **Check for Yarn**:
338
+ - Verifies that the `yarn` package manager is being used by inspecting the `npm_execpath` environment variable.
339
+
340
+ 2. **Exit on Failure**:
341
+ - If `yarn` is not detected, the script exits with a fatal error message explaining that `yarn` is required.
342
+
343
+ ### Usage
344
+
345
+ ```bash
346
+ yarn pezkuwi-dev-yarn-only
347
+ ```
348
+
349
+ ## pezkuwi-exec-eslint
350
+
351
+ **Summary**:
352
+ This script runs the ESLint binary to lint JavaScript and TypeScript files in the project. It uses the ESLint installation local to the project.
353
+
354
+ ### Behavior
355
+
356
+ 1. **Import ESLint**:
357
+ - Dynamically imports and executes the `eslint` binary from the local project's `node_modules`.
358
+
359
+ 2. **Delegates to ESLint**:
360
+ - The script acts as a wrapper around the `eslint` command, passing any arguments to it.
361
+
362
+ ### Usage
363
+
364
+ ```bash
365
+ yarn pezkuwi-exec-eslint [eslint-arguments]
366
+ ```
367
+
368
+ Notes
369
+ - This script ensures that the locally installed version of ESLint is used, avoiding conflicts with global installations.
370
+ - All standard ESLint CLI options can be passed directly to the script.
371
+
372
+ ## pezkuwi-exec-ghpages
373
+
374
+ **Summary**:
375
+ This script acts as a wrapper for the `gh-pages` tool, which is used to publish content to a project's GitHub Pages branch.
376
+
377
+ ### Behavior
378
+
379
+ 1. **Import `gh-pages`**:
380
+ - Dynamically imports the `gh-pages` binary from the local project's `node_modules`.
381
+
382
+ 2. **Run `gh-pages`**:
383
+ - Passes command-line arguments directly to the `gh-pages` tool to execute the desired publishing tasks.
384
+
385
+ 3. **Output on Success**:
386
+ - Logs `Published` to the console upon successful completion.
387
+
388
+ ### Usage
389
+
390
+ ```bash
391
+ yarn pezkuwi-exec-ghpages [gh-pages-arguments]
392
+ ```
393
+
394
+ ## pezkuwi-exec-ghrelease
395
+
396
+ **Summary**:
397
+ This script is a wrapper for the `gh-release` tool, used to create GitHub releases directly from the command line.
398
+
399
+ ### Behavior
400
+
401
+ 1. **Import `gh-release`**:
402
+ - Dynamically imports the `gh-release` binary from the local project's `node_modules`.
403
+
404
+ 2. **Run `gh-release`**:
405
+ - Executes the `gh-release` CLI with any provided arguments.
406
+
407
+ ### Usage
408
+
409
+ ```bash
410
+ yarn pezkuwi-exec-ghrelease [gh-release-arguments]
411
+ ```
412
+
413
+ ## pezkuwi-exec-node-test
414
+
415
+ **Summary**:
416
+ This script is designed to execute Node.js tests using the `node:test` module. It includes support for diagnostic reporting, customizable logging, and execution controls like bail and timeout.
417
+
418
+ ### Key Features:
419
+
420
+ 1. **Custom Test Execution**:
421
+ - Executes tests using the `node:test` framework.
422
+ - Handles test results, diagnostic messages, and statistics.
423
+
424
+ 2. **Real-time Feedback**:
425
+ - Displays progress updates on the console with formatted outputs:
426
+ - `·` for passed tests.
427
+ - `x` for failed tests.
428
+ - `>` for skipped tests.
429
+ - `!` for todo tests.
430
+
431
+ 3. **Logging and Debugging**:
432
+ - Optionally logs errors to a specified file (`--logfile <filename>`).
433
+ - Outputs detailed diagnostic information when `--console` is used.
434
+
435
+ 4. **Command-line Options**:
436
+ - `--bail`: Stops execution after the first test failure.
437
+ - `--console`: Outputs diagnostic and error details to the console.
438
+ - `--logfile <file>`: Appends error logs to the specified file.
439
+
440
+ 5. **Error Reporting**:
441
+ - Provides structured error output, including filenames, stack traces, and failure types.
442
+
443
+ 6. **Timeout**:
444
+ - Configures a default timeout of 1 hour to avoid indefinite hangs.
445
+
446
+ ### CLI Options:
447
+
448
+ - `--bail`: Exit after the first test failure.
449
+ - `--console`: Print diagnostic details to the console.
450
+ - `--logfile <file>`: Write failure details to the specified log file.
451
+ - `<files>`: Specify test files to run (supports glob patterns).
452
+
453
+ ### Usage:
454
+
455
+ ```bash
456
+ yarn pezkuwi-exec-node-test [options] <files...>
457
+ ```
458
+
459
+ ## pezkuwi-exec-rollup
460
+
461
+ **Summary**:
462
+ This script serves as a wrapper for the Rollup CLI, allowing users to execute Rollup commands via Node.js. It simplifies access to the Rollup binary and forwards all provided arguments directly to the Rollup CLI.
463
+
464
+ ### CLI Arguments
465
+
466
+ - **`--config <file>`**:
467
+ Specifies the Rollup configuration file to use.
468
+
469
+ - **`--watch`**:
470
+ Enables watch mode, automatically rebuilding the bundle on file changes.
471
+
472
+ - **`--input <file>`**:
473
+ Specifies the input file for the build.
474
+
475
+ - **`--output <file>`**:
476
+ Specifies the output file or directory for the build.
477
+
478
+ - **`--silent`**:
479
+ Suppresses Rollup output logs.
480
+
481
+ Refer to the [Rollup CLI documentation](https://rollupjs.org/guide/en/#command-line-interface) for a full list of available options.
482
+
483
+ ### Usage
484
+
485
+ ```bash
486
+ yarn pezkuwi-exec-rollup [options]
487
+ ```
488
+
489
+ ## pezkuwi-exec-tsc
490
+
491
+ **Summary**:
492
+ This script executes the TypeScript Compiler (TSC) directly by importing the TypeScript library, enabling developers to compile TypeScript files with the same options available in the native `tsc` CLI.
493
+
494
+ ### Common Options
495
+
496
+ - **`--project <file>`**
497
+ Use a specific `tsconfig.json` file for compilation.
498
+
499
+ - **`--watch`**
500
+ Watch for file changes and recompile automatically.
501
+
502
+ - **`--outDir <directory>`**
503
+ Specify an output directory for compiled files.
504
+
505
+ - **`--declaration`**
506
+ Generate TypeScript declaration files (`.d.ts`).
507
+
508
+ - **`--strict`**
509
+ Enable strict type-checking options.
510
+
511
+ Refer to the official [TypeScript Compiler Options](https://www.typescriptlang.org/tsconfig) for a complete list of supported options.
512
+
513
+ ### CLI Usage
514
+
515
+ ```bash
516
+ yarn pezkuwi-exec-tsc [options]
517
+ ```
518
+
519
+ ##
520
+
521
+ **Summary**:
522
+ This script directly imports and executes the Webpack CLI, allowing developers to bundle JavaScript applications using Webpack with access to all CLI options provided by the `webpack-cli`.
523
+
524
+ ## Common Options
525
+
526
+ - **`--config <path>`**
527
+ Specify a path to the Webpack configuration file.
528
+
529
+ - **`--mode <mode>`**
530
+ Set the mode for Webpack. Valid values are `development`, `production`, or `none`.
531
+
532
+ - **`--watch`**
533
+ Watch files for changes and rebuild the bundle automatically.
534
+
535
+ - **`--entry <file>`**
536
+ Specify the entry file for the application.
537
+
538
+ - **`--output <path>`**
539
+ Set the directory or filename for the output bundle.
540
+
541
+ Refer to the official [Webpack CLI Options](https://webpack.js.org/api/cli/) for a complete list of supported options.
542
+
543
+ ## CLI Usage
544
+
545
+ ```bash
546
+ yarn pezkuwi-exec-webpack [options]
547
+ ```
@@ -54,7 +54,7 @@ function getHeaderPattern () {
54
54
  years.push(`${i}`);
55
55
  }
56
56
 
57
- return ` Copyright 20(${years.join('|')})(-${fullyear})? @pezkuwi/(${packages})`;
57
+ return ` Copyright 20(${years.join('|')})(-${fullyear})? @pezkuwi/(${packages})( authors & contributors)?`;
58
58
  }
59
59
 
60
60
  export const overrideAll = {