@powerlines/core 0.9.1 → 0.9.2
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/constants/api.cjs +18 -0
- package/dist/constants/api.d.cts +6 -0
- package/dist/constants/api.d.cts.map +1 -0
- package/dist/constants/api.d.mts +6 -0
- package/dist/constants/api.d.mts.map +1 -0
- package/dist/constants/api.mjs +16 -0
- package/dist/constants/api.mjs.map +1 -0
- package/dist/constants/commands.cjs +3 -11
- package/dist/constants/commands.d.cts +1 -1
- package/dist/constants/commands.d.cts.map +1 -1
- package/dist/constants/commands.d.mts +1 -1
- package/dist/constants/commands.d.mts.map +1 -1
- package/dist/constants/commands.mjs +3 -11
- package/dist/constants/commands.mjs.map +1 -1
- package/dist/constants/devtools.cjs +23 -0
- package/dist/constants/devtools.d.cts +13 -0
- package/dist/constants/devtools.d.cts.map +1 -0
- package/dist/constants/devtools.d.mts +13 -0
- package/dist/constants/devtools.d.mts.map +1 -0
- package/dist/constants/devtools.mjs +14 -0
- package/dist/constants/devtools.mjs.map +1 -0
- package/dist/constants/environments.cjs +1 -0
- package/dist/constants/extensions.cjs +21 -0
- package/dist/constants/extensions.d.cts +5 -0
- package/dist/constants/extensions.d.cts.map +1 -0
- package/dist/constants/extensions.d.mts +5 -0
- package/dist/constants/extensions.d.mts.map +1 -0
- package/dist/constants/extensions.mjs +20 -0
- package/dist/constants/extensions.mjs.map +1 -0
- package/dist/constants/fs.cjs +1 -0
- package/dist/constants/hooks.cjs +1 -0
- package/dist/constants/index.cjs +48 -24
- package/dist/constants/index.d.cts +5 -1
- package/dist/constants/index.d.mts +5 -1
- package/dist/constants/index.mjs +6 -2
- package/dist/constants/log-level.cjs +90 -0
- package/dist/constants/log-level.d.cts +63 -0
- package/dist/constants/log-level.d.cts.map +1 -0
- package/dist/constants/log-level.d.mts +63 -0
- package/dist/constants/log-level.d.mts.map +1 -0
- package/dist/constants/log-level.mjs +82 -0
- package/dist/constants/log-level.mjs.map +1 -0
- package/dist/constants/meta.cjs +1 -0
- package/dist/constants/plugin.cjs +3 -2
- package/dist/constants/plugin.d.cts +2 -2
- package/dist/constants/plugin.d.mts +2 -2
- package/dist/context/base-context.cjs +127 -0
- package/dist/context/base-context.d.cts +81 -0
- package/dist/context/base-context.d.cts.map +1 -0
- package/dist/context/base-context.d.mts +81 -0
- package/dist/context/base-context.d.mts.map +1 -0
- package/dist/context/base-context.mjs +125 -0
- package/dist/context/base-context.mjs.map +1 -0
- package/dist/context/context.cjs +934 -0
- package/dist/context/context.d.cts +369 -0
- package/dist/context/context.d.cts.map +1 -0
- package/dist/context/context.d.mts +369 -0
- package/dist/context/context.d.mts.map +1 -0
- package/dist/context/context.mjs +932 -0
- package/dist/context/context.mjs.map +1 -0
- package/dist/context/environment-context.cjs +219 -0
- package/dist/context/environment-context.d.cts +100 -0
- package/dist/context/environment-context.d.cts.map +1 -0
- package/dist/context/environment-context.d.mts +100 -0
- package/dist/context/environment-context.d.mts.map +1 -0
- package/dist/context/environment-context.mjs +218 -0
- package/dist/context/environment-context.mjs.map +1 -0
- package/dist/context/execution-context.cjs +230 -0
- package/dist/context/execution-context.d.cts +101 -0
- package/dist/context/execution-context.d.cts.map +1 -0
- package/dist/context/execution-context.d.mts +101 -0
- package/dist/context/execution-context.d.mts.map +1 -0
- package/dist/context/execution-context.mjs +228 -0
- package/dist/context/execution-context.mjs.map +1 -0
- package/dist/context/index.cjs +12 -0
- package/dist/context/index.d.cts +6 -0
- package/dist/context/index.d.mts +6 -0
- package/dist/context/index.mjs +7 -0
- package/dist/context/plugin-context.cjs +83 -0
- package/dist/context/plugin-context.d.cts +18 -0
- package/dist/context/plugin-context.d.cts.map +1 -0
- package/dist/context/plugin-context.d.mts +18 -0
- package/dist/context/plugin-context.d.mts.map +1 -0
- package/dist/context/plugin-context.mjs +82 -0
- package/dist/context/plugin-context.mjs.map +1 -0
- package/dist/index.cjs +62 -6
- package/dist/index.d.cts +23 -11
- package/dist/index.d.mts +23 -11
- package/dist/index.mjs +17 -5
- package/dist/lib/config.cjs +167 -28
- package/dist/lib/config.d.cts +95 -14
- package/dist/lib/config.d.cts.map +1 -1
- package/dist/lib/config.d.mts +95 -14
- package/dist/lib/config.d.mts.map +1 -1
- package/dist/lib/config.mjs +160 -28
- package/dist/lib/config.mjs.map +1 -1
- package/dist/lib/context-helpers.cjs +43 -0
- package/dist/lib/context-helpers.d.cts +19 -0
- package/dist/lib/context-helpers.d.cts.map +1 -0
- package/dist/lib/context-helpers.d.mts +19 -0
- package/dist/lib/context-helpers.d.mts.map +1 -0
- package/dist/lib/context-helpers.mjs +41 -0
- package/dist/lib/context-helpers.mjs.map +1 -0
- package/dist/lib/entry.cjs +9 -9
- package/dist/lib/entry.d.cts.map +1 -1
- package/dist/lib/entry.d.mts.map +1 -1
- package/dist/lib/entry.mjs +9 -9
- package/dist/lib/entry.mjs.map +1 -1
- package/dist/lib/environment.cjs +72 -0
- package/dist/lib/environment.d.cts +12 -0
- package/dist/lib/environment.d.cts.map +1 -0
- package/dist/lib/environment.d.mts +12 -0
- package/dist/lib/environment.d.mts.map +1 -0
- package/dist/lib/environment.mjs +67 -0
- package/dist/lib/environment.mjs.map +1 -0
- package/dist/lib/events.cjs +43 -0
- package/dist/lib/events.d.cts +10 -0
- package/dist/lib/events.d.cts.map +1 -0
- package/dist/lib/events.d.mts +10 -0
- package/dist/lib/events.d.mts.map +1 -0
- package/dist/lib/events.mjs +42 -0
- package/dist/lib/events.mjs.map +1 -0
- package/dist/lib/generate-types.cjs +371 -0
- package/dist/lib/generate-types.d.cts +67 -0
- package/dist/lib/generate-types.d.cts.map +1 -0
- package/dist/lib/generate-types.d.mts +67 -0
- package/dist/lib/generate-types.d.mts.map +1 -0
- package/dist/lib/generate-types.mjs +368 -0
- package/dist/lib/generate-types.mjs.map +1 -0
- package/dist/lib/hooks.cjs +152 -0
- package/dist/lib/hooks.d.cts +28 -0
- package/dist/lib/hooks.d.cts.map +1 -0
- package/dist/lib/hooks.d.mts +28 -0
- package/dist/lib/hooks.d.mts.map +1 -0
- package/dist/lib/hooks.mjs +147 -0
- package/dist/lib/hooks.mjs.map +1 -0
- package/dist/lib/index.cjs +64 -6
- package/dist/lib/index.d.cts +15 -3
- package/dist/lib/index.d.mts +15 -3
- package/dist/lib/index.mjs +19 -5
- package/dist/lib/install-dependencies.cjs +25 -0
- package/dist/lib/install-dependencies.d.cts +12 -0
- package/dist/lib/install-dependencies.d.cts.map +1 -0
- package/dist/lib/install-dependencies.d.mts +12 -0
- package/dist/lib/install-dependencies.d.mts.map +1 -0
- package/dist/lib/install-dependencies.mjs +24 -0
- package/dist/lib/install-dependencies.mjs.map +1 -0
- package/dist/lib/meta.cjs +57 -0
- package/dist/lib/meta.d.cts +34 -0
- package/dist/lib/meta.d.cts.map +1 -0
- package/dist/lib/meta.d.mts +34 -0
- package/dist/lib/meta.d.mts.map +1 -0
- package/dist/lib/meta.mjs +54 -0
- package/dist/lib/meta.mjs.map +1 -0
- package/dist/lib/plugins.cjs +150 -0
- package/dist/lib/plugins.d.cts +40 -0
- package/dist/lib/plugins.d.cts.map +1 -0
- package/dist/lib/plugins.d.mts +40 -0
- package/dist/lib/plugins.d.mts.map +1 -0
- package/dist/lib/plugins.mjs +146 -0
- package/dist/lib/plugins.mjs.map +1 -0
- package/dist/lib/resolver.cjs +35 -0
- package/dist/lib/resolver.d.cts +21 -0
- package/dist/lib/resolver.d.cts.map +1 -0
- package/dist/lib/resolver.d.mts +21 -0
- package/dist/lib/resolver.d.mts.map +1 -0
- package/dist/lib/resolver.mjs +33 -0
- package/dist/lib/resolver.mjs.map +1 -0
- package/dist/lib/schemas.cjs +9 -0
- package/dist/lib/schemas.d.cts +2 -0
- package/dist/lib/schemas.d.mts +2 -0
- package/dist/lib/schemas.mjs +3 -0
- package/dist/lib/streaming-channel.cjs +260 -0
- package/dist/lib/streaming-channel.d.cts +133 -0
- package/dist/lib/streaming-channel.d.cts.map +1 -0
- package/dist/lib/streaming-channel.d.mts +133 -0
- package/dist/lib/streaming-channel.d.mts.map +1 -0
- package/dist/lib/streaming-channel.mjs +258 -0
- package/dist/lib/streaming-channel.mjs.map +1 -0
- package/dist/lib/typescript/index.cjs +16 -0
- package/dist/lib/typescript/index.d.cts +3 -0
- package/dist/lib/typescript/index.d.mts +3 -0
- package/dist/lib/typescript/index.mjs +4 -0
- package/dist/lib/typescript/ts-morph.cjs +105 -0
- package/dist/lib/typescript/ts-morph.d.cts +38 -0
- package/dist/lib/typescript/ts-morph.d.cts.map +1 -0
- package/dist/lib/typescript/ts-morph.d.mts +38 -0
- package/dist/lib/typescript/ts-morph.d.mts.map +1 -0
- package/dist/lib/typescript/ts-morph.mjs +102 -0
- package/dist/lib/typescript/ts-morph.mjs.map +1 -0
- package/dist/lib/typescript/tsconfig.cjs +253 -0
- package/dist/lib/typescript/tsconfig.d.cts +77 -0
- package/dist/lib/typescript/tsconfig.d.cts.map +1 -0
- package/dist/lib/typescript/tsconfig.d.mts +77 -0
- package/dist/lib/typescript/tsconfig.d.mts.map +1 -0
- package/dist/lib/typescript/tsconfig.mjs +240 -0
- package/dist/lib/typescript/tsconfig.mjs.map +1 -0
- package/dist/lib/unplugin/helpers.cjs +2 -2
- package/dist/lib/unplugin/module-resolution.cjs +21 -20
- package/dist/lib/unplugin/module-resolution.d.cts +8 -0
- package/dist/lib/unplugin/module-resolution.d.cts.map +1 -1
- package/dist/lib/unplugin/module-resolution.d.mts +8 -0
- package/dist/lib/unplugin/module-resolution.d.mts.map +1 -1
- package/dist/lib/unplugin/module-resolution.mjs +20 -20
- package/dist/lib/unplugin/module-resolution.mjs.map +1 -1
- package/dist/lib/unplugin/plugin.cjs +57 -63
- package/dist/lib/unplugin/plugin.d.cts +11 -5
- package/dist/lib/unplugin/plugin.d.cts.map +1 -1
- package/dist/lib/unplugin/plugin.d.mts +11 -5
- package/dist/lib/unplugin/plugin.d.mts.map +1 -1
- package/dist/lib/unplugin/plugin.mjs +57 -63
- package/dist/lib/unplugin/plugin.mjs.map +1 -1
- package/dist/lib/utilities/file-header.cjs +2 -2
- package/dist/lib/utilities/file-header.mjs +2 -2
- package/dist/lib/utilities/file-header.mjs.map +1 -1
- package/dist/lib/utilities/format.cjs +16 -8
- package/dist/lib/utilities/format.d.cts.map +1 -1
- package/dist/lib/utilities/format.d.mts.map +1 -1
- package/dist/lib/utilities/format.mjs +15 -8
- package/dist/lib/utilities/format.mjs.map +1 -1
- package/dist/lib/utilities/index.cjs +2 -2
- package/dist/lib/utilities/index.mjs +2 -2
- package/dist/lib/utilities/source-file.cjs +1 -1
- package/dist/lib/utilities/source-map.cjs +1 -1
- package/dist/lib/utilities/write-file.cjs +1 -2
- package/dist/lib/utilities/write-file.d.cts +1 -1
- package/dist/lib/utilities/write-file.d.cts.map +1 -1
- package/dist/lib/utilities/write-file.d.mts +1 -1
- package/dist/lib/utilities/write-file.d.mts.map +1 -1
- package/dist/lib/utilities/write-file.mjs +1 -2
- package/dist/lib/utilities/write-file.mjs.map +1 -1
- package/dist/lib/vfs.cjs +1104 -0
- package/dist/lib/vfs.d.cts +321 -0
- package/dist/lib/vfs.d.cts.map +1 -0
- package/dist/lib/vfs.d.mts +321 -0
- package/dist/lib/vfs.d.mts.map +1 -0
- package/dist/lib/vfs.mjs +1102 -0
- package/dist/lib/vfs.mjs.map +1 -0
- package/dist/plugin-base.cjs +5 -9
- package/dist/plugin-base.mjs +5 -9
- package/dist/plugin-base.mjs.map +1 -1
- package/dist/plugin-utils/build-helpers.cjs +2 -2
- package/dist/plugin-utils/build-helpers.mjs +2 -2
- package/dist/plugin-utils/build-helpers.mjs.map +1 -1
- package/dist/plugin-utils/combine-plugins.d.cts +7 -8
- package/dist/plugin-utils/combine-plugins.d.cts.map +1 -1
- package/dist/plugin-utils/combine-plugins.d.mts +7 -8
- package/dist/plugin-utils/combine-plugins.d.mts.map +1 -1
- package/dist/plugin-utils/combine-plugins.mjs.map +1 -1
- package/dist/plugin-utils/context-helpers.cjs +29 -16
- package/dist/plugin-utils/context-helpers.d.cts +10 -2
- package/dist/plugin-utils/context-helpers.d.cts.map +1 -1
- package/dist/plugin-utils/context-helpers.d.mts +10 -2
- package/dist/plugin-utils/context-helpers.d.mts.map +1 -1
- package/dist/plugin-utils/context-helpers.mjs +29 -17
- package/dist/plugin-utils/context-helpers.mjs.map +1 -1
- package/dist/plugin-utils/docs-helper.cjs +17 -0
- package/dist/plugin-utils/docs-helper.d.cts +11 -0
- package/dist/plugin-utils/docs-helper.d.cts.map +1 -0
- package/dist/plugin-utils/docs-helper.d.mts +11 -0
- package/dist/plugin-utils/docs-helper.d.mts.map +1 -0
- package/dist/plugin-utils/docs-helper.mjs +16 -0
- package/dist/plugin-utils/docs-helper.mjs.map +1 -0
- package/dist/plugin-utils/extend.mjs.map +1 -1
- package/dist/plugin-utils/filter.cjs +101 -0
- package/dist/plugin-utils/filter.d.cts +16 -0
- package/dist/plugin-utils/filter.d.cts.map +1 -0
- package/dist/plugin-utils/filter.d.mts +16 -0
- package/dist/plugin-utils/filter.d.mts.map +1 -0
- package/dist/plugin-utils/filter.mjs +91 -0
- package/dist/plugin-utils/filter.mjs.map +1 -0
- package/dist/plugin-utils/format-package-json.cjs +1 -1
- package/dist/plugin-utils/format-package-json.mjs +1 -1
- package/dist/plugin-utils/format-package-json.mjs.map +1 -1
- package/dist/plugin-utils/format.cjs +44 -0
- package/dist/plugin-utils/format.d.cts +11 -0
- package/dist/plugin-utils/format.d.cts.map +1 -0
- package/dist/plugin-utils/format.d.mts +11 -0
- package/dist/plugin-utils/format.d.mts.map +1 -0
- package/dist/plugin-utils/format.mjs +43 -0
- package/dist/plugin-utils/format.mjs.map +1 -0
- package/dist/plugin-utils/get-config-path.cjs +34 -32
- package/dist/plugin-utils/get-config-path.d.cts +4 -1
- package/dist/plugin-utils/get-config-path.d.cts.map +1 -1
- package/dist/plugin-utils/get-config-path.d.mts +4 -1
- package/dist/plugin-utils/get-config-path.d.mts.map +1 -1
- package/dist/plugin-utils/get-config-path.mjs +34 -32
- package/dist/plugin-utils/get-config-path.mjs.map +1 -1
- package/dist/plugin-utils/helpers.cjs +25 -10
- package/dist/plugin-utils/helpers.d.cts +31 -24
- package/dist/plugin-utils/helpers.d.cts.map +1 -1
- package/dist/plugin-utils/helpers.d.mts +31 -24
- package/dist/plugin-utils/helpers.d.mts.map +1 -1
- package/dist/plugin-utils/helpers.mjs +22 -8
- package/dist/plugin-utils/helpers.mjs.map +1 -1
- package/dist/plugin-utils/index.cjs +48 -4
- package/dist/plugin-utils/index.d.cts +9 -3
- package/dist/plugin-utils/index.d.mts +9 -3
- package/dist/plugin-utils/index.mjs +11 -5
- package/dist/plugin-utils/install.cjs +47 -0
- package/dist/plugin-utils/install.d.cts +23 -0
- package/dist/plugin-utils/install.d.cts.map +1 -0
- package/dist/plugin-utils/install.d.mts +23 -0
- package/dist/plugin-utils/install.d.mts.map +1 -0
- package/dist/plugin-utils/install.mjs +45 -0
- package/dist/plugin-utils/install.mjs.map +1 -0
- package/dist/plugin-utils/logging.cjs +605 -0
- package/dist/plugin-utils/logging.d.cts +111 -0
- package/dist/plugin-utils/logging.d.cts.map +1 -0
- package/dist/plugin-utils/logging.d.mts +111 -0
- package/dist/plugin-utils/logging.d.mts.map +1 -0
- package/dist/plugin-utils/logging.mjs +588 -0
- package/dist/plugin-utils/logging.mjs.map +1 -0
- package/dist/plugin-utils/merge.cjs +4 -4
- package/dist/plugin-utils/merge.d.cts +0 -1
- package/dist/plugin-utils/merge.d.cts.map +1 -1
- package/dist/plugin-utils/merge.d.mts.map +1 -1
- package/dist/plugin-utils/merge.mjs +3 -3
- package/dist/plugin-utils/merge.mjs.map +1 -1
- package/dist/plugin-utils/modules.cjs +1 -1
- package/dist/plugin-utils/modules.mjs +1 -1
- package/dist/plugin-utils/modules.mjs.map +1 -1
- package/dist/plugin-utils/paths.cjs +18 -4
- package/dist/plugin-utils/paths.d.cts +12 -2
- package/dist/plugin-utils/paths.d.cts.map +1 -1
- package/dist/plugin-utils/paths.d.mts +12 -2
- package/dist/plugin-utils/paths.d.mts.map +1 -1
- package/dist/plugin-utils/paths.mjs +18 -4
- package/dist/plugin-utils/paths.mjs.map +1 -1
- package/dist/plugin-utils/virtual.cjs +80 -0
- package/dist/plugin-utils/virtual.d.cts +69 -0
- package/dist/plugin-utils/virtual.d.cts.map +1 -0
- package/dist/plugin-utils/virtual.d.mts +69 -0
- package/dist/plugin-utils/virtual.d.mts.map +1 -0
- package/dist/plugin-utils/virtual.mjs +73 -0
- package/dist/plugin-utils/virtual.mjs.map +1 -0
- package/dist/schemas/fs.cjs +232 -0
- package/dist/schemas/fs.d.cts +127 -0
- package/dist/schemas/fs.d.cts.map +1 -0
- package/dist/schemas/fs.d.mts +127 -0
- package/dist/schemas/fs.d.mts.map +1 -0
- package/dist/schemas/fs.mjs +226 -0
- package/dist/schemas/fs.mjs.map +1 -0
- package/dist/storage/base.cjs +216 -0
- package/dist/storage/base.d.cts +201 -0
- package/dist/storage/base.d.cts.map +1 -0
- package/dist/storage/base.d.mts +201 -0
- package/dist/storage/base.d.mts.map +1 -0
- package/dist/storage/base.mjs +215 -0
- package/dist/storage/base.mjs.map +1 -0
- package/dist/storage/file-system.cjs +180 -0
- package/dist/storage/file-system.d.cts +129 -0
- package/dist/storage/file-system.d.cts.map +1 -0
- package/dist/storage/file-system.d.mts +129 -0
- package/dist/storage/file-system.d.mts.map +1 -0
- package/dist/storage/file-system.mjs +179 -0
- package/dist/storage/file-system.mjs.map +1 -0
- package/dist/storage/helpers.cjs +37 -0
- package/dist/storage/helpers.d.cts +25 -0
- package/dist/storage/helpers.d.cts.map +1 -0
- package/dist/storage/helpers.d.mts +25 -0
- package/dist/storage/helpers.d.mts.map +1 -0
- package/dist/storage/helpers.mjs +34 -0
- package/dist/storage/helpers.mjs.map +1 -0
- package/dist/storage/index.cjs +12 -0
- package/dist/storage/index.d.cts +5 -0
- package/dist/storage/index.d.mts +5 -0
- package/dist/storage/index.mjs +6 -0
- package/dist/storage/virtual.cjs +98 -0
- package/dist/storage/virtual.d.cts +80 -0
- package/dist/storage/virtual.d.cts.map +1 -0
- package/dist/storage/virtual.d.mts +80 -0
- package/dist/storage/virtual.d.mts.map +1 -0
- package/dist/storage/virtual.mjs +97 -0
- package/dist/storage/virtual.mjs.map +1 -0
- package/dist/types/api.d.cts +18 -99
- package/dist/types/api.d.cts.map +1 -1
- package/dist/types/api.d.mts +18 -99
- package/dist/types/api.d.mts.map +1 -1
- package/dist/types/config.d.cts +239 -141
- package/dist/types/config.d.cts.map +1 -1
- package/dist/types/config.d.mts +240 -142
- package/dist/types/config.d.mts.map +1 -1
- package/dist/types/context.d.cts +228 -117
- package/dist/types/context.d.cts.map +1 -1
- package/dist/types/context.d.mts +231 -120
- package/dist/types/context.d.mts.map +1 -1
- package/dist/types/fs.d.cts +49 -5
- package/dist/types/fs.d.cts.map +1 -1
- package/dist/types/fs.d.mts +50 -6
- package/dist/types/fs.d.mts.map +1 -1
- package/dist/types/hooks.d.cts +26 -38
- package/dist/types/hooks.d.cts.map +1 -1
- package/dist/types/hooks.d.mts +26 -38
- package/dist/types/hooks.d.mts.map +1 -1
- package/dist/types/index.d.cts +9 -0
- package/dist/types/index.d.mts +8 -8
- package/dist/types/logging.d.cts +161 -0
- package/dist/types/logging.d.cts.map +1 -0
- package/dist/types/logging.d.mts +161 -0
- package/dist/types/logging.d.mts.map +1 -0
- package/dist/types/plugin.d.cts +23 -24
- package/dist/types/plugin.d.cts.map +1 -1
- package/dist/types/plugin.d.mts +23 -24
- package/dist/types/plugin.d.mts.map +1 -1
- package/dist/types/tsconfig.d.cts +15 -12
- package/dist/types/tsconfig.d.cts.map +1 -1
- package/dist/types/tsconfig.d.mts +16 -13
- package/dist/types/tsconfig.d.mts.map +1 -1
- package/dist/types/unplugin.d.cts +10 -23
- package/dist/types/unplugin.d.cts.map +1 -1
- package/dist/types/unplugin.d.mts +10 -23
- package/dist/types/unplugin.d.mts.map +1 -1
- package/package.json +270 -425
- package/schemas/fs.capnp +42 -0
- package/dist/lib/logger.cjs +0 -59
- package/dist/lib/logger.d.cts +0 -23
- package/dist/lib/logger.d.cts.map +0 -1
- package/dist/lib/logger.d.mts +0 -23
- package/dist/lib/logger.d.mts.map +0 -1
- package/dist/lib/logger.mjs +0 -56
- package/dist/lib/logger.mjs.map +0 -1
- package/dist/types/_internal.cjs +0 -0
- package/dist/types/_internal.d.cts +0 -106
- package/dist/types/_internal.d.cts.map +0 -1
- package/dist/types/_internal.d.mts +0 -106
- package/dist/types/_internal.d.mts.map +0 -1
- package/dist/types/_internal.mjs +0 -1
- package/dist/types/commands.d.cts +0 -13
- package/dist/types/commands.d.cts.map +0 -1
- package/dist/types/commands.d.mts +0 -13
- package/dist/types/commands.d.mts.map +0 -1
|
@@ -10,10 +10,11 @@ type RawReflectionMode = ReflectionMode | "" | boolean | string | string[] | und
|
|
|
10
10
|
* @remarks
|
|
11
11
|
* The level determines how much extra data is captured in the byte code for each type. This can be one of the following values:
|
|
12
12
|
* - `minimal` - Only the essential type information is captured.
|
|
13
|
-
* - `
|
|
14
|
-
* - `
|
|
13
|
+
* - `default` - Additional type information is captured, including some contextual data.
|
|
14
|
+
* - `extended` - Even more detailed type information is captured, including extended contextual data.
|
|
15
|
+
* - `all` - All available type information is captured, including detailed contextual data.
|
|
15
16
|
*/
|
|
16
|
-
type
|
|
17
|
+
type Level = "minimal" | "default" | "extended" | "all";
|
|
17
18
|
interface DeepkitOptions {
|
|
18
19
|
/**
|
|
19
20
|
* Either true to activate reflection for all files compiled using this tsconfig,
|
|
@@ -26,11 +27,12 @@ interface DeepkitOptions {
|
|
|
26
27
|
*
|
|
27
28
|
* @remarks
|
|
28
29
|
* The level determines how much extra data is captured in the byte code for each type. This can be one of the following values:
|
|
29
|
-
* - `minimal` - Only the essential type information is captured.
|
|
30
|
-
* - `
|
|
31
|
-
* - `
|
|
30
|
+
* - `minimal` - Only the essential type information is captured. (only "hidden", "ignore" and "internal", "readonly")
|
|
31
|
+
* - `default` - Additional type information is captured, including some contextual data. (adds "alias" and "runtime")
|
|
32
|
+
* - `extended` - Even more detailed type information is captured, including extended contextual data. (adds "permissions" and "domain")
|
|
33
|
+
* - `all` - All available type information is captured, including detailed contextual data. (adds "title" and "description")
|
|
32
34
|
*/
|
|
33
|
-
|
|
35
|
+
level?: Level;
|
|
34
36
|
}
|
|
35
37
|
type TSCompilerOptions = CompilerOptions & DeepkitOptions;
|
|
36
38
|
/**
|
|
@@ -51,10 +53,11 @@ interface TSConfig extends Omit<TsConfigJson, "reflection"> {
|
|
|
51
53
|
* @remarks
|
|
52
54
|
* The level determines how much extra data is captured in the byte code for each type. This can be one of the following values:
|
|
53
55
|
* - `minimal` - Only the essential type information is captured.
|
|
54
|
-
* - `
|
|
55
|
-
* - `
|
|
56
|
+
* - `default` - Additional type information is captured, including some contextual data.
|
|
57
|
+
* - `extended` - Even more detailed type information is captured, including extended contextual data.
|
|
58
|
+
* - `all` - All available type information is captured, including detailed contextual data.
|
|
56
59
|
*/
|
|
57
|
-
|
|
60
|
+
level?: Level;
|
|
58
61
|
/**
|
|
59
62
|
* Instructs the TypeScript compiler how to compile `.ts` files.
|
|
60
63
|
*/
|
|
@@ -67,11 +70,11 @@ type ParsedTypeScriptConfig = ts.ParsedCommandLine & {
|
|
|
67
70
|
};
|
|
68
71
|
declare type __ΩReflectionMode = any[];
|
|
69
72
|
declare type __ΩRawReflectionMode = any[];
|
|
70
|
-
declare type __Ω
|
|
73
|
+
declare type __ΩLevel = any[];
|
|
71
74
|
declare type __ΩDeepkitOptions = any[];
|
|
72
75
|
declare type __ΩTSCompilerOptions = any[];
|
|
73
76
|
declare type __ΩTSConfig = any[];
|
|
74
77
|
declare type __ΩParsedTypeScriptConfig = any[];
|
|
75
78
|
//#endregion
|
|
76
|
-
export { DeepkitOptions, ParsedTypeScriptConfig, RawReflectionMode,
|
|
79
|
+
export { DeepkitOptions, Level, ParsedTypeScriptConfig, RawReflectionMode, ReflectionMode, TSCompilerOptions, TSConfig, __ΩDeepkitOptions, __ΩLevel, __ΩParsedTypeScriptConfig, __ΩRawReflectionMode, __ΩReflectionMode, __ΩTSCompilerOptions, __ΩTSConfig };
|
|
77
80
|
//# sourceMappingURL=tsconfig.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tsconfig.d.cts","names":[],"sources":["../../src/types/tsconfig.ts"],"mappings":";;;;KAqBY,cAAA;AAAA,KACA,iBAAA,GACR,cAAA;AAFJ;;;;;AACA
|
|
1
|
+
{"version":3,"file":"tsconfig.d.cts","names":[],"sources":["../../src/types/tsconfig.ts"],"mappings":";;;;KAqBY,cAAA;AAAA,KACA,iBAAA,GACR,cAAA;AAFJ;;;;;AACA;;;;;AADA,KAmBY,KAAA;AAAA,UAEK,cAAA;;;;AAAjB;;EAME,UAAA,GAAa,iBAAA;EAYA;;;;;;;AAGf;;;EAHE,KAAA,GAAQ,KAAA;AAAA;AAAA,KAGE,iBAAA,GAAoB,eAAA,GAAkB,cAAA;;;;;;UAOjC,QAAA,SAAiB,IAAA,CAAK,YAAA;EAAL;;;;;EAMhC,UAAA,GAAa,iBAAA;EAAA;;;;;;;AAoBf;;;EARE,KAAA,GAAQ,KAAA;EASc;;;EAJtB,eAAA,GAAkB,iBAAA;AAAA;AAAA,KAGR,sBAAA,GAAyB,EAAA,CAAG,iBAAA;EACtC,oBAAA,EAAsB,YAAA;EACtB,YAAA,EAAc,QAAA;EACd,gBAAA;AAAA;AAAA"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { CompilerOptions, TsConfigJson } from "@stryke/types/tsconfig";
|
|
2
1
|
import ts from "typescript";
|
|
2
|
+
import { CompilerOptions, TsConfigJson } from "@stryke/types/tsconfig";
|
|
3
3
|
|
|
4
4
|
//#region src/types/tsconfig.d.ts
|
|
5
5
|
type ReflectionMode = "default" | "explicit" | "never";
|
|
@@ -10,10 +10,11 @@ type RawReflectionMode = ReflectionMode | "" | boolean | string | string[] | und
|
|
|
10
10
|
* @remarks
|
|
11
11
|
* The level determines how much extra data is captured in the byte code for each type. This can be one of the following values:
|
|
12
12
|
* - `minimal` - Only the essential type information is captured.
|
|
13
|
-
* - `
|
|
14
|
-
* - `
|
|
13
|
+
* - `default` - Additional type information is captured, including some contextual data.
|
|
14
|
+
* - `extended` - Even more detailed type information is captured, including extended contextual data.
|
|
15
|
+
* - `all` - All available type information is captured, including detailed contextual data.
|
|
15
16
|
*/
|
|
16
|
-
type
|
|
17
|
+
type Level = "minimal" | "default" | "extended" | "all";
|
|
17
18
|
interface DeepkitOptions {
|
|
18
19
|
/**
|
|
19
20
|
* Either true to activate reflection for all files compiled using this tsconfig,
|
|
@@ -26,11 +27,12 @@ interface DeepkitOptions {
|
|
|
26
27
|
*
|
|
27
28
|
* @remarks
|
|
28
29
|
* The level determines how much extra data is captured in the byte code for each type. This can be one of the following values:
|
|
29
|
-
* - `minimal` - Only the essential type information is captured.
|
|
30
|
-
* - `
|
|
31
|
-
* - `
|
|
30
|
+
* - `minimal` - Only the essential type information is captured. (only "hidden", "ignore" and "internal", "readonly")
|
|
31
|
+
* - `default` - Additional type information is captured, including some contextual data. (adds "alias" and "runtime")
|
|
32
|
+
* - `extended` - Even more detailed type information is captured, including extended contextual data. (adds "permissions" and "domain")
|
|
33
|
+
* - `all` - All available type information is captured, including detailed contextual data. (adds "title" and "description")
|
|
32
34
|
*/
|
|
33
|
-
|
|
35
|
+
level?: Level;
|
|
34
36
|
}
|
|
35
37
|
type TSCompilerOptions = CompilerOptions & DeepkitOptions;
|
|
36
38
|
/**
|
|
@@ -51,10 +53,11 @@ interface TSConfig extends Omit<TsConfigJson, "reflection"> {
|
|
|
51
53
|
* @remarks
|
|
52
54
|
* The level determines how much extra data is captured in the byte code for each type. This can be one of the following values:
|
|
53
55
|
* - `minimal` - Only the essential type information is captured.
|
|
54
|
-
* - `
|
|
55
|
-
* - `
|
|
56
|
+
* - `default` - Additional type information is captured, including some contextual data.
|
|
57
|
+
* - `extended` - Even more detailed type information is captured, including extended contextual data.
|
|
58
|
+
* - `all` - All available type information is captured, including detailed contextual data.
|
|
56
59
|
*/
|
|
57
|
-
|
|
60
|
+
level?: Level;
|
|
58
61
|
/**
|
|
59
62
|
* Instructs the TypeScript compiler how to compile `.ts` files.
|
|
60
63
|
*/
|
|
@@ -67,11 +70,11 @@ type ParsedTypeScriptConfig = ts.ParsedCommandLine & {
|
|
|
67
70
|
};
|
|
68
71
|
declare type __ΩReflectionMode = any[];
|
|
69
72
|
declare type __ΩRawReflectionMode = any[];
|
|
70
|
-
declare type __Ω
|
|
73
|
+
declare type __ΩLevel = any[];
|
|
71
74
|
declare type __ΩDeepkitOptions = any[];
|
|
72
75
|
declare type __ΩTSCompilerOptions = any[];
|
|
73
76
|
declare type __ΩTSConfig = any[];
|
|
74
77
|
declare type __ΩParsedTypeScriptConfig = any[];
|
|
75
78
|
//#endregion
|
|
76
|
-
export { DeepkitOptions, ParsedTypeScriptConfig, RawReflectionMode,
|
|
79
|
+
export { DeepkitOptions, Level, ParsedTypeScriptConfig, RawReflectionMode, ReflectionMode, TSCompilerOptions, TSConfig, __ΩDeepkitOptions, __ΩLevel, __ΩParsedTypeScriptConfig, __ΩRawReflectionMode, __ΩReflectionMode, __ΩTSCompilerOptions, __ΩTSConfig };
|
|
77
80
|
//# sourceMappingURL=tsconfig.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tsconfig.d.mts","names":[],"sources":["../../src/types/tsconfig.ts"],"mappings":";;;;KAqBY,cAAA;AAAA,KACA,iBAAA,GACR,cAAA;AAFJ;;;;;AACA
|
|
1
|
+
{"version":3,"file":"tsconfig.d.mts","names":[],"sources":["../../src/types/tsconfig.ts"],"mappings":";;;;KAqBY,cAAA;AAAA,KACA,iBAAA,GACR,cAAA;AAFJ;;;;;AACA;;;;;AADA,KAmBY,KAAA;AAAA,UAEK,cAAA;;;;AAAjB;;EAME,UAAA,GAAa,iBAAA;EAYA;;;;;;;AAGf;;;EAHE,KAAA,GAAQ,KAAA;AAAA;AAAA,KAGE,iBAAA,GAAoB,eAAA,GAAkB,cAAA;;;;;;UAOjC,QAAA,SAAiB,IAAA,CAAK,YAAA;EAAL;;;;;EAMhC,UAAA,GAAa,iBAAA;EAAA;;;;;;;AAoBf;;;EARE,KAAA,GAAQ,KAAA;EASc;;;EAJtB,eAAA,GAAkB,iBAAA;AAAA;AAAA,KAGR,sBAAA,GAAyB,EAAA,CAAG,iBAAA;EACtC,oBAAA,EAAsB,YAAA;EACtB,YAAA,EAAc,QAAA;EACd,gBAAA;AAAA;AAAA"}
|
|
@@ -1,39 +1,26 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import { Context } from "./context.cjs";
|
|
4
|
-
import { UserConfig } from "./config.cjs";
|
|
5
|
-
import { MaybePromise } from "@stryke/types/base";
|
|
6
|
-
import { HookFilter, UnpluginContextMeta, UnpluginOptions } from "unplugin";
|
|
1
|
+
import { Context, PluginContext, WithUnpluginBuildContext } from "./context.cjs";
|
|
2
|
+
import { UnpluginOptions } from "unplugin";
|
|
7
3
|
|
|
8
4
|
//#region src/types/unplugin.d.ts
|
|
9
5
|
type UnpluginBuilderVariant = "rollup" | "webpack" | "rspack" | "vite" | "esbuild" | "farm" | "unloader" | "rolldown" | "bun";
|
|
10
6
|
type BuilderVariant = UnpluginBuilderVariant | "tsup" | "tsdown" | "unbuild";
|
|
11
|
-
|
|
12
|
-
interface UnpluginOptions$1<TContext extends Context = Context> extends UnpluginOptions {
|
|
7
|
+
interface UnpluginOptions$1<TContext extends Context> extends UnpluginOptions {
|
|
13
8
|
/**
|
|
14
9
|
* An API object that can be used for inter-plugin communication.
|
|
15
10
|
*
|
|
16
11
|
* @see https://rollupjs.org/plugin-development/#direct-plugin-communication
|
|
17
12
|
*/
|
|
18
|
-
|
|
13
|
+
context: TContext;
|
|
19
14
|
}
|
|
20
|
-
type
|
|
15
|
+
type UnpluginHookFunctions<TContext extends PluginContext = PluginContext, TUnpluginBuilderVariant extends UnpluginBuilderVariant = UnpluginBuilderVariant, TField extends keyof Required<UnpluginOptions$1<TContext>>[TUnpluginBuilderVariant] = keyof Required<UnpluginOptions$1<TContext>>[TUnpluginBuilderVariant]> = Required<UnpluginOptions$1<TContext>>[TUnpluginBuilderVariant][TField] extends infer THandler | {
|
|
21
16
|
handler: infer THandler;
|
|
22
|
-
} ? THandler extends ((this: infer
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
* The meta information for the unplugin context
|
|
26
|
-
*/
|
|
27
|
-
unplugin: UnpluginContextMeta;
|
|
28
|
-
};
|
|
29
|
-
type UnpluginFactory<TContext extends Context = Context> = (options: Partial<TContext["config"]["userConfig"]>, meta: UnpluginContextMeta) => UnpluginOptions$1<TContext>;
|
|
17
|
+
} ? THandler extends ((this: infer THandlerOriginalContext, ...args: infer THandlerArgs) => infer THandlerReturn) ? (this: THandlerOriginalContext & WithUnpluginBuildContext<TContext>, ...args: THandlerArgs) => THandlerReturn : THandler extends {
|
|
18
|
+
handler: infer THandlerFunction;
|
|
19
|
+
} ? THandlerFunction extends ((this: infer THandlerFunctionOriginalContext, ...args: infer THandlerFunctionArgs) => infer THandlerFunctionReturn) ? (this: THandlerFunctionOriginalContext & WithUnpluginBuildContext<TContext>, ...args: THandlerFunctionArgs) => THandlerFunctionReturn : never : never : never;
|
|
30
20
|
declare type __ΩUnpluginBuilderVariant = any[];
|
|
31
21
|
declare type __ΩBuilderVariant = any[];
|
|
32
|
-
declare type __ΩInferUnpluginVariant = any[];
|
|
33
22
|
declare type __ΩUnpluginOptions = any[];
|
|
34
|
-
declare type __Ω
|
|
35
|
-
declare type __ΩUnpluginUserConfig = any[];
|
|
36
|
-
declare type __ΩUnpluginFactory = any[];
|
|
23
|
+
declare type __ΩUnpluginHookFunctions = any[];
|
|
37
24
|
//#endregion
|
|
38
|
-
export { BuilderVariant,
|
|
25
|
+
export { BuilderVariant, UnpluginBuilderVariant, UnpluginHookFunctions, UnpluginOptions$1 as UnpluginOptions, __ΩBuilderVariant, __ΩUnpluginBuilderVariant, __ΩUnpluginHookFunctions, __ΩUnpluginOptions };
|
|
39
26
|
//# sourceMappingURL=unplugin.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"unplugin.d.cts","names":[],"sources":["../../src/types/unplugin.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"unplugin.d.cts","names":[],"sources":["../../src/types/unplugin.ts"],"mappings":";;;;KAyBY,sBAAA;AAAA,KAWA,cAAA,GACR,sBAAA;AAAA,UAKa,iBAAA,kBACE,OAAA,UACT,eAAA;EAnBwB;;;;AAWlC;EAcE,OAAA,EAAS,QAAA;AAAA;AAAA,KAGC,qBAAA,kBACO,aAAA,GAAgB,aAAA,kCACD,sBAAA,GAC9B,sBAAA,uBACmB,QAAA,CACnB,iBAAA,CAAgB,QAAA,GAChB,uBAAA,UAAiC,QAAA,CACjC,iBAAA,CAAgB,QAAA,GAChB,uBAAA,KACA,QAAA,CACF,iBAAA,CAAgB,QAAA,GAChB,uBAAA,EAAyB,MAAA;EAGrB,OAAA;AAAA,IAEF,QAAA,WACE,IAAA,oCACG,IAAA,kDAGD,IAAA,EAAM,uBAAA,GAA0B,wBAAA,CAAyB,QAAA,MACtD,IAAA,EAAM,YAAA,KACN,cAAA,GACL,QAAA;EAAmB,OAAA;AAAA,IACjB,gBAAA,WACE,IAAA,4CACG,IAAA,kEAGD,IAAA,EAAM,+BAAA,GACJ,wBAAA,CAAyB,QAAA,MACxB,IAAA,EAAM,oBAAA,KACN,sBAAA;AAAA"}
|
|
@@ -1,39 +1,26 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import { Context } from "./context.mjs";
|
|
4
|
-
import { UserConfig } from "./config.mjs";
|
|
5
|
-
import { HookFilter, UnpluginContextMeta, UnpluginOptions } from "unplugin";
|
|
6
|
-
import { MaybePromise } from "@stryke/types/base";
|
|
1
|
+
import { Context, PluginContext, WithUnpluginBuildContext } from "./context.mjs";
|
|
2
|
+
import { UnpluginOptions } from "unplugin";
|
|
7
3
|
|
|
8
4
|
//#region src/types/unplugin.d.ts
|
|
9
5
|
type UnpluginBuilderVariant = "rollup" | "webpack" | "rspack" | "vite" | "esbuild" | "farm" | "unloader" | "rolldown" | "bun";
|
|
10
6
|
type BuilderVariant = UnpluginBuilderVariant | "tsup" | "tsdown" | "unbuild";
|
|
11
|
-
|
|
12
|
-
interface UnpluginOptions$1<TContext extends Context = Context> extends UnpluginOptions {
|
|
7
|
+
interface UnpluginOptions$1<TContext extends Context> extends UnpluginOptions {
|
|
13
8
|
/**
|
|
14
9
|
* An API object that can be used for inter-plugin communication.
|
|
15
10
|
*
|
|
16
11
|
* @see https://rollupjs.org/plugin-development/#direct-plugin-communication
|
|
17
12
|
*/
|
|
18
|
-
|
|
13
|
+
context: TContext;
|
|
19
14
|
}
|
|
20
|
-
type
|
|
15
|
+
type UnpluginHookFunctions<TContext extends PluginContext = PluginContext, TUnpluginBuilderVariant extends UnpluginBuilderVariant = UnpluginBuilderVariant, TField extends keyof Required<UnpluginOptions$1<TContext>>[TUnpluginBuilderVariant] = keyof Required<UnpluginOptions$1<TContext>>[TUnpluginBuilderVariant]> = Required<UnpluginOptions$1<TContext>>[TUnpluginBuilderVariant][TField] extends infer THandler | {
|
|
21
16
|
handler: infer THandler;
|
|
22
|
-
} ? THandler extends ((this: infer
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
* The meta information for the unplugin context
|
|
26
|
-
*/
|
|
27
|
-
unplugin: UnpluginContextMeta;
|
|
28
|
-
};
|
|
29
|
-
type UnpluginFactory<TContext extends Context = Context> = (options: Partial<TContext["config"]["userConfig"]>, meta: UnpluginContextMeta) => UnpluginOptions$1<TContext>;
|
|
17
|
+
} ? THandler extends ((this: infer THandlerOriginalContext, ...args: infer THandlerArgs) => infer THandlerReturn) ? (this: THandlerOriginalContext & WithUnpluginBuildContext<TContext>, ...args: THandlerArgs) => THandlerReturn : THandler extends {
|
|
18
|
+
handler: infer THandlerFunction;
|
|
19
|
+
} ? THandlerFunction extends ((this: infer THandlerFunctionOriginalContext, ...args: infer THandlerFunctionArgs) => infer THandlerFunctionReturn) ? (this: THandlerFunctionOriginalContext & WithUnpluginBuildContext<TContext>, ...args: THandlerFunctionArgs) => THandlerFunctionReturn : never : never : never;
|
|
30
20
|
declare type __ΩUnpluginBuilderVariant = any[];
|
|
31
21
|
declare type __ΩBuilderVariant = any[];
|
|
32
|
-
declare type __ΩInferUnpluginVariant = any[];
|
|
33
22
|
declare type __ΩUnpluginOptions = any[];
|
|
34
|
-
declare type __Ω
|
|
35
|
-
declare type __ΩUnpluginUserConfig = any[];
|
|
36
|
-
declare type __ΩUnpluginFactory = any[];
|
|
23
|
+
declare type __ΩUnpluginHookFunctions = any[];
|
|
37
24
|
//#endregion
|
|
38
|
-
export { BuilderVariant,
|
|
25
|
+
export { BuilderVariant, UnpluginBuilderVariant, UnpluginHookFunctions, UnpluginOptions$1 as UnpluginOptions, __ΩBuilderVariant, __ΩUnpluginBuilderVariant, __ΩUnpluginHookFunctions, __ΩUnpluginOptions };
|
|
39
26
|
//# sourceMappingURL=unplugin.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"unplugin.d.mts","names":[],"sources":["../../src/types/unplugin.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"unplugin.d.mts","names":[],"sources":["../../src/types/unplugin.ts"],"mappings":";;;;KAyBY,sBAAA;AAAA,KAWA,cAAA,GACR,sBAAA;AAAA,UAKa,iBAAA,kBACE,OAAA,UACT,eAAA;EAnBwB;;;;AAWlC;EAcE,OAAA,EAAS,QAAA;AAAA;AAAA,KAGC,qBAAA,kBACO,aAAA,GAAgB,aAAA,kCACD,sBAAA,GAC9B,sBAAA,uBACmB,QAAA,CACnB,iBAAA,CAAgB,QAAA,GAChB,uBAAA,UAAiC,QAAA,CACjC,iBAAA,CAAgB,QAAA,GAChB,uBAAA,KACA,QAAA,CACF,iBAAA,CAAgB,QAAA,GAChB,uBAAA,EAAyB,MAAA;EAGrB,OAAA;AAAA,IAEF,QAAA,WACE,IAAA,oCACG,IAAA,kDAGD,IAAA,EAAM,uBAAA,GAA0B,wBAAA,CAAyB,QAAA,MACtD,IAAA,EAAM,YAAA,KACN,cAAA,GACL,QAAA;EAAmB,OAAA;AAAA,IACjB,gBAAA,WACE,IAAA,4CACG,IAAA,kEAGD,IAAA,EAAM,+BAAA,GACJ,wBAAA,CAAyB,QAAA,MACxB,IAAA,EAAM,oBAAA,KACN,sBAAA;AAAA"}
|