@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,174 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Shared Markdown post-processing utilities for TypeDoc-generated documentation.
|
|
3
|
+
* All functions are stateless and operate on individual files.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
// gray-matter is CJS — use import = require() to avoid ESM interop issues in NX JIT
|
|
7
|
+
import matter = require('gray-matter');
|
|
8
|
+
import * as fs from 'node:fs';
|
|
9
|
+
import * as path from 'node:path';
|
|
10
|
+
import { VALID_HTML_TAGS } from './valid-html-tags';
|
|
11
|
+
|
|
12
|
+
export interface INormalizeFrontmatterOptions {
|
|
13
|
+
generated?: boolean;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* Ensures the Markdown file has valid frontmatter with a title.
|
|
18
|
+
* Optionally marks the file as auto-generated.
|
|
19
|
+
*/
|
|
20
|
+
export function normalizeFrontmatter(filePath: string, options: INormalizeFrontmatterOptions = {}): void {
|
|
21
|
+
const content = fs.readFileSync(filePath, 'utf-8');
|
|
22
|
+
const parsed = matter(content);
|
|
23
|
+
|
|
24
|
+
if (!parsed.data['title'] && parsed.content) {
|
|
25
|
+
const h1Match = parsed.content.match(/^#\s+(.+)$/m);
|
|
26
|
+
if (h1Match) {
|
|
27
|
+
parsed.data['title'] = h1Match[1].trim();
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
if (options.generated) {
|
|
32
|
+
parsed.data['generated'] = true;
|
|
33
|
+
parsed.data['editUrl'] = false;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
const updated = matter.stringify(parsed.content, parsed.data);
|
|
37
|
+
fs.writeFileSync(filePath, updated, 'utf-8');
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
/**
|
|
41
|
+
* Rewrites `.md` extensions to clean URLs and README links to parent directory.
|
|
42
|
+
* Required for VitePress compatibility.
|
|
43
|
+
*/
|
|
44
|
+
export function rewriteLinks(filePath: string): void {
|
|
45
|
+
let content = fs.readFileSync(filePath, 'utf-8');
|
|
46
|
+
|
|
47
|
+
content = content.replace(
|
|
48
|
+
/\]\(([^)]+?)\.md(#[^)]*?)?\)/g,
|
|
49
|
+
(match: string, linkPath: string, anchor: string | undefined) => {
|
|
50
|
+
if (linkPath.startsWith('http://') || linkPath.startsWith('https://')) {
|
|
51
|
+
return match;
|
|
52
|
+
}
|
|
53
|
+
return `](${linkPath}${anchor ?? ''})`;
|
|
54
|
+
},
|
|
55
|
+
);
|
|
56
|
+
|
|
57
|
+
content = content.replace(
|
|
58
|
+
/\]\((?:\.\/)?README(#[^)]*?)?\)/g,
|
|
59
|
+
(_match: string, anchor: string | undefined) => `](../${anchor ?? ''})`,
|
|
60
|
+
);
|
|
61
|
+
|
|
62
|
+
fs.writeFileSync(filePath, content, 'utf-8');
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
/**
|
|
66
|
+
* Removes the TypeDoc-generated package back-link and separator at the top.
|
|
67
|
+
* Matches any scoped package pattern: `[**@scope/package-name**](../)`
|
|
68
|
+
*/
|
|
69
|
+
export function stripPackageBackLink(filePath: string): void {
|
|
70
|
+
let content = fs.readFileSync(filePath, 'utf-8');
|
|
71
|
+
content = content.replace(/\[?\[?\*\*@[^*]+\*\*\]?\(\.\.\/?\)\]?\s*\n+\*{3}\s*\n+/g, '');
|
|
72
|
+
fs.writeFileSync(filePath, content, 'utf-8');
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
/**
|
|
76
|
+
* Resolves unresolved `{@link Foo}` TSDoc references in inline code.
|
|
77
|
+
* Converts `{@link Foo}` → `Foo`.
|
|
78
|
+
*/
|
|
79
|
+
export function resolveInlineLinks(filePath: string): void {
|
|
80
|
+
let content = fs.readFileSync(filePath, 'utf-8');
|
|
81
|
+
content = content.replace(/\{@link\s+([^}]+)\}/g, '$1');
|
|
82
|
+
fs.writeFileSync(filePath, content, 'utf-8');
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
/**
|
|
86
|
+
* Escapes angle brackets in TypeDoc-generated Markdown that Vue's compiler
|
|
87
|
+
* would misinterpret as HTML/component tags (e.g. `Promise<boolean>`).
|
|
88
|
+
* Only processes lines outside fenced code blocks and inline code spans.
|
|
89
|
+
*/
|
|
90
|
+
export function escapeAngleBrackets(filePath: string): void {
|
|
91
|
+
const content = fs.readFileSync(filePath, 'utf-8');
|
|
92
|
+
const lines = content.split('\n');
|
|
93
|
+
let insideCodeFence = false;
|
|
94
|
+
const result: string[] = [];
|
|
95
|
+
|
|
96
|
+
for (const line of lines) {
|
|
97
|
+
if (/^```/.test(line.trimStart())) {
|
|
98
|
+
insideCodeFence = !insideCodeFence;
|
|
99
|
+
result.push(line);
|
|
100
|
+
continue;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
if (insideCodeFence) {
|
|
104
|
+
result.push(line);
|
|
105
|
+
continue;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
const segments = line.split(/(`[^`]*`)/g);
|
|
109
|
+
const escaped = segments
|
|
110
|
+
.map((segment: string, index: number) => {
|
|
111
|
+
if (index % 2 === 1) return segment;
|
|
112
|
+
|
|
113
|
+
return segment.replace(
|
|
114
|
+
/(?<!\\)<(\/?[A-Za-z][A-Za-z0-9., |_[\]]*?)(?<!\\)>/g,
|
|
115
|
+
(_match: string, inner: string) => {
|
|
116
|
+
const tagName = inner
|
|
117
|
+
.replace(/^\//, '')
|
|
118
|
+
.split(/[\s,.[|]/)[0]
|
|
119
|
+
.toLowerCase();
|
|
120
|
+
|
|
121
|
+
if (VALID_HTML_TAGS.has(tagName)) return _match;
|
|
122
|
+
return `\\<${inner}\\>`;
|
|
123
|
+
},
|
|
124
|
+
);
|
|
125
|
+
})
|
|
126
|
+
.join('');
|
|
127
|
+
|
|
128
|
+
result.push(escaped);
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
const updated = result.join('\n');
|
|
132
|
+
if (updated !== content) {
|
|
133
|
+
fs.writeFileSync(filePath, updated, 'utf-8');
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
/**
|
|
138
|
+
* Recursively counts Markdown files in a directory.
|
|
139
|
+
*/
|
|
140
|
+
export function countMarkdownFiles(dir: string): number {
|
|
141
|
+
if (!fs.existsSync(dir)) return 0;
|
|
142
|
+
let count = 0;
|
|
143
|
+
|
|
144
|
+
for (const entry of fs.readdirSync(dir, { withFileTypes: true })) {
|
|
145
|
+
if (entry.isDirectory()) {
|
|
146
|
+
count += countMarkdownFiles(path.join(dir, entry.name));
|
|
147
|
+
} else if (entry.name.endsWith('.md')) {
|
|
148
|
+
count++;
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
return count;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
/**
|
|
156
|
+
* Recursively processes all Markdown files in a directory,
|
|
157
|
+
* applying normalization, link rewriting, and escaping.
|
|
158
|
+
*/
|
|
159
|
+
export function processMarkdownFiles(dir: string, options: INormalizeFrontmatterOptions = {}): void {
|
|
160
|
+
if (!fs.existsSync(dir)) return;
|
|
161
|
+
|
|
162
|
+
for (const entry of fs.readdirSync(dir, { withFileTypes: true })) {
|
|
163
|
+
const fullPath = path.join(dir, entry.name);
|
|
164
|
+
if (entry.isDirectory()) {
|
|
165
|
+
processMarkdownFiles(fullPath, options);
|
|
166
|
+
} else if (entry.name.endsWith('.md')) {
|
|
167
|
+
normalizeFrontmatter(fullPath, options);
|
|
168
|
+
rewriteLinks(fullPath);
|
|
169
|
+
if (options.generated) {
|
|
170
|
+
escapeAngleBrackets(fullPath);
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Comprehensive set of valid HTML tags that should not be escaped
|
|
3
|
+
* when processing TypeDoc-generated Markdown for VitePress.
|
|
4
|
+
*/
|
|
5
|
+
export const VALID_HTML_TAGS = new Set<string>([
|
|
6
|
+
'a',
|
|
7
|
+
'abbr',
|
|
8
|
+
'article',
|
|
9
|
+
'aside',
|
|
10
|
+
'b',
|
|
11
|
+
'blockquote',
|
|
12
|
+
'body',
|
|
13
|
+
'br',
|
|
14
|
+
'button',
|
|
15
|
+
'code',
|
|
16
|
+
'dd',
|
|
17
|
+
'del',
|
|
18
|
+
'details',
|
|
19
|
+
'div',
|
|
20
|
+
'dl',
|
|
21
|
+
'dt',
|
|
22
|
+
'em',
|
|
23
|
+
'fieldset',
|
|
24
|
+
'figcaption',
|
|
25
|
+
'figure',
|
|
26
|
+
'footer',
|
|
27
|
+
'form',
|
|
28
|
+
'h1',
|
|
29
|
+
'h2',
|
|
30
|
+
'h3',
|
|
31
|
+
'h4',
|
|
32
|
+
'h5',
|
|
33
|
+
'h6',
|
|
34
|
+
'head',
|
|
35
|
+
'header',
|
|
36
|
+
'hr',
|
|
37
|
+
'html',
|
|
38
|
+
'i',
|
|
39
|
+
'img',
|
|
40
|
+
'input',
|
|
41
|
+
'kbd',
|
|
42
|
+
'label',
|
|
43
|
+
'legend',
|
|
44
|
+
'li',
|
|
45
|
+
'link',
|
|
46
|
+
'main',
|
|
47
|
+
'mark',
|
|
48
|
+
'meta',
|
|
49
|
+
'nav',
|
|
50
|
+
'ol',
|
|
51
|
+
'option',
|
|
52
|
+
'p',
|
|
53
|
+
'picture',
|
|
54
|
+
'pre',
|
|
55
|
+
'ruby',
|
|
56
|
+
's',
|
|
57
|
+
'script',
|
|
58
|
+
'section',
|
|
59
|
+
'select',
|
|
60
|
+
'small',
|
|
61
|
+
'source',
|
|
62
|
+
'span',
|
|
63
|
+
'strong',
|
|
64
|
+
'style',
|
|
65
|
+
'sub',
|
|
66
|
+
'summary',
|
|
67
|
+
'sup',
|
|
68
|
+
'table',
|
|
69
|
+
'tbody',
|
|
70
|
+
'td',
|
|
71
|
+
'textarea',
|
|
72
|
+
'tfoot',
|
|
73
|
+
'th',
|
|
74
|
+
'thead',
|
|
75
|
+
'tr',
|
|
76
|
+
'u',
|
|
77
|
+
'ul',
|
|
78
|
+
'video',
|
|
79
|
+
]);
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
// #region Imports
|
|
2
|
+
|
|
3
|
+
import { FileCache, type IFileCacheOptions } from '@breadstone-infrastructure/utilities';
|
|
4
|
+
|
|
5
|
+
// #endregion
|
|
6
|
+
|
|
7
|
+
export function withCaching(options?: IFileCacheOptions): FileCache {
|
|
8
|
+
const fileCache = new FileCache(options ?? {
|
|
9
|
+
dirPath: '',
|
|
10
|
+
enabled: false
|
|
11
|
+
});
|
|
12
|
+
|
|
13
|
+
return fileCache;
|
|
14
|
+
}
|
|
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
|
|
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
|