@breadstone-infrastructure/nx-tasks 0.0.257 → 0.0.258
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/dist/LICENSE +21 -0
- package/dist/executors.json +149 -0
- package/dist/package.json +48 -0
- package/executors.json +87 -87
- package/package.json +76 -47
- package/readme.md +156 -0
- package/src/_legacy/_Lint.ts +40 -0
- package/src/_legacy/_LitAnalyzer.ts +163 -0
- package/src/_legacy/_Resources.ts +69 -0
- package/src/executors/alias-replace/executor.options.ts +10 -0
- package/src/executors/alias-replace/executor.task.ts +305 -0
- package/src/executors/alias-replace/executor.ts +35 -0
- package/src/executors/alias-replace/schema.json +1 -0
- package/src/executors/clean/executor.options.ts +10 -0
- package/src/executors/clean/executor.task.ts +49 -0
- package/src/executors/clean/executor.ts +28 -0
- package/src/executors/clean/schema.json +1 -0
- package/src/executors/copy/executor.options.ts +10 -0
- package/src/executors/copy/executor.task.ts +96 -0
- package/src/executors/copy/executor.ts +30 -0
- package/src/executors/copy/schema.json +1 -0
- package/src/executors/copy2/executor.options.ts +10 -0
- package/src/executors/copy2/executor.task.ts +115 -0
- package/src/executors/copy2/executor.ts +28 -0
- package/src/executors/copy2/schema.json +1 -0
- package/src/executors/docs/ApiDocumenter.ts +50 -0
- package/src/executors/docs/DocusaurusMarkdownFeature.ts +129 -0
- package/src/executors/docs/executor.options.ts +10 -0
- package/src/executors/docs/executor.task.ts +116 -0
- package/src/executors/docs/executor.ts +33 -0
- package/src/executors/docs/schema.json +1 -0
- package/src/executors/generate-package-docs/executor.options.ts +10 -0
- package/src/executors/generate-package-docs/executor.task.ts +381 -0
- package/src/executors/generate-package-docs/executor.ts +47 -0
- package/src/executors/generate-package-docs/schema.json +258 -0
- package/src/executors/icon-collection-builder/executor.options.ts +10 -0
- package/src/executors/icon-collection-builder/executor.task.ts +284 -0
- package/src/executors/icon-collection-builder/executor.ts +67 -0
- package/src/executors/icon-collection-builder/schema.json +1 -0
- package/src/executors/icon-collection-builder/svg.ts +406 -0
- package/src/executors/icon-collection-downloader/executor.options.ts +10 -0
- package/src/executors/icon-collection-downloader/executor.task.ts +409 -0
- package/src/executors/icon-collection-downloader/executor.ts +47 -0
- package/src/executors/icon-collection-downloader/schema.json +33 -0
- package/src/executors/lit-docs/ComponentDocFixer.ts +571 -0
- package/src/executors/lit-docs/JSDocChecker.ts +353 -0
- package/src/executors/lit-docs/executor.options.ts +10 -0
- package/src/executors/lit-docs/executor.task.ts +372 -0
- package/src/executors/lit-docs/executor.ts +31 -0
- package/src/executors/lit-docs/schema.json +1 -0
- package/src/executors/lit-style-transform/executor.options.ts +0 -0
- package/src/executors/lit-style-transform/executor.task.ts +433 -0
- package/src/executors/lit-style-transform/executor.ts +47 -0
- package/src/executors/lit-style-transform/schema.json +1 -0
- package/src/executors/localizator/executor.options.ts +11 -0
- package/src/executors/localizator/executor.task.ts +194 -0
- package/src/executors/localizator/executor.ts +45 -0
- package/src/executors/localizator/schema.json +10 -0
- package/src/executors/markdown-to-typescript-transform/MarkdownRenderer.ts +96 -0
- package/src/executors/markdown-to-typescript-transform/executor.options.ts +0 -0
- package/src/executors/markdown-to-typescript-transform/executor.task.ts +113 -0
- package/src/executors/markdown-to-typescript-transform/executor.ts +44 -0
- package/src/executors/markdown-to-typescript-transform/schema.json +1 -0
- package/src/executors/ng-api-extractor/executor.options.ts +10 -0
- package/src/executors/ng-api-extractor/executor.task.ts +157 -0
- package/src/executors/ng-api-extractor/executor.ts +27 -0
- package/src/executors/ng-api-extractor/schema.json +1 -0
- package/src/executors/ng-packagr-build/executor.options.ts +0 -0
- package/src/executors/ng-packagr-build/executor.task.ts +49 -0
- package/src/executors/ng-packagr-build/executor.ts +29 -0
- package/src/executors/ng-packagr-build/schema.json +1 -0
- package/src/executors/ng-proxy-transform/executor.options.ts +0 -0
- package/src/executors/ng-proxy-transform/executor.task.ts +675 -0
- package/src/executors/ng-proxy-transform/executor.ts +49 -0
- package/src/executors/ng-proxy-transform/schema.json +13 -0
- package/src/executors/openapi-generator/executor.options.ts +0 -0
- package/src/executors/openapi-generator/executor.task.ts +43 -0
- package/src/executors/openapi-generator/executor.ts +35 -0
- package/src/executors/openapi-generator/schema.json +1 -0
- package/src/executors/prisma-seeds/executor.options.ts +15 -0
- package/src/executors/prisma-seeds/executor.task.ts +63 -0
- package/src/executors/prisma-seeds/executor.ts +39 -0
- package/src/executors/prisma-seeds/schema.json +35 -0
- package/src/executors/react-proxy-transform/executor.options.ts +0 -0
- package/src/executors/react-proxy-transform/executor.task.ts +243 -0
- package/src/executors/react-proxy-transform/executor.ts +45 -0
- package/src/executors/react-proxy-transform/schema.json +1 -0
- package/src/executors/release-package/executor.options.ts +0 -0
- package/src/executors/release-package/executor.task.ts +212 -0
- package/src/executors/release-package/executor.ts +33 -0
- package/src/executors/release-package/schema.json +1 -0
- package/src/executors/release-package-json/executor.options.ts +0 -0
- package/src/executors/release-package-json/executor.task.ts +206 -0
- package/src/executors/release-package-json/executor.ts +37 -0
- package/src/executors/release-package-json/schema.json +1 -0
- package/src/executors/scss-style-bundle/executor.options.ts +0 -0
- package/src/executors/scss-style-bundle/executor.task.ts +123 -0
- package/src/executors/scss-style-bundle/executor.ts +37 -0
- package/src/executors/scss-style-bundle/schema.json +1 -0
- package/src/executors/scss-style-transform/executor.options.ts +0 -0
- package/src/executors/scss-style-transform/executor.task.ts +50 -0
- package/src/executors/scss-style-transform/executor.ts +38 -0
- package/src/executors/scss-style-transform/schema.json +1 -0
- package/src/executors/secrets-config-sync/executor.options.ts +10 -0
- package/src/executors/secrets-config-sync/executor.task.ts +163 -0
- package/src/executors/secrets-config-sync/executor.ts +32 -0
- package/src/executors/secrets-config-sync/providers/azure-keyvault.provider.ts +180 -0
- package/src/executors/secrets-config-sync/providers/doppler.provider.ts +84 -0
- package/src/executors/secrets-config-sync/providers/secrets-provider.factory.ts +33 -0
- package/src/executors/secrets-config-sync/providers/secrets-provider.interface.ts +34 -0
- package/src/executors/secrets-config-sync/schema.json +44 -0
- package/src/executors/secrets-vercel-sync/executor.options.ts +12 -0
- package/src/executors/secrets-vercel-sync/executor.task.ts +697 -0
- package/src/executors/secrets-vercel-sync/executor.ts +44 -0
- package/src/executors/secrets-vercel-sync/providers/azure-keyvault.provider.ts +173 -0
- package/src/executors/secrets-vercel-sync/providers/doppler.provider.ts +93 -0
- package/src/executors/secrets-vercel-sync/providers/secrets-provider.factory.ts +33 -0
- package/src/executors/secrets-vercel-sync/providers/secrets-provider.interface.ts +34 -0
- package/src/executors/secrets-vercel-sync/schema.json +112 -0
- package/src/executors/svelte-proxy-transform/executor.options.ts +0 -0
- package/src/executors/svelte-proxy-transform/executor.task.ts +187 -0
- package/src/executors/svelte-proxy-transform/executor.ts +45 -0
- package/src/executors/svelte-proxy-transform/schema.json +1 -0
- package/src/executors/token-linter/executor.options.ts +23 -0
- package/src/executors/token-linter/executor.task.ts +66 -0
- package/src/executors/token-linter/executor.ts +37 -0
- package/src/executors/token-linter/schema.json +63 -0
- package/src/executors/unrelease-package/executor.options.ts +0 -0
- package/src/executors/unrelease-package/executor.task.ts +138 -0
- package/src/executors/unrelease-package/executor.ts +33 -0
- package/src/executors/unrelease-package/schema.json +1 -0
- package/src/executors/vercel-edge-config-sync/executor.options.ts +0 -0
- package/src/executors/vercel-edge-config-sync/executor.task.ts +30 -0
- package/src/executors/vercel-edge-config-sync/executor.ts +25 -0
- package/src/executors/vercel-edge-config-sync/schema.json +1 -0
- package/src/executors/vue-proxy-transform/executor.options.ts +0 -0
- package/src/executors/vue-proxy-transform/executor.task.ts +226 -0
- package/src/executors/vue-proxy-transform/executor.ts +45 -0
- package/src/executors/vue-proxy-transform/schema.json +1 -0
- package/src/index.ts +31 -0
- package/src/types/svgpath.d.ts +13 -0
- package/src/utils/TaskBase.ts +42 -0
- package/src/utils/getProjectPackageJson.ts +22 -0
- package/src/utils/getProjectRoot.ts +14 -0
- package/src/utils/getProjectTsConfigJson.ts +29 -0
- package/src/utils/isVerbose.ts +24 -0
- package/src/utils/loadAndExpandDotEnvFile.ts +108 -0
- package/src/utils/markdown-processing.ts +174 -0
- package/src/utils/valid-html-tags.ts +79 -0
- package/src/utils/withCaching.ts +14 -0
- /package/{CHANGELOG.md → dist/CHANGELOG.md} +0 -0
- /package/{README.md → dist/README.md} +0 -0
- /package/{executors → dist/executors}/alias-replace/executor.d.ts +0 -0
- /package/{executors → dist/executors}/alias-replace/executor.d.ts.map +0 -0
- /package/{executors → dist/executors}/alias-replace/executor.js +0 -0
- /package/{executors → dist/executors}/alias-replace/executor.js.map +0 -0
- /package/{executors → dist/executors}/alias-replace/executor.options.d.ts +0 -0
- /package/{executors → dist/executors}/alias-replace/executor.options.d.ts.map +0 -0
- /package/{executors → dist/executors}/alias-replace/executor.options.js +0 -0
- /package/{executors → dist/executors}/alias-replace/executor.options.js.map +0 -0
- /package/{executors → dist/executors}/alias-replace/executor.task.d.ts +0 -0
- /package/{executors → dist/executors}/alias-replace/executor.task.d.ts.map +0 -0
- /package/{executors → dist/executors}/alias-replace/executor.task.js +0 -0
- /package/{executors → dist/executors}/alias-replace/executor.task.js.map +0 -0
- /package/{executors → dist/executors}/alias-replace/schema.json +0 -0
- /package/{executors → dist/executors}/clean/executor.d.ts +0 -0
- /package/{executors → dist/executors}/clean/executor.d.ts.map +0 -0
- /package/{executors → dist/executors}/clean/executor.js +0 -0
- /package/{executors → dist/executors}/clean/executor.js.map +0 -0
- /package/{executors → dist/executors}/clean/executor.options.d.ts +0 -0
- /package/{executors → dist/executors}/clean/executor.options.d.ts.map +0 -0
- /package/{executors → dist/executors}/clean/executor.options.js +0 -0
- /package/{executors → dist/executors}/clean/executor.options.js.map +0 -0
- /package/{executors → dist/executors}/clean/executor.task.d.ts +0 -0
- /package/{executors → dist/executors}/clean/executor.task.d.ts.map +0 -0
- /package/{executors → dist/executors}/clean/executor.task.js +0 -0
- /package/{executors → dist/executors}/clean/executor.task.js.map +0 -0
- /package/{executors → dist/executors}/clean/schema.json +0 -0
- /package/{executors → dist/executors}/copy/executor.d.ts +0 -0
- /package/{executors → dist/executors}/copy/executor.d.ts.map +0 -0
- /package/{executors → dist/executors}/copy/executor.js +0 -0
- /package/{executors → dist/executors}/copy/executor.js.map +0 -0
- /package/{executors → dist/executors}/copy/executor.options.d.ts +0 -0
- /package/{executors → dist/executors}/copy/executor.options.d.ts.map +0 -0
- /package/{executors → dist/executors}/copy/executor.options.js +0 -0
- /package/{executors → dist/executors}/copy/executor.options.js.map +0 -0
- /package/{executors → dist/executors}/copy/executor.task.d.ts +0 -0
- /package/{executors → dist/executors}/copy/executor.task.d.ts.map +0 -0
- /package/{executors → dist/executors}/copy/executor.task.js +0 -0
- /package/{executors → dist/executors}/copy/executor.task.js.map +0 -0
- /package/{executors → dist/executors}/copy/schema.json +0 -0
- /package/{executors → dist/executors}/copy2/executor.d.ts +0 -0
- /package/{executors → dist/executors}/copy2/executor.d.ts.map +0 -0
- /package/{executors → dist/executors}/copy2/executor.js +0 -0
- /package/{executors → dist/executors}/copy2/executor.js.map +0 -0
- /package/{executors → dist/executors}/copy2/executor.options.d.ts +0 -0
- /package/{executors → dist/executors}/copy2/executor.options.d.ts.map +0 -0
- /package/{executors → dist/executors}/copy2/executor.options.js +0 -0
- /package/{executors → dist/executors}/copy2/executor.options.js.map +0 -0
- /package/{executors → dist/executors}/copy2/executor.task.d.ts +0 -0
- /package/{executors → dist/executors}/copy2/executor.task.d.ts.map +0 -0
- /package/{executors → dist/executors}/copy2/executor.task.js +0 -0
- /package/{executors → dist/executors}/copy2/executor.task.js.map +0 -0
- /package/{executors → dist/executors}/copy2/schema.json +0 -0
- /package/{executors → dist/executors}/docs/ApiDocumenter.d.ts +0 -0
- /package/{executors → dist/executors}/docs/ApiDocumenter.d.ts.map +0 -0
- /package/{executors → dist/executors}/docs/ApiDocumenter.js +0 -0
- /package/{executors → dist/executors}/docs/ApiDocumenter.js.map +0 -0
- /package/{executors → dist/executors}/docs/DocusaurusMarkdownFeature.d.ts +0 -0
- /package/{executors → dist/executors}/docs/DocusaurusMarkdownFeature.d.ts.map +0 -0
- /package/{executors → dist/executors}/docs/DocusaurusMarkdownFeature.js +0 -0
- /package/{executors → dist/executors}/docs/DocusaurusMarkdownFeature.js.map +0 -0
- /package/{executors → dist/executors}/docs/executor.d.ts +0 -0
- /package/{executors → dist/executors}/docs/executor.d.ts.map +0 -0
- /package/{executors → dist/executors}/docs/executor.js +0 -0
- /package/{executors → dist/executors}/docs/executor.js.map +0 -0
- /package/{executors → dist/executors}/docs/executor.options.d.ts +0 -0
- /package/{executors → dist/executors}/docs/executor.options.d.ts.map +0 -0
- /package/{executors → dist/executors}/docs/executor.options.js +0 -0
- /package/{executors → dist/executors}/docs/executor.options.js.map +0 -0
- /package/{executors → dist/executors}/docs/executor.task.d.ts +0 -0
- /package/{executors → dist/executors}/docs/executor.task.d.ts.map +0 -0
- /package/{executors → dist/executors}/docs/executor.task.js +0 -0
- /package/{executors → dist/executors}/docs/executor.task.js.map +0 -0
- /package/{executors → dist/executors}/docs/schema.json +0 -0
- /package/{executors → dist/executors}/doppler-config-sync/executor.d.ts +0 -0
- /package/{executors → dist/executors}/doppler-config-sync/executor.d.ts.map +0 -0
- /package/{executors → dist/executors}/doppler-config-sync/executor.js +0 -0
- /package/{executors → dist/executors}/doppler-config-sync/executor.js.map +0 -0
- /package/{executors → dist/executors}/doppler-config-sync/executor.options.d.ts +0 -0
- /package/{executors → dist/executors}/doppler-config-sync/executor.options.d.ts.map +0 -0
- /package/{executors → dist/executors}/doppler-config-sync/executor.options.js +0 -0
- /package/{executors → dist/executors}/doppler-config-sync/executor.options.js.map +0 -0
- /package/{executors → dist/executors}/doppler-config-sync/executor.task.d.ts +0 -0
- /package/{executors → dist/executors}/doppler-config-sync/executor.task.d.ts.map +0 -0
- /package/{executors → dist/executors}/doppler-config-sync/executor.task.js +0 -0
- /package/{executors → dist/executors}/doppler-config-sync/executor.task.js.map +0 -0
- /package/{executors → dist/executors}/doppler-config-sync/schema.json +0 -0
- /package/{executors → dist/executors}/doppler-vercel-sync/executor.d.ts +0 -0
- /package/{executors → dist/executors}/doppler-vercel-sync/executor.d.ts.map +0 -0
- /package/{executors → dist/executors}/doppler-vercel-sync/executor.js +0 -0
- /package/{executors → dist/executors}/doppler-vercel-sync/executor.js.map +0 -0
- /package/{executors → dist/executors}/doppler-vercel-sync/executor.options.d.ts +0 -0
- /package/{executors → dist/executors}/doppler-vercel-sync/executor.options.d.ts.map +0 -0
- /package/{executors → dist/executors}/doppler-vercel-sync/executor.options.js +0 -0
- /package/{executors → dist/executors}/doppler-vercel-sync/executor.options.js.map +0 -0
- /package/{executors → dist/executors}/doppler-vercel-sync/executor.task.d.ts +0 -0
- /package/{executors → dist/executors}/doppler-vercel-sync/executor.task.d.ts.map +0 -0
- /package/{executors → dist/executors}/doppler-vercel-sync/executor.task.js +0 -0
- /package/{executors → dist/executors}/doppler-vercel-sync/executor.task.js.map +0 -0
- /package/{executors → dist/executors}/doppler-vercel-sync/schema.json +0 -0
- /package/{executors → dist/executors}/generate-package-docs/executor.d.ts +0 -0
- /package/{executors → dist/executors}/generate-package-docs/executor.d.ts.map +0 -0
- /package/{executors → dist/executors}/generate-package-docs/executor.js +0 -0
- /package/{executors → dist/executors}/generate-package-docs/executor.js.map +0 -0
- /package/{executors → dist/executors}/generate-package-docs/executor.options.d.ts +0 -0
- /package/{executors → dist/executors}/generate-package-docs/executor.options.d.ts.map +0 -0
- /package/{executors → dist/executors}/generate-package-docs/executor.options.js +0 -0
- /package/{executors → dist/executors}/generate-package-docs/executor.options.js.map +0 -0
- /package/{executors → dist/executors}/generate-package-docs/executor.task.d.ts +0 -0
- /package/{executors → dist/executors}/generate-package-docs/executor.task.d.ts.map +0 -0
- /package/{executors → dist/executors}/generate-package-docs/executor.task.js +0 -0
- /package/{executors → dist/executors}/generate-package-docs/executor.task.js.map +0 -0
- /package/{executors → dist/executors}/generate-package-docs/schema.json +0 -0
- /package/{executors → dist/executors}/icon-collection-builder/executor.d.ts +0 -0
- /package/{executors → dist/executors}/icon-collection-builder/executor.d.ts.map +0 -0
- /package/{executors → dist/executors}/icon-collection-builder/executor.js +0 -0
- /package/{executors → dist/executors}/icon-collection-builder/executor.js.map +0 -0
- /package/{executors → dist/executors}/icon-collection-builder/executor.options.d.ts +0 -0
- /package/{executors → dist/executors}/icon-collection-builder/executor.options.d.ts.map +0 -0
- /package/{executors → dist/executors}/icon-collection-builder/executor.options.js +0 -0
- /package/{executors → dist/executors}/icon-collection-builder/executor.options.js.map +0 -0
- /package/{executors → dist/executors}/icon-collection-builder/executor.task.d.ts +0 -0
- /package/{executors → dist/executors}/icon-collection-builder/executor.task.d.ts.map +0 -0
- /package/{executors → dist/executors}/icon-collection-builder/executor.task.js +0 -0
- /package/{executors → dist/executors}/icon-collection-builder/executor.task.js.map +0 -0
- /package/{executors → dist/executors}/icon-collection-builder/schema.json +0 -0
- /package/{executors → dist/executors}/icon-collection-builder/svg.d.ts +0 -0
- /package/{executors → dist/executors}/icon-collection-builder/svg.d.ts.map +0 -0
- /package/{executors → dist/executors}/icon-collection-builder/svg.js +0 -0
- /package/{executors → dist/executors}/icon-collection-builder/svg.js.map +0 -0
- /package/{executors → dist/executors}/icon-collection-downloader/executor.d.ts +0 -0
- /package/{executors → dist/executors}/icon-collection-downloader/executor.d.ts.map +0 -0
- /package/{executors → dist/executors}/icon-collection-downloader/executor.js +0 -0
- /package/{executors → dist/executors}/icon-collection-downloader/executor.js.map +0 -0
- /package/{executors → dist/executors}/icon-collection-downloader/executor.options.d.ts +0 -0
- /package/{executors → dist/executors}/icon-collection-downloader/executor.options.d.ts.map +0 -0
- /package/{executors → dist/executors}/icon-collection-downloader/executor.options.js +0 -0
- /package/{executors → dist/executors}/icon-collection-downloader/executor.options.js.map +0 -0
- /package/{executors → dist/executors}/icon-collection-downloader/executor.task.d.ts +0 -0
- /package/{executors → dist/executors}/icon-collection-downloader/executor.task.d.ts.map +0 -0
- /package/{executors → dist/executors}/icon-collection-downloader/executor.task.js +0 -0
- /package/{executors → dist/executors}/icon-collection-downloader/executor.task.js.map +0 -0
- /package/{executors → dist/executors}/icon-collection-downloader/schema.json +0 -0
- /package/{executors → dist/executors}/lit-docs/ComponentDocFixer.d.ts +0 -0
- /package/{executors → dist/executors}/lit-docs/ComponentDocFixer.d.ts.map +0 -0
- /package/{executors → dist/executors}/lit-docs/ComponentDocFixer.js +0 -0
- /package/{executors → dist/executors}/lit-docs/ComponentDocFixer.js.map +0 -0
- /package/{executors → dist/executors}/lit-docs/JSDocChecker.d.ts +0 -0
- /package/{executors → dist/executors}/lit-docs/JSDocChecker.d.ts.map +0 -0
- /package/{executors → dist/executors}/lit-docs/JSDocChecker.js +0 -0
- /package/{executors → dist/executors}/lit-docs/JSDocChecker.js.map +0 -0
- /package/{executors → dist/executors}/lit-docs/JSDocFixer.d.ts +0 -0
- /package/{executors → dist/executors}/lit-docs/JSDocFixer.d.ts.map +0 -0
- /package/{executors → dist/executors}/lit-docs/JSDocFixer.js +0 -0
- /package/{executors → dist/executors}/lit-docs/JSDocFixer.js.map +0 -0
- /package/{executors → dist/executors}/lit-docs/executor.d.ts +0 -0
- /package/{executors → dist/executors}/lit-docs/executor.d.ts.map +0 -0
- /package/{executors → dist/executors}/lit-docs/executor.js +0 -0
- /package/{executors → dist/executors}/lit-docs/executor.js.map +0 -0
- /package/{executors → dist/executors}/lit-docs/executor.options.d.ts +0 -0
- /package/{executors → dist/executors}/lit-docs/executor.options.d.ts.map +0 -0
- /package/{executors → dist/executors}/lit-docs/executor.options.js +0 -0
- /package/{executors → dist/executors}/lit-docs/executor.options.js.map +0 -0
- /package/{executors → dist/executors}/lit-docs/executor.task.d.ts +0 -0
- /package/{executors → dist/executors}/lit-docs/executor.task.d.ts.map +0 -0
- /package/{executors → dist/executors}/lit-docs/executor.task.js +0 -0
- /package/{executors → dist/executors}/lit-docs/executor.task.js.map +0 -0
- /package/{executors → dist/executors}/lit-docs/schema.json +0 -0
- /package/{executors → dist/executors}/lit-style-transform/executor.d.ts +0 -0
- /package/{executors → dist/executors}/lit-style-transform/executor.d.ts.map +0 -0
- /package/{executors → dist/executors}/lit-style-transform/executor.js +0 -0
- /package/{executors → dist/executors}/lit-style-transform/executor.js.map +0 -0
- /package/{executors → dist/executors}/lit-style-transform/executor.options.d.ts +0 -0
- /package/{executors → dist/executors}/lit-style-transform/executor.options.d.ts.map +0 -0
- /package/{executors → dist/executors}/lit-style-transform/executor.options.js +0 -0
- /package/{executors → dist/executors}/lit-style-transform/executor.options.js.map +0 -0
- /package/{executors → dist/executors}/lit-style-transform/executor.task.d.ts +0 -0
- /package/{executors → dist/executors}/lit-style-transform/executor.task.d.ts.map +0 -0
- /package/{executors → dist/executors}/lit-style-transform/executor.task.js +0 -0
- /package/{executors → dist/executors}/lit-style-transform/executor.task.js.map +0 -0
- /package/{executors → dist/executors}/lit-style-transform/schema.json +0 -0
- /package/{executors → dist/executors}/localizator/executor.d.ts +0 -0
- /package/{executors → dist/executors}/localizator/executor.d.ts.map +0 -0
- /package/{executors → dist/executors}/localizator/executor.js +0 -0
- /package/{executors → dist/executors}/localizator/executor.js.map +0 -0
- /package/{executors → dist/executors}/localizator/executor.options.d.ts +0 -0
- /package/{executors → dist/executors}/localizator/executor.options.d.ts.map +0 -0
- /package/{executors → dist/executors}/localizator/executor.options.js +0 -0
- /package/{executors → dist/executors}/localizator/executor.options.js.map +0 -0
- /package/{executors → dist/executors}/localizator/executor.task.d.ts +0 -0
- /package/{executors → dist/executors}/localizator/executor.task.d.ts.map +0 -0
- /package/{executors → dist/executors}/localizator/executor.task.js +0 -0
- /package/{executors → dist/executors}/localizator/executor.task.js.map +0 -0
- /package/{executors → dist/executors}/localizator/schema.json +0 -0
- /package/{executors → dist/executors}/markdown-to-typescript-transform/MarkdownRenderer.d.ts +0 -0
- /package/{executors → dist/executors}/markdown-to-typescript-transform/MarkdownRenderer.d.ts.map +0 -0
- /package/{executors → dist/executors}/markdown-to-typescript-transform/MarkdownRenderer.js +0 -0
- /package/{executors → dist/executors}/markdown-to-typescript-transform/MarkdownRenderer.js.map +0 -0
- /package/{executors → dist/executors}/markdown-to-typescript-transform/executor.d.ts +0 -0
- /package/{executors → dist/executors}/markdown-to-typescript-transform/executor.d.ts.map +0 -0
- /package/{executors → dist/executors}/markdown-to-typescript-transform/executor.js +0 -0
- /package/{executors → dist/executors}/markdown-to-typescript-transform/executor.js.map +0 -0
- /package/{executors → dist/executors}/markdown-to-typescript-transform/executor.options.d.ts +0 -0
- /package/{executors → dist/executors}/markdown-to-typescript-transform/executor.options.d.ts.map +0 -0
- /package/{executors → dist/executors}/markdown-to-typescript-transform/executor.options.js +0 -0
- /package/{executors → dist/executors}/markdown-to-typescript-transform/executor.options.js.map +0 -0
- /package/{executors → dist/executors}/markdown-to-typescript-transform/executor.task.d.ts +0 -0
- /package/{executors → dist/executors}/markdown-to-typescript-transform/executor.task.d.ts.map +0 -0
- /package/{executors → dist/executors}/markdown-to-typescript-transform/executor.task.js +0 -0
- /package/{executors → dist/executors}/markdown-to-typescript-transform/executor.task.js.map +0 -0
- /package/{executors → dist/executors}/markdown-to-typescript-transform/schema.json +0 -0
- /package/{executors → dist/executors}/ng-api-extractor/executor.d.ts +0 -0
- /package/{executors → dist/executors}/ng-api-extractor/executor.d.ts.map +0 -0
- /package/{executors → dist/executors}/ng-api-extractor/executor.js +0 -0
- /package/{executors → dist/executors}/ng-api-extractor/executor.js.map +0 -0
- /package/{executors → dist/executors}/ng-api-extractor/executor.options.d.ts +0 -0
- /package/{executors → dist/executors}/ng-api-extractor/executor.options.d.ts.map +0 -0
- /package/{executors → dist/executors}/ng-api-extractor/executor.options.js +0 -0
- /package/{executors → dist/executors}/ng-api-extractor/executor.options.js.map +0 -0
- /package/{executors → dist/executors}/ng-api-extractor/executor.task.d.ts +0 -0
- /package/{executors → dist/executors}/ng-api-extractor/executor.task.d.ts.map +0 -0
- /package/{executors → dist/executors}/ng-api-extractor/executor.task.js +0 -0
- /package/{executors → dist/executors}/ng-api-extractor/executor.task.js.map +0 -0
- /package/{executors → dist/executors}/ng-api-extractor/schema.json +0 -0
- /package/{executors → dist/executors}/ng-packagr-build/executor.d.ts +0 -0
- /package/{executors → dist/executors}/ng-packagr-build/executor.d.ts.map +0 -0
- /package/{executors → dist/executors}/ng-packagr-build/executor.js +0 -0
- /package/{executors → dist/executors}/ng-packagr-build/executor.js.map +0 -0
- /package/{executors → dist/executors}/ng-packagr-build/executor.options.d.ts +0 -0
- /package/{executors → dist/executors}/ng-packagr-build/executor.options.d.ts.map +0 -0
- /package/{executors → dist/executors}/ng-packagr-build/executor.options.js +0 -0
- /package/{executors → dist/executors}/ng-packagr-build/executor.options.js.map +0 -0
- /package/{executors → dist/executors}/ng-packagr-build/executor.task.d.ts +0 -0
- /package/{executors → dist/executors}/ng-packagr-build/executor.task.d.ts.map +0 -0
- /package/{executors → dist/executors}/ng-packagr-build/executor.task.js +0 -0
- /package/{executors → dist/executors}/ng-packagr-build/executor.task.js.map +0 -0
- /package/{executors → dist/executors}/ng-packagr-build/schema.json +0 -0
- /package/{executors → dist/executors}/ng-proxy-transform/executor.d.ts +0 -0
- /package/{executors → dist/executors}/ng-proxy-transform/executor.d.ts.map +0 -0
- /package/{executors → dist/executors}/ng-proxy-transform/executor.js +0 -0
- /package/{executors → dist/executors}/ng-proxy-transform/executor.js.map +0 -0
- /package/{executors → dist/executors}/ng-proxy-transform/executor.options.d.ts +0 -0
- /package/{executors → dist/executors}/ng-proxy-transform/executor.options.d.ts.map +0 -0
- /package/{executors → dist/executors}/ng-proxy-transform/executor.options.js +0 -0
- /package/{executors → dist/executors}/ng-proxy-transform/executor.options.js.map +0 -0
- /package/{executors → dist/executors}/ng-proxy-transform/executor.task.d.ts +0 -0
- /package/{executors → dist/executors}/ng-proxy-transform/executor.task.d.ts.map +0 -0
- /package/{executors → dist/executors}/ng-proxy-transform/executor.task.js +0 -0
- /package/{executors → dist/executors}/ng-proxy-transform/executor.task.js.map +0 -0
- /package/{executors → dist/executors}/ng-proxy-transform/schema.json +0 -0
- /package/{executors → dist/executors}/openapi-generator/executor.d.ts +0 -0
- /package/{executors → dist/executors}/openapi-generator/executor.d.ts.map +0 -0
- /package/{executors → dist/executors}/openapi-generator/executor.js +0 -0
- /package/{executors → dist/executors}/openapi-generator/executor.js.map +0 -0
- /package/{executors → dist/executors}/openapi-generator/executor.options.d.ts +0 -0
- /package/{executors → dist/executors}/openapi-generator/executor.options.d.ts.map +0 -0
- /package/{executors → dist/executors}/openapi-generator/executor.options.js +0 -0
- /package/{executors → dist/executors}/openapi-generator/executor.options.js.map +0 -0
- /package/{executors → dist/executors}/openapi-generator/executor.task.d.ts +0 -0
- /package/{executors → dist/executors}/openapi-generator/executor.task.d.ts.map +0 -0
- /package/{executors → dist/executors}/openapi-generator/executor.task.js +0 -0
- /package/{executors → dist/executors}/openapi-generator/executor.task.js.map +0 -0
- /package/{executors → dist/executors}/openapi-generator/schema.json +0 -0
- /package/{executors → dist/executors}/prisma-seeds/executor.d.ts +0 -0
- /package/{executors → dist/executors}/prisma-seeds/executor.d.ts.map +0 -0
- /package/{executors → dist/executors}/prisma-seeds/executor.js +0 -0
- /package/{executors → dist/executors}/prisma-seeds/executor.js.map +0 -0
- /package/{executors → dist/executors}/prisma-seeds/executor.options.d.ts +0 -0
- /package/{executors → dist/executors}/prisma-seeds/executor.options.d.ts.map +0 -0
- /package/{executors → dist/executors}/prisma-seeds/executor.options.js +0 -0
- /package/{executors → dist/executors}/prisma-seeds/executor.options.js.map +0 -0
- /package/{executors → dist/executors}/prisma-seeds/executor.task.d.ts +0 -0
- /package/{executors → dist/executors}/prisma-seeds/executor.task.d.ts.map +0 -0
- /package/{executors → dist/executors}/prisma-seeds/executor.task.js +0 -0
- /package/{executors → dist/executors}/prisma-seeds/executor.task.js.map +0 -0
- /package/{executors → dist/executors}/prisma-seeds/schema.json +0 -0
- /package/{executors → dist/executors}/react-proxy-transform/executor.d.ts +0 -0
- /package/{executors → dist/executors}/react-proxy-transform/executor.d.ts.map +0 -0
- /package/{executors → dist/executors}/react-proxy-transform/executor.js +0 -0
- /package/{executors → dist/executors}/react-proxy-transform/executor.js.map +0 -0
- /package/{executors → dist/executors}/react-proxy-transform/executor.options.d.ts +0 -0
- /package/{executors → dist/executors}/react-proxy-transform/executor.options.d.ts.map +0 -0
- /package/{executors → dist/executors}/react-proxy-transform/executor.options.js +0 -0
- /package/{executors → dist/executors}/react-proxy-transform/executor.options.js.map +0 -0
- /package/{executors → dist/executors}/react-proxy-transform/executor.task.d.ts +0 -0
- /package/{executors → dist/executors}/react-proxy-transform/executor.task.d.ts.map +0 -0
- /package/{executors → dist/executors}/react-proxy-transform/executor.task.js +0 -0
- /package/{executors → dist/executors}/react-proxy-transform/executor.task.js.map +0 -0
- /package/{executors → dist/executors}/react-proxy-transform/schema.json +0 -0
- /package/{executors → dist/executors}/release-package/executor.d.ts +0 -0
- /package/{executors → dist/executors}/release-package/executor.d.ts.map +0 -0
- /package/{executors → dist/executors}/release-package/executor.js +0 -0
- /package/{executors → dist/executors}/release-package/executor.js.map +0 -0
- /package/{executors → dist/executors}/release-package/executor.options.d.ts +0 -0
- /package/{executors → dist/executors}/release-package/executor.options.d.ts.map +0 -0
- /package/{executors → dist/executors}/release-package/executor.options.js +0 -0
- /package/{executors → dist/executors}/release-package/executor.options.js.map +0 -0
- /package/{executors → dist/executors}/release-package/executor.task.d.ts +0 -0
- /package/{executors → dist/executors}/release-package/executor.task.d.ts.map +0 -0
- /package/{executors → dist/executors}/release-package/executor.task.js +0 -0
- /package/{executors → dist/executors}/release-package/executor.task.js.map +0 -0
- /package/{executors → dist/executors}/release-package/schema.json +0 -0
- /package/{executors → dist/executors}/release-package-json/executor.d.ts +0 -0
- /package/{executors → dist/executors}/release-package-json/executor.d.ts.map +0 -0
- /package/{executors → dist/executors}/release-package-json/executor.js +0 -0
- /package/{executors → dist/executors}/release-package-json/executor.js.map +0 -0
- /package/{executors → dist/executors}/release-package-json/executor.options.d.ts +0 -0
- /package/{executors → dist/executors}/release-package-json/executor.options.d.ts.map +0 -0
- /package/{executors → dist/executors}/release-package-json/executor.options.js +0 -0
- /package/{executors → dist/executors}/release-package-json/executor.options.js.map +0 -0
- /package/{executors → dist/executors}/release-package-json/executor.task.d.ts +0 -0
- /package/{executors → dist/executors}/release-package-json/executor.task.d.ts.map +0 -0
- /package/{executors → dist/executors}/release-package-json/executor.task.js +0 -0
- /package/{executors → dist/executors}/release-package-json/executor.task.js.map +0 -0
- /package/{executors → dist/executors}/release-package-json/schema.json +0 -0
- /package/{executors → dist/executors}/scss-style-bundle/executor.d.ts +0 -0
- /package/{executors → dist/executors}/scss-style-bundle/executor.d.ts.map +0 -0
- /package/{executors → dist/executors}/scss-style-bundle/executor.js +0 -0
- /package/{executors → dist/executors}/scss-style-bundle/executor.js.map +0 -0
- /package/{executors → dist/executors}/scss-style-bundle/executor.options.d.ts +0 -0
- /package/{executors → dist/executors}/scss-style-bundle/executor.options.d.ts.map +0 -0
- /package/{executors → dist/executors}/scss-style-bundle/executor.options.js +0 -0
- /package/{executors → dist/executors}/scss-style-bundle/executor.options.js.map +0 -0
- /package/{executors → dist/executors}/scss-style-bundle/executor.task.d.ts +0 -0
- /package/{executors → dist/executors}/scss-style-bundle/executor.task.d.ts.map +0 -0
- /package/{executors → dist/executors}/scss-style-bundle/executor.task.js +0 -0
- /package/{executors → dist/executors}/scss-style-bundle/executor.task.js.map +0 -0
- /package/{executors → dist/executors}/scss-style-bundle/schema.json +0 -0
- /package/{executors → dist/executors}/scss-style-transform/executor.d.ts +0 -0
- /package/{executors → dist/executors}/scss-style-transform/executor.d.ts.map +0 -0
- /package/{executors → dist/executors}/scss-style-transform/executor.js +0 -0
- /package/{executors → dist/executors}/scss-style-transform/executor.js.map +0 -0
- /package/{executors → dist/executors}/scss-style-transform/executor.options.d.ts +0 -0
- /package/{executors → dist/executors}/scss-style-transform/executor.options.d.ts.map +0 -0
- /package/{executors → dist/executors}/scss-style-transform/executor.options.js +0 -0
- /package/{executors → dist/executors}/scss-style-transform/executor.options.js.map +0 -0
- /package/{executors → dist/executors}/scss-style-transform/executor.task.d.ts +0 -0
- /package/{executors → dist/executors}/scss-style-transform/executor.task.d.ts.map +0 -0
- /package/{executors → dist/executors}/scss-style-transform/executor.task.js +0 -0
- /package/{executors → dist/executors}/scss-style-transform/executor.task.js.map +0 -0
- /package/{executors → dist/executors}/scss-style-transform/schema.json +0 -0
- /package/{executors → dist/executors}/secrets-config-sync/executor.d.ts +0 -0
- /package/{executors → dist/executors}/secrets-config-sync/executor.d.ts.map +0 -0
- /package/{executors → dist/executors}/secrets-config-sync/executor.js +0 -0
- /package/{executors → dist/executors}/secrets-config-sync/executor.js.map +0 -0
- /package/{executors → dist/executors}/secrets-config-sync/executor.options.d.ts +0 -0
- /package/{executors → dist/executors}/secrets-config-sync/executor.options.d.ts.map +0 -0
- /package/{executors → dist/executors}/secrets-config-sync/executor.options.js +0 -0
- /package/{executors → dist/executors}/secrets-config-sync/executor.options.js.map +0 -0
- /package/{executors → dist/executors}/secrets-config-sync/executor.task.d.ts +0 -0
- /package/{executors → dist/executors}/secrets-config-sync/executor.task.d.ts.map +0 -0
- /package/{executors → dist/executors}/secrets-config-sync/executor.task.js +0 -0
- /package/{executors → dist/executors}/secrets-config-sync/executor.task.js.map +0 -0
- /package/{executors → dist/executors}/secrets-config-sync/providers/azure-keyvault.provider.d.ts +0 -0
- /package/{executors → dist/executors}/secrets-config-sync/providers/azure-keyvault.provider.d.ts.map +0 -0
- /package/{executors → dist/executors}/secrets-config-sync/providers/azure-keyvault.provider.js +0 -0
- /package/{executors → dist/executors}/secrets-config-sync/providers/azure-keyvault.provider.js.map +0 -0
- /package/{executors → dist/executors}/secrets-config-sync/providers/doppler.provider.d.ts +0 -0
- /package/{executors → dist/executors}/secrets-config-sync/providers/doppler.provider.d.ts.map +0 -0
- /package/{executors → dist/executors}/secrets-config-sync/providers/doppler.provider.js +0 -0
- /package/{executors → dist/executors}/secrets-config-sync/providers/doppler.provider.js.map +0 -0
- /package/{executors → dist/executors}/secrets-config-sync/providers/secrets-provider.factory.d.ts +0 -0
- /package/{executors → dist/executors}/secrets-config-sync/providers/secrets-provider.factory.d.ts.map +0 -0
- /package/{executors → dist/executors}/secrets-config-sync/providers/secrets-provider.factory.js +0 -0
- /package/{executors → dist/executors}/secrets-config-sync/providers/secrets-provider.factory.js.map +0 -0
- /package/{executors → dist/executors}/secrets-config-sync/providers/secrets-provider.interface.d.ts +0 -0
- /package/{executors → dist/executors}/secrets-config-sync/providers/secrets-provider.interface.d.ts.map +0 -0
- /package/{executors → dist/executors}/secrets-config-sync/providers/secrets-provider.interface.js +0 -0
- /package/{executors → dist/executors}/secrets-config-sync/providers/secrets-provider.interface.js.map +0 -0
- /package/{executors → dist/executors}/secrets-config-sync/schema.json +0 -0
- /package/{executors → dist/executors}/secrets-vercel-sync/executor.d.ts +0 -0
- /package/{executors → dist/executors}/secrets-vercel-sync/executor.d.ts.map +0 -0
- /package/{executors → dist/executors}/secrets-vercel-sync/executor.js +0 -0
- /package/{executors → dist/executors}/secrets-vercel-sync/executor.js.map +0 -0
- /package/{executors → dist/executors}/secrets-vercel-sync/executor.options.d.ts +0 -0
- /package/{executors → dist/executors}/secrets-vercel-sync/executor.options.d.ts.map +0 -0
- /package/{executors → dist/executors}/secrets-vercel-sync/executor.options.js +0 -0
- /package/{executors → dist/executors}/secrets-vercel-sync/executor.options.js.map +0 -0
- /package/{executors → dist/executors}/secrets-vercel-sync/executor.task.d.ts +0 -0
- /package/{executors → dist/executors}/secrets-vercel-sync/executor.task.d.ts.map +0 -0
- /package/{executors → dist/executors}/secrets-vercel-sync/executor.task.js +0 -0
- /package/{executors → dist/executors}/secrets-vercel-sync/executor.task.js.map +0 -0
- /package/{executors → dist/executors}/secrets-vercel-sync/providers/azure-keyvault.provider.d.ts +0 -0
- /package/{executors → dist/executors}/secrets-vercel-sync/providers/azure-keyvault.provider.d.ts.map +0 -0
- /package/{executors → dist/executors}/secrets-vercel-sync/providers/azure-keyvault.provider.js +0 -0
- /package/{executors → dist/executors}/secrets-vercel-sync/providers/azure-keyvault.provider.js.map +0 -0
- /package/{executors → dist/executors}/secrets-vercel-sync/providers/doppler.provider.d.ts +0 -0
- /package/{executors → dist/executors}/secrets-vercel-sync/providers/doppler.provider.d.ts.map +0 -0
- /package/{executors → dist/executors}/secrets-vercel-sync/providers/doppler.provider.js +0 -0
- /package/{executors → dist/executors}/secrets-vercel-sync/providers/doppler.provider.js.map +0 -0
- /package/{executors → dist/executors}/secrets-vercel-sync/providers/secrets-provider.factory.d.ts +0 -0
- /package/{executors → dist/executors}/secrets-vercel-sync/providers/secrets-provider.factory.d.ts.map +0 -0
- /package/{executors → dist/executors}/secrets-vercel-sync/providers/secrets-provider.factory.js +0 -0
- /package/{executors → dist/executors}/secrets-vercel-sync/providers/secrets-provider.factory.js.map +0 -0
- /package/{executors → dist/executors}/secrets-vercel-sync/providers/secrets-provider.interface.d.ts +0 -0
- /package/{executors → dist/executors}/secrets-vercel-sync/providers/secrets-provider.interface.d.ts.map +0 -0
- /package/{executors → dist/executors}/secrets-vercel-sync/providers/secrets-provider.interface.js +0 -0
- /package/{executors → dist/executors}/secrets-vercel-sync/providers/secrets-provider.interface.js.map +0 -0
- /package/{executors → dist/executors}/secrets-vercel-sync/schema.json +0 -0
- /package/{executors → dist/executors}/svelte-proxy-transform/executor.d.ts +0 -0
- /package/{executors → dist/executors}/svelte-proxy-transform/executor.d.ts.map +0 -0
- /package/{executors → dist/executors}/svelte-proxy-transform/executor.js +0 -0
- /package/{executors → dist/executors}/svelte-proxy-transform/executor.js.map +0 -0
- /package/{executors → dist/executors}/svelte-proxy-transform/executor.options.d.ts +0 -0
- /package/{executors → dist/executors}/svelte-proxy-transform/executor.options.d.ts.map +0 -0
- /package/{executors → dist/executors}/svelte-proxy-transform/executor.options.js +0 -0
- /package/{executors → dist/executors}/svelte-proxy-transform/executor.options.js.map +0 -0
- /package/{executors → dist/executors}/svelte-proxy-transform/executor.task.d.ts +0 -0
- /package/{executors → dist/executors}/svelte-proxy-transform/executor.task.d.ts.map +0 -0
- /package/{executors → dist/executors}/svelte-proxy-transform/executor.task.js +0 -0
- /package/{executors → dist/executors}/svelte-proxy-transform/executor.task.js.map +0 -0
- /package/{executors → dist/executors}/svelte-proxy-transform/schema.json +0 -0
- /package/{executors → dist/executors}/token-linter/executor.d.ts +0 -0
- /package/{executors → dist/executors}/token-linter/executor.d.ts.map +0 -0
- /package/{executors → dist/executors}/token-linter/executor.js +0 -0
- /package/{executors → dist/executors}/token-linter/executor.js.map +0 -0
- /package/{executors → dist/executors}/token-linter/executor.options.d.ts +0 -0
- /package/{executors → dist/executors}/token-linter/executor.options.d.ts.map +0 -0
- /package/{executors → dist/executors}/token-linter/executor.options.js +0 -0
- /package/{executors → dist/executors}/token-linter/executor.options.js.map +0 -0
- /package/{executors → dist/executors}/token-linter/executor.task.d.ts +0 -0
- /package/{executors → dist/executors}/token-linter/executor.task.d.ts.map +0 -0
- /package/{executors → dist/executors}/token-linter/executor.task.js +0 -0
- /package/{executors → dist/executors}/token-linter/executor.task.js.map +0 -0
- /package/{executors → dist/executors}/token-linter/schema.json +0 -0
- /package/{executors → dist/executors}/unrelease-package/executor.d.ts +0 -0
- /package/{executors → dist/executors}/unrelease-package/executor.d.ts.map +0 -0
- /package/{executors → dist/executors}/unrelease-package/executor.js +0 -0
- /package/{executors → dist/executors}/unrelease-package/executor.js.map +0 -0
- /package/{executors → dist/executors}/unrelease-package/executor.options.d.ts +0 -0
- /package/{executors → dist/executors}/unrelease-package/executor.options.d.ts.map +0 -0
- /package/{executors → dist/executors}/unrelease-package/executor.options.js +0 -0
- /package/{executors → dist/executors}/unrelease-package/executor.options.js.map +0 -0
- /package/{executors → dist/executors}/unrelease-package/executor.task.d.ts +0 -0
- /package/{executors → dist/executors}/unrelease-package/executor.task.d.ts.map +0 -0
- /package/{executors → dist/executors}/unrelease-package/executor.task.js +0 -0
- /package/{executors → dist/executors}/unrelease-package/executor.task.js.map +0 -0
- /package/{executors → dist/executors}/unrelease-package/schema.json +0 -0
- /package/{executors → dist/executors}/vercel-edge-config-sync/executor.d.ts +0 -0
- /package/{executors → dist/executors}/vercel-edge-config-sync/executor.d.ts.map +0 -0
- /package/{executors → dist/executors}/vercel-edge-config-sync/executor.js +0 -0
- /package/{executors → dist/executors}/vercel-edge-config-sync/executor.js.map +0 -0
- /package/{executors → dist/executors}/vercel-edge-config-sync/executor.options.d.ts +0 -0
- /package/{executors → dist/executors}/vercel-edge-config-sync/executor.options.d.ts.map +0 -0
- /package/{executors → dist/executors}/vercel-edge-config-sync/executor.options.js +0 -0
- /package/{executors → dist/executors}/vercel-edge-config-sync/executor.options.js.map +0 -0
- /package/{executors → dist/executors}/vercel-edge-config-sync/executor.task.d.ts +0 -0
- /package/{executors → dist/executors}/vercel-edge-config-sync/executor.task.d.ts.map +0 -0
- /package/{executors → dist/executors}/vercel-edge-config-sync/executor.task.js +0 -0
- /package/{executors → dist/executors}/vercel-edge-config-sync/executor.task.js.map +0 -0
- /package/{executors → dist/executors}/vercel-edge-config-sync/schema.json +0 -0
- /package/{executors → dist/executors}/vue-proxy-transform/executor.d.ts +0 -0
- /package/{executors → dist/executors}/vue-proxy-transform/executor.d.ts.map +0 -0
- /package/{executors → dist/executors}/vue-proxy-transform/executor.js +0 -0
- /package/{executors → dist/executors}/vue-proxy-transform/executor.js.map +0 -0
- /package/{executors → dist/executors}/vue-proxy-transform/executor.options.d.ts +0 -0
- /package/{executors → dist/executors}/vue-proxy-transform/executor.options.d.ts.map +0 -0
- /package/{executors → dist/executors}/vue-proxy-transform/executor.options.js +0 -0
- /package/{executors → dist/executors}/vue-proxy-transform/executor.options.js.map +0 -0
- /package/{executors → dist/executors}/vue-proxy-transform/executor.task.d.ts +0 -0
- /package/{executors → dist/executors}/vue-proxy-transform/executor.task.d.ts.map +0 -0
- /package/{executors → dist/executors}/vue-proxy-transform/executor.task.js +0 -0
- /package/{executors → dist/executors}/vue-proxy-transform/executor.task.js.map +0 -0
- /package/{executors → dist/executors}/vue-proxy-transform/schema.json +0 -0
- /package/{index.d.ts → dist/index.d.ts} +0 -0
- /package/{index.d.ts.map → dist/index.d.ts.map} +0 -0
- /package/{index.js → dist/index.js} +0 -0
- /package/{index.js.map → dist/index.js.map} +0 -0
- /package/{utils → dist/utils}/TaskBase.d.ts +0 -0
- /package/{utils → dist/utils}/TaskBase.d.ts.map +0 -0
- /package/{utils → dist/utils}/TaskBase.js +0 -0
- /package/{utils → dist/utils}/TaskBase.js.map +0 -0
- /package/{utils → dist/utils}/getProjectPackageJson.d.ts +0 -0
- /package/{utils → dist/utils}/getProjectPackageJson.d.ts.map +0 -0
- /package/{utils → dist/utils}/getProjectPackageJson.js +0 -0
- /package/{utils → dist/utils}/getProjectPackageJson.js.map +0 -0
- /package/{utils → dist/utils}/getProjectRoot.d.ts +0 -0
- /package/{utils → dist/utils}/getProjectRoot.d.ts.map +0 -0
- /package/{utils → dist/utils}/getProjectRoot.js +0 -0
- /package/{utils → dist/utils}/getProjectRoot.js.map +0 -0
- /package/{utils → dist/utils}/getProjectTsConfigJson.d.ts +0 -0
- /package/{utils → dist/utils}/getProjectTsConfigJson.d.ts.map +0 -0
- /package/{utils → dist/utils}/getProjectTsConfigJson.js +0 -0
- /package/{utils → dist/utils}/getProjectTsConfigJson.js.map +0 -0
- /package/{utils → dist/utils}/isVerbose.d.ts +0 -0
- /package/{utils → dist/utils}/isVerbose.d.ts.map +0 -0
- /package/{utils → dist/utils}/isVerbose.js +0 -0
- /package/{utils → dist/utils}/isVerbose.js.map +0 -0
- /package/{utils → dist/utils}/loadAndExpandDotEnvFile.d.ts +0 -0
- /package/{utils → dist/utils}/loadAndExpandDotEnvFile.d.ts.map +0 -0
- /package/{utils → dist/utils}/loadAndExpandDotEnvFile.js +0 -0
- /package/{utils → dist/utils}/loadAndExpandDotEnvFile.js.map +0 -0
- /package/{utils → dist/utils}/markdown-processing.d.ts +0 -0
- /package/{utils → dist/utils}/markdown-processing.d.ts.map +0 -0
- /package/{utils → dist/utils}/markdown-processing.js +0 -0
- /package/{utils → dist/utils}/markdown-processing.js.map +0 -0
- /package/{utils → dist/utils}/valid-html-tags.d.ts +0 -0
- /package/{utils → dist/utils}/valid-html-tags.d.ts.map +0 -0
- /package/{utils → dist/utils}/valid-html-tags.js +0 -0
- /package/{utils → dist/utils}/valid-html-tags.js.map +0 -0
- /package/{utils → dist/utils}/withCaching.d.ts +0 -0
- /package/{utils → dist/utils}/withCaching.d.ts.map +0 -0
- /package/{utils → dist/utils}/withCaching.js +0 -0
- /package/{utils → dist/utils}/withCaching.js.map +0 -0
|
@@ -0,0 +1,406 @@
|
|
|
1
|
+
// #region Imports
|
|
2
|
+
|
|
3
|
+
import svgpath from 'svgpath';
|
|
4
|
+
import { parse, type INode } from 'svgson';
|
|
5
|
+
|
|
6
|
+
// #endregion
|
|
7
|
+
|
|
8
|
+
// #region Types
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* Represents a parsed SVG node structure
|
|
12
|
+
* @public
|
|
13
|
+
*/
|
|
14
|
+
export type SvgNode = INode;
|
|
15
|
+
|
|
16
|
+
// #endregion
|
|
17
|
+
|
|
18
|
+
// #region Constants
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* Magic number for circle approximation with cubic Bezier curves
|
|
22
|
+
* Derived from 4/3 * tan(PI/8) ≈ 0.5522847498
|
|
23
|
+
* This constant provides the optimal control point offset for approximating
|
|
24
|
+
* a circular arc with a cubic Bezier curve
|
|
25
|
+
* @internal
|
|
26
|
+
*/
|
|
27
|
+
const KAPPA = 0.5522847498;
|
|
28
|
+
|
|
29
|
+
// #endregion
|
|
30
|
+
|
|
31
|
+
// #region Helper Functions
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* Safely parses a numeric attribute from an SVG node
|
|
35
|
+
* @param node - The SVG node
|
|
36
|
+
* @param attr - The attribute name to parse
|
|
37
|
+
* @param defaultValue - Default value if attribute is missing or invalid
|
|
38
|
+
* @returns The parsed numeric value or default
|
|
39
|
+
* @internal
|
|
40
|
+
*/
|
|
41
|
+
function parseAttr(node: SvgNode, attr: string, defaultValue = 0): number {
|
|
42
|
+
const value = node.attributes?.[attr];
|
|
43
|
+
if (value === undefined || value === null) {
|
|
44
|
+
return defaultValue;
|
|
45
|
+
}
|
|
46
|
+
const parsed = parseFloat(value as string);
|
|
47
|
+
return isNaN(parsed) ? defaultValue : parsed;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* Converts a circle element to a path data string
|
|
52
|
+
* Uses 4 cubic Bezier curves to approximate the circle
|
|
53
|
+
* @param cx - Center X coordinate
|
|
54
|
+
* @param cy - Center Y coordinate
|
|
55
|
+
* @param r - Radius
|
|
56
|
+
* @returns SVG path data string
|
|
57
|
+
* @internal
|
|
58
|
+
*/
|
|
59
|
+
function circleToPath(cx: number, cy: number, r: number): string {
|
|
60
|
+
const offsetX = r * KAPPA;
|
|
61
|
+
const offsetY = r * KAPPA;
|
|
62
|
+
|
|
63
|
+
return [
|
|
64
|
+
`M ${cx - r} ${cy}`,
|
|
65
|
+
`C ${cx - r} ${cy - offsetY} ${cx - offsetX} ${cy - r} ${cx} ${cy - r}`,
|
|
66
|
+
`C ${cx + offsetX} ${cy - r} ${cx + r} ${cy - offsetY} ${cx + r} ${cy}`,
|
|
67
|
+
`C ${cx + r} ${cy + offsetY} ${cx + offsetX} ${cy + r} ${cx} ${cy + r}`,
|
|
68
|
+
`C ${cx - offsetX} ${cy + r} ${cx - r} ${cy + offsetY} ${cx - r} ${cy}`,
|
|
69
|
+
'Z'
|
|
70
|
+
].join(' ');
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
/**
|
|
74
|
+
* Converts an ellipse element to a path data string
|
|
75
|
+
* Uses 4 cubic Bezier curves to approximate the ellipse
|
|
76
|
+
* @param cx - Center X coordinate
|
|
77
|
+
* @param cy - Center Y coordinate
|
|
78
|
+
* @param rx - Horizontal radius
|
|
79
|
+
* @param ry - Vertical radius
|
|
80
|
+
* @returns SVG path data string
|
|
81
|
+
* @internal
|
|
82
|
+
*/
|
|
83
|
+
function ellipseToPath(cx: number, cy: number, rx: number, ry: number): string {
|
|
84
|
+
const offsetX = rx * KAPPA;
|
|
85
|
+
const offsetY = ry * KAPPA;
|
|
86
|
+
|
|
87
|
+
return [
|
|
88
|
+
`M ${cx - rx} ${cy}`,
|
|
89
|
+
`C ${cx - rx} ${cy - offsetY} ${cx - offsetX} ${cy - ry} ${cx} ${cy - ry}`,
|
|
90
|
+
`C ${cx + offsetX} ${cy - ry} ${cx + rx} ${cy - offsetY} ${cx + rx} ${cy}`,
|
|
91
|
+
`C ${cx + rx} ${cy + offsetY} ${cx + offsetX} ${cy + ry} ${cx} ${cy + ry}`,
|
|
92
|
+
`C ${cx - offsetX} ${cy + ry} ${cx - rx} ${cy + offsetY} ${cx - rx} ${cy}`,
|
|
93
|
+
'Z'
|
|
94
|
+
].join(' ');
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
/**
|
|
98
|
+
* Converts a rect element to a path data string
|
|
99
|
+
* Handles rounded corners via rx/ry parameters
|
|
100
|
+
* @param x - Top-left X coordinate
|
|
101
|
+
* @param y - Top-left Y coordinate
|
|
102
|
+
* @param width - Rectangle width
|
|
103
|
+
* @param height - Rectangle height
|
|
104
|
+
* @param rx - Horizontal corner radius (optional)
|
|
105
|
+
* @param ry - Vertical corner radius (optional)
|
|
106
|
+
* @returns SVG path data string
|
|
107
|
+
* @internal
|
|
108
|
+
*/
|
|
109
|
+
function rectToPath(x: number, y: number, width: number, height: number, rx = 0, ry = 0): string {
|
|
110
|
+
if (rx === 0 && ry === 0) {
|
|
111
|
+
return `M ${x} ${y} H ${x + width} V ${y + height} H ${x} Z`;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
return [
|
|
115
|
+
`M ${x + rx} ${y}`,
|
|
116
|
+
`H ${x + width - rx}`,
|
|
117
|
+
`A ${rx} ${ry} 0 0 1 ${x + width} ${y + ry}`,
|
|
118
|
+
`V ${y + height - ry}`,
|
|
119
|
+
`A ${rx} ${ry} 0 0 1 ${x + width - rx} ${y + height}`,
|
|
120
|
+
`H ${x + rx}`,
|
|
121
|
+
`A ${rx} ${ry} 0 0 1 ${x} ${y + height - ry}`,
|
|
122
|
+
`V ${y + ry}`,
|
|
123
|
+
`A ${rx} ${ry} 0 0 1 ${x + rx} ${y}`,
|
|
124
|
+
'Z'
|
|
125
|
+
].join(' ');
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
/**
|
|
129
|
+
* Converts a line element to a path data string
|
|
130
|
+
* @param x1 - Start X coordinate
|
|
131
|
+
* @param y1 - Start Y coordinate
|
|
132
|
+
* @param x2 - End X coordinate
|
|
133
|
+
* @param y2 - End Y coordinate
|
|
134
|
+
* @returns SVG path data string
|
|
135
|
+
* @internal
|
|
136
|
+
*/
|
|
137
|
+
function lineToPath(x1: number, y1: number, x2: number, y2: number): string {
|
|
138
|
+
return `M ${x1} ${y1} L ${x2} ${y2}`;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
/**
|
|
142
|
+
* Converts a polyline element to a path data string
|
|
143
|
+
* @param points - Space or comma-separated list of point coordinates
|
|
144
|
+
* @returns SVG path data string
|
|
145
|
+
* @internal
|
|
146
|
+
*/
|
|
147
|
+
function polylineToPath(points: string): string {
|
|
148
|
+
const coords = points.trim().split(/[\s,]+/).map(Number);
|
|
149
|
+
if (coords.length < 2) {
|
|
150
|
+
return '';
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
const pathParts = [`M ${coords[0]} ${coords[1]}`];
|
|
154
|
+
for (let i = 2; i < coords.length; i += 2) {
|
|
155
|
+
pathParts.push(`L ${coords[i]} ${coords[i + 1]}`);
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
return pathParts.join(' ');
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
/**
|
|
162
|
+
* Converts a polygon element to a path data string
|
|
163
|
+
* Same as polyline but closes the path with Z
|
|
164
|
+
* @param points - Space or comma-separated list of point coordinates
|
|
165
|
+
* @returns SVG path data string
|
|
166
|
+
* @internal
|
|
167
|
+
*/
|
|
168
|
+
function polygonToPath(points: string): string {
|
|
169
|
+
const polylinePath = polylineToPath(points);
|
|
170
|
+
return polylinePath ? `${polylinePath} Z` : '';
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
/**
|
|
174
|
+
* Converts various SVG shape elements to path data
|
|
175
|
+
* @param node - The SVG node to convert
|
|
176
|
+
* @returns Path data string or empty string if conversion not possible
|
|
177
|
+
* @internal
|
|
178
|
+
*/
|
|
179
|
+
function elementToPath(node: SvgNode): string {
|
|
180
|
+
const { name, attributes } = node;
|
|
181
|
+
|
|
182
|
+
switch (name) {
|
|
183
|
+
case 'path':
|
|
184
|
+
return (attributes?.d as string) || '';
|
|
185
|
+
|
|
186
|
+
case 'circle': {
|
|
187
|
+
const cx = parseAttr(node, 'cx');
|
|
188
|
+
const cy = parseAttr(node, 'cy');
|
|
189
|
+
const r = parseAttr(node, 'r');
|
|
190
|
+
return circleToPath(cx, cy, r);
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
case 'ellipse': {
|
|
194
|
+
const cx = parseAttr(node, 'cx');
|
|
195
|
+
const cy = parseAttr(node, 'cy');
|
|
196
|
+
const rx = parseAttr(node, 'rx');
|
|
197
|
+
const ry = parseAttr(node, 'ry');
|
|
198
|
+
return ellipseToPath(cx, cy, rx, ry);
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
case 'rect': {
|
|
202
|
+
const x = parseAttr(node, 'x');
|
|
203
|
+
const y = parseAttr(node, 'y');
|
|
204
|
+
const width = parseAttr(node, 'width');
|
|
205
|
+
const height = parseAttr(node, 'height');
|
|
206
|
+
const rx = parseAttr(node, 'rx');
|
|
207
|
+
const ry = parseAttr(node, 'ry');
|
|
208
|
+
return rectToPath(x, y, width, height, rx, ry);
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
case 'line': {
|
|
212
|
+
const x1 = parseAttr(node, 'x1');
|
|
213
|
+
const y1 = parseAttr(node, 'y1');
|
|
214
|
+
const x2 = parseAttr(node, 'x2');
|
|
215
|
+
const y2 = parseAttr(node, 'y2');
|
|
216
|
+
return lineToPath(x1, y1, x2, y2);
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
case 'polyline': {
|
|
220
|
+
const points = (attributes?.points as string) || '';
|
|
221
|
+
return polylineToPath(points);
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
case 'polygon': {
|
|
225
|
+
const points = (attributes?.points as string) || '';
|
|
226
|
+
return polygonToPath(points);
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
default:
|
|
230
|
+
return '';
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
// #endregion
|
|
235
|
+
|
|
236
|
+
// #region Public API
|
|
237
|
+
|
|
238
|
+
/**
|
|
239
|
+
* Converts an SVG string to a single combined path data string
|
|
240
|
+
* Traverses the SVG AST and converts all shape elements to paths
|
|
241
|
+
* @param svgContent - The SVG content as a string
|
|
242
|
+
* @returns Combined path data string
|
|
243
|
+
* @public
|
|
244
|
+
*/
|
|
245
|
+
export async function svgToSinglePath(svgContent: string): Promise<string> {
|
|
246
|
+
const svg = await parse(svgContent);
|
|
247
|
+
const paths: string[] = [];
|
|
248
|
+
|
|
249
|
+
function traverse(node: SvgNode): void {
|
|
250
|
+
const pathData = elementToPath(node);
|
|
251
|
+
if (pathData) {
|
|
252
|
+
paths.push(pathData);
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
if (node.children && Array.isArray(node.children)) {
|
|
256
|
+
for (const child of node.children) {
|
|
257
|
+
traverse(child);
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
traverse(svg);
|
|
263
|
+
return paths.join(' ');
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
/**
|
|
267
|
+
* Result of a normalized SVG conversion
|
|
268
|
+
* @public
|
|
269
|
+
*/
|
|
270
|
+
export interface INormalizedSvgResult {
|
|
271
|
+
pathData: string;
|
|
272
|
+
sourceViewBox: string;
|
|
273
|
+
wasNormalized: boolean;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
/**
|
|
277
|
+
* Parsed viewBox components
|
|
278
|
+
* @internal
|
|
279
|
+
*/
|
|
280
|
+
interface IViewBox {
|
|
281
|
+
minX: number;
|
|
282
|
+
minY: number;
|
|
283
|
+
width: number;
|
|
284
|
+
height: number;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
/**
|
|
288
|
+
* Parses a viewBox attribute string into its components
|
|
289
|
+
* @param viewBox - The viewBox attribute value
|
|
290
|
+
* @returns Parsed viewBox or null if invalid
|
|
291
|
+
* @internal
|
|
292
|
+
*/
|
|
293
|
+
function parseViewBox(viewBox: string): IViewBox | null {
|
|
294
|
+
const parts = viewBox.split(/[\s,]+/).map(Number);
|
|
295
|
+
|
|
296
|
+
if (parts.length !== 4 || parts.some(isNaN)) {
|
|
297
|
+
return null;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
return {
|
|
301
|
+
minX: parts[0],
|
|
302
|
+
minY: parts[1],
|
|
303
|
+
width: parts[2],
|
|
304
|
+
height: parts[3]
|
|
305
|
+
};
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
/**
|
|
309
|
+
* Computes a transform to map source viewBox coordinates to the target size.
|
|
310
|
+
* Scales uniformly and centers the content.
|
|
311
|
+
* @param source - Source viewBox
|
|
312
|
+
* @param targetSize - Target viewBox dimension (e.g. 24 for 0 0 24 24)
|
|
313
|
+
* @returns Scale, translate-x, and translate-y values
|
|
314
|
+
* @internal
|
|
315
|
+
*/
|
|
316
|
+
function computeNormalizationTransform(source: IViewBox, targetSize: number): { scale: number; tx: number; ty: number } {
|
|
317
|
+
const scale = Math.min(targetSize / source.width, targetSize / source.height);
|
|
318
|
+
const tx = (targetSize - source.width * scale) / 2 - source.minX * scale;
|
|
319
|
+
const ty = (targetSize - source.height * scale) / 2 - source.minY * scale;
|
|
320
|
+
|
|
321
|
+
return { scale, tx, ty };
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
/**
|
|
325
|
+
* Applies translate + scale transform to SVG path data
|
|
326
|
+
* @param pathData - Raw SVG path data string
|
|
327
|
+
* @param transform - Transform parameters
|
|
328
|
+
* @returns Transformed path data string
|
|
329
|
+
* @internal
|
|
330
|
+
*/
|
|
331
|
+
function transformPathData(pathData: string, transform: { scale: number; tx: number; ty: number }): string {
|
|
332
|
+
return svgpath(pathData)
|
|
333
|
+
.translate(transform.tx, transform.ty)
|
|
334
|
+
.scale(transform.scale)
|
|
335
|
+
.abs()
|
|
336
|
+
.round(3)
|
|
337
|
+
.toString();
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
/**
|
|
341
|
+
* Converts an SVG string to a single normalized path data string.
|
|
342
|
+
* If the SVG viewBox differs from the target size, all path coordinates
|
|
343
|
+
* are scaled and centered to fit the target viewBox.
|
|
344
|
+
* @param svgContent - The SVG content as a string
|
|
345
|
+
* @param targetSize - Target viewBox dimension (e.g. 24 for 0 0 24 24)
|
|
346
|
+
* @returns Normalized result with path data and metadata
|
|
347
|
+
* @public
|
|
348
|
+
*/
|
|
349
|
+
export async function svgToNormalizedSinglePath(svgContent: string, targetSize: number): Promise<INormalizedSvgResult> {
|
|
350
|
+
const svg = await parse(svgContent);
|
|
351
|
+
|
|
352
|
+
const viewBoxAttr = svg.attributes?.viewBox;
|
|
353
|
+
const sourceViewBox = viewBoxAttr ? parseViewBox(viewBoxAttr) : null;
|
|
354
|
+
|
|
355
|
+
const paths: string[] = [];
|
|
356
|
+
|
|
357
|
+
function traverse(node: SvgNode): void {
|
|
358
|
+
const pathData = elementToPath(node);
|
|
359
|
+
if (pathData) {
|
|
360
|
+
paths.push(pathData);
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
if (node.children && Array.isArray(node.children)) {
|
|
364
|
+
for (const child of node.children) {
|
|
365
|
+
traverse(child);
|
|
366
|
+
}
|
|
367
|
+
}
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
traverse(svg);
|
|
371
|
+
|
|
372
|
+
const combinedPath = paths.join(' ');
|
|
373
|
+
const sourceViewBoxStr = viewBoxAttr ?? 'none';
|
|
374
|
+
|
|
375
|
+
if (!sourceViewBox) {
|
|
376
|
+
return {
|
|
377
|
+
pathData: combinedPath,
|
|
378
|
+
sourceViewBox: sourceViewBoxStr,
|
|
379
|
+
wasNormalized: false
|
|
380
|
+
};
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
const isAlreadyTarget = sourceViewBox.minX === 0
|
|
384
|
+
&& sourceViewBox.minY === 0
|
|
385
|
+
&& sourceViewBox.width === targetSize
|
|
386
|
+
&& sourceViewBox.height === targetSize;
|
|
387
|
+
|
|
388
|
+
if (isAlreadyTarget) {
|
|
389
|
+
return {
|
|
390
|
+
pathData: combinedPath,
|
|
391
|
+
sourceViewBox: sourceViewBoxStr,
|
|
392
|
+
wasNormalized: false
|
|
393
|
+
};
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
const transform = computeNormalizationTransform(sourceViewBox, targetSize);
|
|
397
|
+
const normalizedPath = transformPathData(combinedPath, transform);
|
|
398
|
+
|
|
399
|
+
return {
|
|
400
|
+
pathData: normalizedPath,
|
|
401
|
+
sourceViewBox: sourceViewBoxStr,
|
|
402
|
+
wasNormalized: true
|
|
403
|
+
};
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
// #endregion
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
// #region Imports
|
|
2
|
+
|
|
3
|
+
import type { IconCollectionDownloaderTask } from './executor.task';
|
|
4
|
+
|
|
5
|
+
// #endregion
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* @private
|
|
9
|
+
*/
|
|
10
|
+
export type IconCollectionDownloaderExecutorOptions = Omit<IconCollectionDownloaderTask.IIconCollectionDownloaderTaskOptions, 'cwd' | 'packageJson' | 'tsConfigJson'>;
|