@atls/code-schematics 0.0.20 → 2.0.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 +11 -0
- package/dist/generated/index.d.ts +1 -0
- package/dist/generated/index.js +1 -0
- package/dist/generated/schematic-factory-export.d.ts +2 -0
- package/dist/generated/schematic-factory-export.js +6 -0
- package/dist/getters/index.d.ts +2 -0
- package/dist/getters/index.js +2 -0
- package/dist/getters/stream-report-callback.getter.d.ts +4 -0
- package/dist/getters/stream-report-callback.getter.js +20 -0
- package/dist/getters/stream-report-options.getter.d.ts +6 -0
- package/dist/getters/stream-report-options.getter.js +7 -0
- package/dist/helpers/events-log.helper.d.ts +2 -0
- package/dist/helpers/events-log.helper.js +20 -0
- package/dist/helpers/index.d.ts +3 -0
- package/dist/helpers/index.js +3 -0
- package/dist/helpers/prepare-tmp-dir.helper.d.ts +2 -0
- package/dist/helpers/prepare-tmp-dir.helper.js +8 -0
- package/dist/helpers/run-schematics.helper.d.ts +1 -0
- package/dist/helpers/run-schematics.helper.js +48 -0
- package/dist/helpers/write-tmp-schematic.helper.d.ts +2 -0
- package/dist/helpers/write-tmp-schematic.helper.js +11 -0
- package/dist/index.d.ts +4 -2
- package/dist/index.js +4 -18
- package/dist/schematic/index.d.ts +1 -0
- package/dist/schematic/index.js +1 -0
- package/dist/schematic/project/index.d.ts +1 -0
- package/dist/schematic/project/index.js +1 -0
- package/dist/schematic/project/project.factory.d.ts +2 -0
- package/dist/schematic/project/project.factory.js +11 -0
- package/dist/schematic/rules/index.d.ts +1 -0
- package/dist/schematic/rules/index.js +1 -0
- package/dist/schematic/rules/update-ts-config.rule.d.ts +2 -0
- package/dist/schematic/rules/update-ts-config.rule.js +7 -0
- package/dist/schematic/sources/generate-common.source.d.ts +2 -0
- package/dist/schematic/sources/generate-common.source.js +13 -0
- package/dist/schematic/sources/generate-project-specific.source.d.ts +2 -0
- package/dist/schematic/sources/generate-project-specific.source.js +19 -0
- package/dist/schematic/sources/index.d.ts +2 -0
- package/dist/schematic/sources/index.js +2 -0
- package/dist/schematic/utils/file.utils.d.ts +3 -0
- package/dist/schematic/utils/file.utils.js +6 -0
- package/dist/schematic/utils/gitignore.utils.d.ts +3 -0
- package/dist/schematic/utils/gitignore.utils.js +12 -0
- package/dist/schematic/utils/index.d.ts +5 -0
- package/dist/schematic/utils/index.js +5 -0
- package/dist/schematic/utils/json.utils.d.ts +6 -0
- package/dist/schematic/utils/json.utils.js +23 -0
- package/dist/schematic/utils/tsconfig.utils.d.ts +1 -0
- package/dist/schematic/utils/tsconfig.utils.js +5 -0
- package/dist/schematic/utils/yaml.utils.d.ts +5 -0
- package/dist/schematic/utils/yaml.utils.js +18 -0
- package/dist/scripts/build-steps/esbuild.build-step.d.ts +1 -0
- package/dist/scripts/build-steps/esbuild.build-step.js +17 -0
- package/dist/scripts/build-steps/index.d.ts +1 -0
- package/dist/scripts/build-steps/index.js +1 -0
- package/dist/scripts/exceptions/index.d.ts +1 -0
- package/dist/scripts/exceptions/index.js +1 -0
- package/dist/scripts/exceptions/undefined-build-result.exception.d.ts +3 -0
- package/dist/scripts/exceptions/undefined-build-result.exception.js +5 -0
- package/dist/scripts/getters/cjs-content.getter.d.ts +2 -0
- package/dist/scripts/getters/cjs-content.getter.js +4 -0
- package/dist/scripts/getters/encoded-content.getter.d.ts +1 -0
- package/dist/scripts/getters/encoded-content.getter.js +4 -0
- package/dist/scripts/getters/esbuild-config.getter.d.ts +2 -0
- package/dist/scripts/getters/esbuild-config.getter.js +32 -0
- package/dist/scripts/getters/generated-file-content.getter.d.ts +1 -0
- package/dist/scripts/getters/generated-file-content.getter.js +16 -0
- package/dist/scripts/getters/index.d.ts +4 -0
- package/dist/scripts/getters/index.js +4 -0
- package/dist/scripts/index.d.ts +1 -0
- package/dist/scripts/index.js +1 -0
- package/dist/scripts/schematic-build.script.d.ts +1 -0
- package/dist/scripts/schematic-build.script.js +72 -0
- package/dist/scripts/schematic-factory-build.script.d.ts +1 -0
- package/dist/scripts/schematic-factory-build.script.js +10 -0
- package/package.json +36 -6
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/migration-engine.host.d.ts +0 -5
- package/dist/migration-engine.host.d.ts.map +0 -1
- package/dist/migration-engine.host.js +0 -11
- package/dist/migration-engine.host.js.map +0 -1
- package/dist/node-pnp-engine.host.d.ts +0 -17
- package/dist/node-pnp-engine.host.d.ts.map +0 -1
- package/dist/node-pnp-engine.host.js +0 -95
- package/dist/node-pnp-engine.host.js.map +0 -1
- package/dist/schematics.d.ts +0 -10
- package/dist/schematics.d.ts.map +0 -1
- package/dist/schematics.js +0 -95
- package/dist/schematics.js.map +0 -1
- package/dist/utils/collection.utils.d.ts +0 -7
- package/dist/utils/collection.utils.d.ts.map +0 -1
- package/dist/utils/collection.utils.js +0 -47
- package/dist/utils/collection.utils.js.map +0 -1
- package/dist/utils/index.d.ts +0 -3
- package/dist/utils/index.d.ts.map +0 -1
- package/dist/utils/index.js +0 -19
- package/dist/utils/index.js.map +0 -1
- package/dist/utils/resolve.utils.d.ts +0 -2
- package/dist/utils/resolve.utils.d.ts.map +0 -1
- package/dist/utils/resolve.utils.js +0 -27
- package/dist/utils/resolve.utils.js.map +0 -1
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
## [2.0.1](https://github.com/atls/raijin/compare/@atls/code-schematics@2.0.0...@atls/code-schematics@2.0.1) (2025-02-24)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
* **schematic:** generate ([#488](https://github.com/atls/raijin/issues/488)) ([c9289d8](https://github.com/atls/raijin/commit/c9289d8a675259a30beb2c0fd6103d98ae6189a1))
|
|
10
|
+
|
|
11
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './schematic-factory-export.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./schematic-factory-export.js";
|