@storm-software/workspace-tools 1.270.2 → 1.271.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/CHANGELOG.md +40 -0
- package/README.md +1 -1
- package/dist/chunk-4QYM3VS4.mjs +282 -0
- package/dist/{chunk-ZP76EMBE.js → chunk-FYXWAGK3.js} +97 -27
- package/dist/chunk-MJMN2T4N.mjs +166 -0
- package/dist/chunk-RZVF4LHT.js +282 -0
- package/dist/executors.js +6 -6
- package/dist/executors.mjs +6 -6
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +6 -6
- package/dist/index.mjs +8 -8
- package/dist/src/executors/npm-publish/executor.js +3 -3
- package/dist/src/executors/npm-publish/executor.mjs +2 -2
- package/dist/src/generators/preset/files/LICENSE +201 -0
- package/dist/src/utils/index.d.mts +1 -1
- package/dist/src/utils/index.d.ts +1 -1
- package/dist/src/utils/index.js +2 -2
- package/dist/src/utils/index.mjs +3 -3
- package/dist/src/utils/pnpm-deps-update.d.mts +3 -3
- package/dist/src/utils/pnpm-deps-update.d.ts +3 -3
- package/dist/src/utils/pnpm-deps-update.js +2 -2
- package/dist/src/utils/pnpm-deps-update.mjs +3 -3
- package/docs/api/base/base-executor.schema.md +16 -0
- package/docs/api/base/base-generator.schema.md +15 -0
- package/docs/api/base/cargo-base-executor.schema.md +90 -0
- package/docs/api/base/typescript-build-executor.schema.md +126 -0
- package/docs/api/base/typescript-library-generator.schema.md +129 -0
- package/docs/api/executors/cargo-build/schema.md +89 -0
- package/docs/api/executors/cargo-check/schema.md +90 -0
- package/docs/api/executors/cargo-clippy/schema.md +99 -0
- package/docs/api/executors/cargo-doc/schema.md +130 -0
- package/docs/api/executors/cargo-format/schema.md +90 -0
- package/docs/api/executors/cargo-publish/schema.md +117 -0
- package/docs/api/executors/clean-package/schema.md +65 -0
- package/docs/api/executors/esbuild/schema.md +126 -0
- package/docs/api/executors/npm-publish/schema.md +64 -0
- package/docs/api/executors/size-limit/schema.md +25 -0
- package/docs/api/executors/typia/schema.md +46 -0
- package/docs/api/executors/unbuild/schema.md +222 -0
- package/docs/api/generators/browser-library/files/README.md +58 -0
- package/docs/api/generators/browser-library/schema.md +129 -0
- package/docs/api/generators/config-schema/schema.md +25 -0
- package/docs/api/generators/init/schema.md +15 -0
- package/docs/api/generators/neutral-library/files/README.md +58 -0
- package/docs/api/generators/neutral-library/schema.md +129 -0
- package/docs/api/generators/node-library/files/README.md +63 -0
- package/docs/api/generators/node-library/schema.md +129 -0
- package/docs/api/generators/preset/schema.md +110 -0
- package/docs/api/generators/release-version/schema.md +160 -0
- package/package.json +13 -35
- package/dist/chunk-CMH2A42G.js +0 -467
- package/dist/chunk-HMJTTE4A.mjs +0 -96
- package/dist/chunk-I54IKCIV.mjs +0 -467
- package/docs/executors/rollup.md +0 -88
- package/executors.ts +0 -23
- package/generators.ts +0 -14
- package/index.ts +0 -5
- package/project.json +0 -58
- package/src/base/base-executor.ts +0 -200
- package/src/base/base-executor.untyped.ts +0 -18
- package/src/base/base-generator.ts +0 -130
- package/src/base/base-generator.untyped.ts +0 -16
- package/src/base/cargo-base-executor.untyped.ts +0 -73
- package/src/base/index.ts +0 -8
- package/src/base/typescript-build-executor.untyped.ts +0 -153
- package/src/base/typescript-library-generator.ts +0 -415
- package/src/base/typescript-library-generator.untyped.ts +0 -106
- package/src/executors/cargo-build/executor.spec.ts +0 -18
- package/src/executors/cargo-build/executor.ts +0 -28
- package/src/executors/cargo-build/untyped.ts +0 -18
- package/src/executors/cargo-check/executor.spec.ts +0 -18
- package/src/executors/cargo-check/executor.ts +0 -27
- package/src/executors/cargo-check/untyped.ts +0 -11
- package/src/executors/cargo-clippy/executor.spec.ts +0 -18
- package/src/executors/cargo-clippy/executor.ts +0 -28
- package/src/executors/cargo-clippy/untyped.ts +0 -18
- package/src/executors/cargo-doc/executor.spec.ts +0 -18
- package/src/executors/cargo-doc/executor.ts +0 -39
- package/src/executors/cargo-doc/untyped.ts +0 -44
- package/src/executors/cargo-format/executor.spec.ts +0 -18
- package/src/executors/cargo-format/executor.ts +0 -28
- package/src/executors/cargo-format/untyped.ts +0 -11
- package/src/executors/cargo-publish/executor.spec.ts +0 -11
- package/src/executors/cargo-publish/executor.ts +0 -139
- package/src/executors/cargo-publish/untyped.ts +0 -33
- package/src/executors/clean-package/constants.ts +0 -99
- package/src/executors/clean-package/executor.spec.ts +0 -18
- package/src/executors/clean-package/executor.ts +0 -214
- package/src/executors/clean-package/types.ts +0 -6
- package/src/executors/clean-package/untyped.ts +0 -60
- package/src/executors/clean-package/utils.ts +0 -85
- package/src/executors/esbuild/executor.spec.ts +0 -11
- package/src/executors/esbuild/executor.ts +0 -67
- package/src/executors/esbuild/untyped.ts +0 -20
- package/src/executors/npm-publish/executor.spec.ts +0 -11
- package/src/executors/npm-publish/executor.ts +0 -680
- package/src/executors/npm-publish/untyped.ts +0 -56
- package/src/executors/size-limit/executor.spec.ts +0 -18
- package/src/executors/size-limit/executor.ts +0 -88
- package/src/executors/size-limit/untyped.ts +0 -22
- package/src/executors/typia/executor.ts +0 -54
- package/src/executors/typia/untyped.ts +0 -48
- package/src/executors/unbuild/executor.spec.ts +0 -11
- package/src/executors/unbuild/executor.ts +0 -136
- package/src/executors/unbuild/untyped.ts +0 -152
- package/src/generators/browser-library/generator.spec.ts +0 -20
- package/src/generators/browser-library/generator.ts +0 -109
- package/src/generators/browser-library/untyped.ts +0 -29
- package/src/generators/config-schema/generator.spec.ts +0 -20
- package/src/generators/config-schema/generator.ts +0 -90
- package/src/generators/config-schema/untyped.ts +0 -19
- package/src/generators/init/init.ts +0 -32
- package/src/generators/init/untyped.ts +0 -16
- package/src/generators/neutral-library/generator.spec.ts +0 -20
- package/src/generators/neutral-library/generator.ts +0 -81
- package/src/generators/neutral-library/untyped.ts +0 -29
- package/src/generators/node-library/generator.spec.ts +0 -20
- package/src/generators/node-library/generator.ts +0 -84
- package/src/generators/node-library/untyped.ts +0 -29
- package/src/generators/preset/files/.all-contributorsrc.template +0 -48
- package/src/generators/preset/files/.editorconfig +0 -454
- package/src/generators/preset/files/.env.template +0 -38
- package/src/generators/preset/files/.gitattributes +0 -52
- package/src/generators/preset/files/.github/.nvmrc +0 -1
- package/src/generators/preset/files/.github/CODEOWNERS +0 -3
- package/src/generators/preset/files/.github/CODE_OF_CONDUCT.md +0 -125
- package/src/generators/preset/files/.github/CONTRIBUTING.md.template +0 -15
- package/src/generators/preset/files/.github/FUNDING.yml +0 -3
- package/src/generators/preset/files/.github/ISSUE_TEMPLATE/bug-report.yml.template +0 -102
- package/src/generators/preset/files/.github/ISSUE_TEMPLATE/documentation.yml.template +0 -56
- package/src/generators/preset/files/.github/ISSUE_TEMPLATE/feature-request.yml.template +0 -60
- package/src/generators/preset/files/.github/PULL_REQUEST_TEMPLATE.md.template +0 -39
- package/src/generators/preset/files/.github/SECURITY.md +0 -9
- package/src/generators/preset/files/.github/codecov.yml +0 -29
- package/src/generators/preset/files/.github/dependabot.yml +0 -64
- package/src/generators/preset/files/.github/labels.yml +0 -84
- package/src/generators/preset/files/.github/renovate.json +0 -4
- package/src/generators/preset/files/.github/renovate.json.template +0 -63
- package/src/generators/preset/files/.github/stale.yml +0 -55
- package/src/generators/preset/files/.github/workflows/build-release.yml.template +0 -25
- package/src/generators/preset/files/.github/workflows/code-review.yml +0 -18
- package/src/generators/preset/files/.github/workflows/codeql.yml +0 -84
- package/src/generators/preset/files/.github/workflows/dependabot-update.yml +0 -32
- package/src/generators/preset/files/.github/workflows/git-guardian.yml +0 -23
- package/src/generators/preset/files/.github/workflows/greetings.yml +0 -31
- package/src/generators/preset/files/.github/workflows/labels.yml +0 -31
- package/src/generators/preset/files/.github/workflows/lock.yml +0 -26
- package/src/generators/preset/files/.log4brains.yml.template +0 -5
- package/src/generators/preset/files/.markdownlint.json +0 -155
- package/src/generators/preset/files/.verdaccio/config.yml.template +0 -40
- package/src/generators/preset/files/.vscode/README.md +0 -32
- package/src/generators/preset/files/.vscode/cspell.json +0 -3
- package/src/generators/preset/files/.vscode/extensions.json +0 -14
- package/src/generators/preset/files/.vscode/launch.json +0 -37
- package/src/generators/preset/files/.vscode/settings.json +0 -401
- package/src/generators/preset/files/.vscode/tasks.json +0 -4
- package/src/generators/preset/files/.whitesource +0 -14
- package/src/generators/preset/files/assets/diagrams/.gitkeep +0 -0
- package/src/generators/preset/files/assets/icons/dark/.gitkeep +0 -0
- package/src/generators/preset/files/assets/icons/light/.gitkeep +0 -0
- package/src/generators/preset/files/assets/logos/.gitkeep +0 -0
- package/src/generators/preset/files/docs/api-reference/.gitkeep +0 -0
- package/src/generators/preset/generator.spec.ts +0 -20
- package/src/generators/preset/generator.ts +0 -315
- package/src/generators/preset/untyped.ts +0 -88
- package/src/generators/release-version/generator.spec.ts +0 -20
- package/src/generators/release-version/generator.ts +0 -920
- package/src/generators/release-version/untyped.ts +0 -156
- package/src/plugins/rust/cargo-toml.ts +0 -434
- package/src/plugins/rust/index.ts +0 -1
- package/src/plugins/typescript/index.ts +0 -1
- package/src/plugins/typescript/project-config.ts +0 -564
- package/src/plugins/typescript/tsup.ts +0 -198
- package/src/types.ts +0 -130
- package/src/utils/apply-workspace-tokens.ts +0 -73
- package/src/utils/cargo.ts +0 -219
- package/src/utils/create-cli-options.ts +0 -23
- package/src/utils/get-project-configurations.ts +0 -27
- package/src/utils/index.ts +0 -12
- package/src/utils/lock-file.ts +0 -159
- package/src/utils/package-helpers.ts +0 -54
- package/src/utils/plugin-helpers.ts +0 -112
- package/src/utils/pnpm-deps-update.ts +0 -111
- package/src/utils/project-tags.ts +0 -162
- package/src/utils/toml.ts +0 -204
- package/src/utils/typia-transform.ts +0 -8
- package/src/utils/versions.ts +0 -19
- package/tsconfig.json +0 -30
- package/tsup.config.ts +0 -36
- /package/{src/generators/preset/files/LICENSE → LICENSE} +0 -0
- /package/{src → dist/src}/base/base-executor.schema.d.ts +0 -0
- /package/{src → dist/src}/base/base-executor.schema.json +0 -0
- /package/{src → dist/src}/base/base-executor.schema.md +0 -0
- /package/{src → dist/src}/base/base-generator.schema.d.ts +0 -0
- /package/{src → dist/src}/base/base-generator.schema.json +0 -0
- /package/{src → dist/src}/base/base-generator.schema.md +0 -0
- /package/{src → dist/src}/base/cargo-base-executor.schema.d.ts +0 -0
- /package/{src → dist/src}/base/cargo-base-executor.schema.json +0 -0
- /package/{src → dist/src}/base/cargo-base-executor.schema.md +0 -0
- /package/{src → dist/src}/base/typescript-build-executor.schema.d.ts +0 -0
- /package/{src → dist/src}/base/typescript-build-executor.schema.json +0 -0
- /package/{src → dist/src}/base/typescript-build-executor.schema.md +0 -0
- /package/{src → dist/src}/base/typescript-library-generator.schema.d.ts +0 -0
- /package/{src → dist/src}/base/typescript-library-generator.schema.json +0 -0
- /package/{src → dist/src}/base/typescript-library-generator.schema.md +0 -0
- /package/{src → dist/src}/executors/cargo-build/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/cargo-build/schema.json +0 -0
- /package/{src → dist/src}/executors/cargo-build/schema.md +0 -0
- /package/{src → dist/src}/executors/cargo-check/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/cargo-check/schema.json +0 -0
- /package/{src → dist/src}/executors/cargo-check/schema.md +0 -0
- /package/{src → dist/src}/executors/cargo-clippy/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/cargo-clippy/schema.json +0 -0
- /package/{src → dist/src}/executors/cargo-clippy/schema.md +0 -0
- /package/{src → dist/src}/executors/cargo-doc/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/cargo-doc/schema.json +0 -0
- /package/{src → dist/src}/executors/cargo-doc/schema.md +0 -0
- /package/{src → dist/src}/executors/cargo-format/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/cargo-format/schema.json +0 -0
- /package/{src → dist/src}/executors/cargo-format/schema.md +0 -0
- /package/{src → dist/src}/executors/cargo-publish/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/cargo-publish/schema.json +0 -0
- /package/{src → dist/src}/executors/cargo-publish/schema.md +0 -0
- /package/{src → dist/src}/executors/clean-package/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/clean-package/schema.json +0 -0
- /package/{src → dist/src}/executors/clean-package/schema.md +0 -0
- /package/{src → dist/src}/executors/esbuild/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/esbuild/schema.json +0 -0
- /package/{src → dist/src}/executors/esbuild/schema.md +0 -0
- /package/{src → dist/src}/executors/npm-publish/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/npm-publish/schema.json +0 -0
- /package/{src → dist/src}/executors/npm-publish/schema.md +0 -0
- /package/{src → dist/src}/executors/size-limit/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/size-limit/schema.json +0 -0
- /package/{src → dist/src}/executors/size-limit/schema.md +0 -0
- /package/{src → dist/src}/executors/typia/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/typia/schema.json +0 -0
- /package/{src → dist/src}/executors/typia/schema.md +0 -0
- /package/{src → dist/src}/executors/unbuild/schema.d.ts +0 -0
- /package/{src → dist/src}/executors/unbuild/schema.json +0 -0
- /package/{src → dist/src}/executors/unbuild/schema.md +0 -0
- /package/{src → dist/src}/generators/browser-library/files/README.md +0 -0
- /package/{src → dist/src}/generators/browser-library/files/jest.config.ts +0 -0
- /package/{src → dist/src}/generators/browser-library/files/src/index.ts.template +0 -0
- /package/{src → dist/src}/generators/browser-library/files/tsconfig.spec.json +0 -0
- /package/{src → dist/src}/generators/browser-library/schema.d.ts +0 -0
- /package/{src → dist/src}/generators/browser-library/schema.json +0 -0
- /package/{src → dist/src}/generators/browser-library/schema.md +0 -0
- /package/{src → dist/src}/generators/config-schema/schema.d.ts +0 -0
- /package/{src → dist/src}/generators/config-schema/schema.json +0 -0
- /package/{src → dist/src}/generators/config-schema/schema.md +0 -0
- /package/{src → dist/src}/generators/init/schema.d.ts +0 -0
- /package/{src → dist/src}/generators/init/schema.json +0 -0
- /package/{src → dist/src}/generators/init/schema.md +0 -0
- /package/{src → dist/src}/generators/neutral-library/files/README.md +0 -0
- /package/{src → dist/src}/generators/neutral-library/files/jest.config.ts +0 -0
- /package/{src → dist/src}/generators/neutral-library/files/src/index.ts.template +0 -0
- /package/{src → dist/src}/generators/neutral-library/files/tsconfig.spec.json +0 -0
- /package/{src → dist/src}/generators/neutral-library/schema.d.ts +0 -0
- /package/{src → dist/src}/generators/neutral-library/schema.json +0 -0
- /package/{src → dist/src}/generators/neutral-library/schema.md +0 -0
- /package/{src → dist/src}/generators/node-library/files/README.md +0 -0
- /package/{src → dist/src}/generators/node-library/files/jest.config.ts +0 -0
- /package/{src → dist/src}/generators/node-library/files/src/index.ts.template +0 -0
- /package/{src → dist/src}/generators/node-library/files/tsconfig.spec.json +0 -0
- /package/{src → dist/src}/generators/node-library/schema.d.ts +0 -0
- /package/{src → dist/src}/generators/node-library/schema.json +0 -0
- /package/{src → dist/src}/generators/node-library/schema.md +0 -0
- /package/{src → dist/src}/generators/preset/files/README.md.template +0 -0
- /package/{src → dist/src}/generators/preset/files/docs/readme-templates/README.footer.md.template +0 -0
- /package/{src → dist/src}/generators/preset/files/docs/readme-templates/README.header.md.template +0 -0
- /package/{src → dist/src}/generators/preset/files/eslint.config.js.template +0 -0
- /package/{src → dist/src}/generators/preset/files/knip.json +0 -0
- /package/{src → dist/src}/generators/preset/files/lefthook.json +0 -0
- /package/{src → dist/src}/generators/preset/files/nx.json +0 -0
- /package/{src → dist/src}/generators/preset/files/pnpm-workspace.yaml +0 -0
- /package/{src → dist/src}/generators/preset/files/socket.yaml +0 -0
- /package/{src → dist/src}/generators/preset/files/storm.json.template +0 -0
- /package/{src → dist/src}/generators/preset/files/tsconfig.base.json.template +0 -0
- /package/{src → dist/src}/generators/preset/schema.d.ts +0 -0
- /package/{src → dist/src}/generators/preset/schema.json +0 -0
- /package/{src → dist/src}/generators/preset/schema.md +0 -0
- /package/{src → dist/src}/generators/release-version/schema.d.ts +0 -0
- /package/{src → dist/src}/generators/release-version/schema.json +0 -0
- /package/{src → dist/src}/generators/release-version/schema.md +0 -0
- /package/{src → dist/src}/plugins/typescript/untyped-schema.ts +0 -0
package/src/utils/toml.ts
DELETED
|
@@ -1,204 +0,0 @@
|
|
|
1
|
-
import TOML from "@ltd/j-toml";
|
|
2
|
-
import { type Tree, logger } from "@nx/devkit";
|
|
3
|
-
|
|
4
|
-
export interface CargoToml {
|
|
5
|
-
// Workspace is only applicable to the root Cargo.toml
|
|
6
|
-
workspace?: { members: string[] };
|
|
7
|
-
package: any;
|
|
8
|
-
dependencies?: Record<
|
|
9
|
-
string,
|
|
10
|
-
string | { version: string; features?: string[]; optional?: boolean }
|
|
11
|
-
>;
|
|
12
|
-
"dev-dependencies"?: Record<
|
|
13
|
-
string,
|
|
14
|
-
string | { version: string; features: string[] }
|
|
15
|
-
>;
|
|
16
|
-
[key: string]: any;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
export interface CargoMetadata {
|
|
20
|
-
packages: Package[];
|
|
21
|
-
workspace_members: string[];
|
|
22
|
-
resolve: Resolve;
|
|
23
|
-
target_directory: string;
|
|
24
|
-
version: number;
|
|
25
|
-
workspace_root: string;
|
|
26
|
-
metadata: Metadata2;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
export interface Package {
|
|
30
|
-
name: string;
|
|
31
|
-
version: string;
|
|
32
|
-
id: string;
|
|
33
|
-
license: string;
|
|
34
|
-
license_file: string;
|
|
35
|
-
description: string;
|
|
36
|
-
source: any;
|
|
37
|
-
dependencies: Dependency[];
|
|
38
|
-
targets: Target[];
|
|
39
|
-
features: Features;
|
|
40
|
-
manifest_path: string;
|
|
41
|
-
metadata: Metadata;
|
|
42
|
-
/**
|
|
43
|
-
* From the docs:
|
|
44
|
-
* "List of registries to which this package may be published.
|
|
45
|
-
* Publishing is unrestricted if null, and forbidden if an empty array."
|
|
46
|
-
*
|
|
47
|
-
* Additional observation:
|
|
48
|
-
* false can be used by the end user but it will be converted to an empty
|
|
49
|
-
* array in the cargo metadata output.
|
|
50
|
-
*/
|
|
51
|
-
publish?: string[] | boolean | null;
|
|
52
|
-
authors: string[];
|
|
53
|
-
categories: string[];
|
|
54
|
-
default_run: any;
|
|
55
|
-
rust_version: string;
|
|
56
|
-
keywords: string[];
|
|
57
|
-
readme: string;
|
|
58
|
-
repository: string;
|
|
59
|
-
homepage: string;
|
|
60
|
-
documentation: string;
|
|
61
|
-
edition: string;
|
|
62
|
-
links: any;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
export interface Dependency {
|
|
66
|
-
name: string;
|
|
67
|
-
source: string;
|
|
68
|
-
req: string;
|
|
69
|
-
kind: any;
|
|
70
|
-
rename: any;
|
|
71
|
-
optional: boolean;
|
|
72
|
-
uses_default_features: boolean;
|
|
73
|
-
features: any[];
|
|
74
|
-
target: string;
|
|
75
|
-
path: string;
|
|
76
|
-
registry: any;
|
|
77
|
-
workspace: boolean;
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
export interface Target {
|
|
81
|
-
kind: string[];
|
|
82
|
-
crate_types: string[];
|
|
83
|
-
name: string;
|
|
84
|
-
src_path: string;
|
|
85
|
-
edition: string;
|
|
86
|
-
"required-features": string[];
|
|
87
|
-
doc: boolean;
|
|
88
|
-
doctest: boolean;
|
|
89
|
-
test: boolean;
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
export interface Features {
|
|
93
|
-
default: string[];
|
|
94
|
-
feat1: any[];
|
|
95
|
-
feat2: any[];
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
export interface Metadata {
|
|
99
|
-
docs: Docs;
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
export interface Docs {
|
|
103
|
-
rs: Rs;
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
export interface Rs {
|
|
107
|
-
"all-features": boolean;
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
export interface Resolve {
|
|
111
|
-
nodes: Node[];
|
|
112
|
-
root: string;
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
export interface Node {
|
|
116
|
-
id: string;
|
|
117
|
-
dependencies: string[];
|
|
118
|
-
deps: Dep[];
|
|
119
|
-
features: string[];
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
export interface Dep {
|
|
123
|
-
name: string;
|
|
124
|
-
pkg: string;
|
|
125
|
-
dep_kinds: DepKind[];
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
export interface DepKind {
|
|
129
|
-
kind: any;
|
|
130
|
-
target: string;
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
export interface Metadata2 {
|
|
134
|
-
docs: Docs2;
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
export interface Docs2 {
|
|
138
|
-
rs: Rs2;
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
export interface Rs2 {
|
|
142
|
-
"all-features": boolean;
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
export function parseCargoTomlWithTree(
|
|
146
|
-
tree: Tree,
|
|
147
|
-
projectRoot: string,
|
|
148
|
-
projectName: string,
|
|
149
|
-
) {
|
|
150
|
-
const cargoTomlString = tree.read(`${projectRoot}/Cargo.toml`)?.toString();
|
|
151
|
-
if (!cargoTomlString) {
|
|
152
|
-
logger.error(`Cannot find a Cargo.toml file in the ${projectName}`);
|
|
153
|
-
throw new Error();
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
return parseCargoToml(cargoTomlString);
|
|
157
|
-
}
|
|
158
|
-
|
|
159
|
-
export function parseCargoToml(cargoString?: string) {
|
|
160
|
-
if (!cargoString) {
|
|
161
|
-
throw new Error("Cargo.toml is empty");
|
|
162
|
-
}
|
|
163
|
-
|
|
164
|
-
return TOML.parse(cargoString, {
|
|
165
|
-
x: { comment: true },
|
|
166
|
-
}) as unknown as CargoToml;
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
export function stringifyCargoToml(cargoToml: CargoToml) {
|
|
170
|
-
const tomlString = TOML.stringify(cargoToml, {
|
|
171
|
-
newlineAround: "section",
|
|
172
|
-
});
|
|
173
|
-
|
|
174
|
-
if (Array.isArray(tomlString)) {
|
|
175
|
-
return tomlString.join("\n");
|
|
176
|
-
}
|
|
177
|
-
|
|
178
|
-
return tomlString;
|
|
179
|
-
}
|
|
180
|
-
|
|
181
|
-
export function modifyCargoTable(
|
|
182
|
-
toml: CargoToml,
|
|
183
|
-
section: string,
|
|
184
|
-
key: string,
|
|
185
|
-
value: string | object | any[] | (() => any),
|
|
186
|
-
) {
|
|
187
|
-
toml[section] ??= TOML.Section({});
|
|
188
|
-
toml[section][key] =
|
|
189
|
-
typeof value === "object" && !Array.isArray(value)
|
|
190
|
-
? TOML.inline(value as any)
|
|
191
|
-
: typeof value === "function"
|
|
192
|
-
? value()
|
|
193
|
-
: value;
|
|
194
|
-
}
|
|
195
|
-
|
|
196
|
-
export function modifyCargoNestedTable(
|
|
197
|
-
toml: CargoToml,
|
|
198
|
-
section: string,
|
|
199
|
-
key: string,
|
|
200
|
-
value: object,
|
|
201
|
-
) {
|
|
202
|
-
toml[section] ??= {};
|
|
203
|
-
toml[section][key] = TOML.Section(value as any);
|
|
204
|
-
}
|
package/src/utils/versions.ts
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
export const tsupVersion = "^7.2.0";
|
|
2
|
-
export const prettierPackageJsonVersion = "2.4.6";
|
|
3
|
-
export const prettierPrismaVersion = "5.0.0";
|
|
4
|
-
export const prettierVersion = "^3.0.3";
|
|
5
|
-
export const swcCliVersion = "~0.1.62";
|
|
6
|
-
export const swcCoreVersion = "~1.3.95";
|
|
7
|
-
export const swcHelpersVersion = "~0.5.3";
|
|
8
|
-
export const swcNodeVersion = "1.6.8";
|
|
9
|
-
export const tsLibVersion = "2.6.2";
|
|
10
|
-
export const typesNodeVersion = "20.9.0";
|
|
11
|
-
export const verdaccioVersion = "5.27.0";
|
|
12
|
-
export const typescriptVersion = "~5.2.2";
|
|
13
|
-
export const eslintVersion = "~8.53.0";
|
|
14
|
-
export const lintStagedVersion = "15.0.2";
|
|
15
|
-
export const semanticReleaseVersion = "22.0.7";
|
|
16
|
-
|
|
17
|
-
export const nxVersion = "^18.0.4";
|
|
18
|
-
export const nodeVersion = "20.11.0";
|
|
19
|
-
export const pnpmVersion = "8.10.2";
|
package/tsconfig.json
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": "../../tsconfig.json",
|
|
3
|
-
"compilerOptions": {
|
|
4
|
-
"outDir": "../../dist/out-tsc",
|
|
5
|
-
"rootDir": "../..",
|
|
6
|
-
"target": "ESNext",
|
|
7
|
-
"module": "ESNext",
|
|
8
|
-
"lib": ["ESNext"],
|
|
9
|
-
"skipLibCheck": true,
|
|
10
|
-
"skipDefaultLibCheck": true,
|
|
11
|
-
"moduleResolution": "Bundler",
|
|
12
|
-
"moduleDetection": "force",
|
|
13
|
-
"types": ["node"]
|
|
14
|
-
},
|
|
15
|
-
"include": [
|
|
16
|
-
"executors.ts",
|
|
17
|
-
"generators.ts",
|
|
18
|
-
"index.ts",
|
|
19
|
-
"src/**/*.ts",
|
|
20
|
-
"src/**/*.d.ts",
|
|
21
|
-
"src/**/*.json",
|
|
22
|
-
"tsup.config.ts"
|
|
23
|
-
],
|
|
24
|
-
"exclude": [
|
|
25
|
-
"jest.config.ts",
|
|
26
|
-
"src/generators/**/files/**/*",
|
|
27
|
-
"src/**/*.spec.ts",
|
|
28
|
-
"src/**/*.test.ts"
|
|
29
|
-
]
|
|
30
|
-
}
|
package/tsup.config.ts
DELETED
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
import { defineConfig } from "tsup";
|
|
2
|
-
|
|
3
|
-
export default defineConfig([
|
|
4
|
-
{
|
|
5
|
-
name: "workspace-tools",
|
|
6
|
-
target: "node22",
|
|
7
|
-
entryPoints: [
|
|
8
|
-
"./index.ts",
|
|
9
|
-
"./executors.ts",
|
|
10
|
-
"./generators.ts",
|
|
11
|
-
"./src/types.ts",
|
|
12
|
-
"./src/base/index.ts",
|
|
13
|
-
"./src/base/base-executor.ts",
|
|
14
|
-
"./src/base/base-generator.ts",
|
|
15
|
-
"./src/base/*.untyped.ts",
|
|
16
|
-
"./src/utils/*.ts",
|
|
17
|
-
"./src/executors/*/executor.ts",
|
|
18
|
-
"./src/executors/*/untyped.ts",
|
|
19
|
-
"./src/generators/*/generator.ts",
|
|
20
|
-
"./src/generators/*/untyped.ts",
|
|
21
|
-
"./src/generators/init/init.ts",
|
|
22
|
-
"./src/plugins/rust/*.ts",
|
|
23
|
-
"./src/plugins/typescript/*.ts"
|
|
24
|
-
],
|
|
25
|
-
outDir: "dist",
|
|
26
|
-
format: ["cjs", "esm"],
|
|
27
|
-
bundle: true,
|
|
28
|
-
platform: "node",
|
|
29
|
-
splitting: true,
|
|
30
|
-
clean: true,
|
|
31
|
-
dts: true,
|
|
32
|
-
sourcemap: false,
|
|
33
|
-
shims: true,
|
|
34
|
-
tsconfig: "./tsconfig.json"
|
|
35
|
-
}
|
|
36
|
-
]);
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/{src → dist/src}/generators/preset/files/docs/readme-templates/README.footer.md.template
RENAMED
|
File without changes
|
/package/{src → dist/src}/generators/preset/files/docs/readme-templates/README.header.md.template
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|