mockaton 13.7.0 → 13.9.0
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/README.md +27 -8
- package/package.json +5 -3
- package/src/client/ApiConstants.js +0 -2
- package/src/client/Filename.js +2 -2
- package/src/client/app-payload-viewer.js +4 -2
- package/src/client/dir/groupByFolder.js +16 -14
- package/src/server/MockBroker.js +7 -2
- package/src/server/MockDispatcher.js +3 -2
- package/src/server/Mockaton.js +10 -12
- package/src/server/Mockaton.test.js +42 -0
- package/src/server/cli.js +9 -8
- package/src/server/importResolver.js +35 -0
- package/src/server/utils/logger.js +2 -4
- package/src/server/utils/openInBrowser.js +1 -1
- package/vite-plugin/README.md +29 -0
- package/vite-plugin/index.ts +21 -0
- package/vite-plugin/node_modules/.package-lock.json +356 -0
- package/vite-plugin/node_modules/@oxc-project/types/LICENSE +22 -0
- package/vite-plugin/node_modules/@oxc-project/types/README.md +3 -0
- package/vite-plugin/node_modules/@oxc-project/types/package.json +26 -0
- package/vite-plugin/node_modules/@oxc-project/types/types.d.ts +1912 -0
- package/vite-plugin/node_modules/@rolldown/binding-darwin-arm64/README.md +3 -0
- package/vite-plugin/node_modules/@rolldown/binding-darwin-arm64/package.json +37 -0
- package/vite-plugin/node_modules/@rolldown/binding-darwin-arm64/rolldown-binding.darwin-arm64.node +0 -0
- package/vite-plugin/node_modules/@rolldown/pluginutils/LICENSE +25 -0
- package/vite-plugin/node_modules/@rolldown/pluginutils/README.md +83 -0
- package/vite-plugin/node_modules/@rolldown/pluginutils/dist/filter/composable-filters.d.ts +90 -0
- package/vite-plugin/node_modules/@rolldown/pluginutils/dist/filter/composable-filters.js +256 -0
- package/vite-plugin/node_modules/@rolldown/pluginutils/dist/filter/filter-vite-plugins.d.ts +28 -0
- package/vite-plugin/node_modules/@rolldown/pluginutils/dist/filter/filter-vite-plugins.js +75 -0
- package/vite-plugin/node_modules/@rolldown/pluginutils/dist/filter/index.d.ts +3 -0
- package/vite-plugin/node_modules/@rolldown/pluginutils/dist/filter/index.js +3 -0
- package/vite-plugin/node_modules/@rolldown/pluginutils/dist/filter/simple-filters.d.ts +71 -0
- package/vite-plugin/node_modules/@rolldown/pluginutils/dist/filter/simple-filters.js +70 -0
- package/vite-plugin/node_modules/@rolldown/pluginutils/dist/index.d.ts +1 -0
- package/vite-plugin/node_modules/@rolldown/pluginutils/dist/index.js +1 -0
- package/vite-plugin/node_modules/@rolldown/pluginutils/dist/utils.d.ts +2 -0
- package/vite-plugin/node_modules/@rolldown/pluginutils/dist/utils.js +17 -0
- package/vite-plugin/node_modules/@rolldown/pluginutils/package.json +37 -0
- package/vite-plugin/node_modules/detect-libc/LICENSE +201 -0
- package/vite-plugin/node_modules/detect-libc/README.md +163 -0
- package/vite-plugin/node_modules/detect-libc/index.d.ts +14 -0
- package/vite-plugin/node_modules/detect-libc/lib/detect-libc.js +313 -0
- package/vite-plugin/node_modules/detect-libc/lib/elf.js +39 -0
- package/vite-plugin/node_modules/detect-libc/lib/filesystem.js +51 -0
- package/vite-plugin/node_modules/detect-libc/lib/process.js +24 -0
- package/vite-plugin/node_modules/detect-libc/package.json +44 -0
- package/vite-plugin/node_modules/fdir/LICENSE +7 -0
- package/vite-plugin/node_modules/fdir/README.md +91 -0
- package/vite-plugin/node_modules/fdir/dist/index.cjs +588 -0
- package/vite-plugin/node_modules/fdir/dist/index.d.cts +155 -0
- package/vite-plugin/node_modules/fdir/dist/index.d.mts +155 -0
- package/vite-plugin/node_modules/fdir/dist/index.mjs +570 -0
- package/vite-plugin/node_modules/fdir/package.json +103 -0
- package/vite-plugin/node_modules/fsevents/LICENSE +22 -0
- package/vite-plugin/node_modules/fsevents/README.md +89 -0
- package/vite-plugin/node_modules/fsevents/fsevents.d.ts +46 -0
- package/vite-plugin/node_modules/fsevents/fsevents.js +83 -0
- package/vite-plugin/node_modules/fsevents/fsevents.node +0 -0
- package/vite-plugin/node_modules/fsevents/package.json +62 -0
- package/vite-plugin/node_modules/lightningcss/LICENSE +373 -0
- package/vite-plugin/node_modules/lightningcss/README.md +105 -0
- package/vite-plugin/node_modules/lightningcss/node/ast.d.ts +9892 -0
- package/vite-plugin/node_modules/lightningcss/node/ast.js.flow +10539 -0
- package/vite-plugin/node_modules/lightningcss/node/browserslistToTargets.js +48 -0
- package/vite-plugin/node_modules/lightningcss/node/composeVisitors.js +450 -0
- package/vite-plugin/node_modules/lightningcss/node/flags.js +28 -0
- package/vite-plugin/node_modules/lightningcss/node/index.d.ts +494 -0
- package/vite-plugin/node_modules/lightningcss/node/index.js +59 -0
- package/vite-plugin/node_modules/lightningcss/node/index.js.flow +843 -0
- package/vite-plugin/node_modules/lightningcss/node/index.mjs +4 -0
- package/vite-plugin/node_modules/lightningcss/node/targets.d.ts +40 -0
- package/vite-plugin/node_modules/lightningcss/node/targets.js.flow +39 -0
- package/vite-plugin/node_modules/lightningcss/package.json +110 -0
- package/vite-plugin/node_modules/lightningcss-darwin-arm64/LICENSE +373 -0
- package/vite-plugin/node_modules/lightningcss-darwin-arm64/README.md +1 -0
- package/vite-plugin/node_modules/lightningcss-darwin-arm64/lightningcss.darwin-arm64.node +0 -0
- package/vite-plugin/node_modules/lightningcss-darwin-arm64/package.json +34 -0
- package/vite-plugin/node_modules/nanoid/LICENSE +20 -0
- package/vite-plugin/node_modules/nanoid/README.md +39 -0
- package/vite-plugin/node_modules/nanoid/async/index.browser.cjs +69 -0
- package/vite-plugin/node_modules/nanoid/async/index.browser.js +34 -0
- package/vite-plugin/node_modules/nanoid/async/index.cjs +71 -0
- package/vite-plugin/node_modules/nanoid/async/index.d.ts +56 -0
- package/vite-plugin/node_modules/nanoid/async/index.js +35 -0
- package/vite-plugin/node_modules/nanoid/async/index.native.js +26 -0
- package/vite-plugin/node_modules/nanoid/async/package.json +12 -0
- package/vite-plugin/node_modules/nanoid/bin/nanoid.cjs +55 -0
- package/vite-plugin/node_modules/nanoid/index.browser.cjs +72 -0
- package/vite-plugin/node_modules/nanoid/index.browser.js +34 -0
- package/vite-plugin/node_modules/nanoid/index.cjs +85 -0
- package/vite-plugin/node_modules/nanoid/index.d.cts +91 -0
- package/vite-plugin/node_modules/nanoid/index.d.ts +91 -0
- package/vite-plugin/node_modules/nanoid/index.js +45 -0
- package/vite-plugin/node_modules/nanoid/nanoid.js +1 -0
- package/vite-plugin/node_modules/nanoid/non-secure/index.cjs +34 -0
- package/vite-plugin/node_modules/nanoid/non-secure/index.d.ts +33 -0
- package/vite-plugin/node_modules/nanoid/non-secure/index.js +21 -0
- package/vite-plugin/node_modules/nanoid/non-secure/package.json +6 -0
- package/vite-plugin/node_modules/nanoid/package.json +89 -0
- package/vite-plugin/node_modules/nanoid/url-alphabet/index.cjs +7 -0
- package/vite-plugin/node_modules/nanoid/url-alphabet/index.js +3 -0
- package/vite-plugin/node_modules/nanoid/url-alphabet/package.json +6 -0
- package/vite-plugin/node_modules/picocolors/LICENSE +15 -0
- package/vite-plugin/node_modules/picocolors/README.md +21 -0
- package/vite-plugin/node_modules/picocolors/package.json +25 -0
- package/vite-plugin/node_modules/picocolors/picocolors.browser.js +4 -0
- package/vite-plugin/node_modules/picocolors/picocolors.d.ts +5 -0
- package/vite-plugin/node_modules/picocolors/picocolors.js +75 -0
- package/vite-plugin/node_modules/picocolors/types.d.ts +51 -0
- package/vite-plugin/node_modules/picomatch/LICENSE +21 -0
- package/vite-plugin/node_modules/picomatch/README.md +749 -0
- package/vite-plugin/node_modules/picomatch/index.js +17 -0
- package/vite-plugin/node_modules/picomatch/lib/constants.js +184 -0
- package/vite-plugin/node_modules/picomatch/lib/parse.js +1386 -0
- package/vite-plugin/node_modules/picomatch/lib/picomatch.js +349 -0
- package/vite-plugin/node_modules/picomatch/lib/scan.js +391 -0
- package/vite-plugin/node_modules/picomatch/lib/utils.js +72 -0
- package/vite-plugin/node_modules/picomatch/package.json +82 -0
- package/vite-plugin/node_modules/picomatch/posix.js +3 -0
- package/vite-plugin/node_modules/postcss/LICENSE +20 -0
- package/vite-plugin/node_modules/postcss/README.md +28 -0
- package/vite-plugin/node_modules/postcss/lib/at-rule.d.ts +139 -0
- package/vite-plugin/node_modules/postcss/lib/at-rule.js +25 -0
- package/vite-plugin/node_modules/postcss/lib/comment.d.ts +67 -0
- package/vite-plugin/node_modules/postcss/lib/comment.js +13 -0
- package/vite-plugin/node_modules/postcss/lib/container.d.ts +478 -0
- package/vite-plugin/node_modules/postcss/lib/container.js +447 -0
- package/vite-plugin/node_modules/postcss/lib/css-syntax-error.d.ts +247 -0
- package/vite-plugin/node_modules/postcss/lib/css-syntax-error.js +133 -0
- package/vite-plugin/node_modules/postcss/lib/declaration.d.ts +150 -0
- package/vite-plugin/node_modules/postcss/lib/declaration.js +24 -0
- package/vite-plugin/node_modules/postcss/lib/document.d.ts +68 -0
- package/vite-plugin/node_modules/postcss/lib/document.js +33 -0
- package/vite-plugin/node_modules/postcss/lib/fromJSON.d.ts +9 -0
- package/vite-plugin/node_modules/postcss/lib/fromJSON.js +54 -0
- package/vite-plugin/node_modules/postcss/lib/input.d.ts +226 -0
- package/vite-plugin/node_modules/postcss/lib/input.js +273 -0
- package/vite-plugin/node_modules/postcss/lib/lazy-result.d.ts +189 -0
- package/vite-plugin/node_modules/postcss/lib/lazy-result.js +550 -0
- package/vite-plugin/node_modules/postcss/lib/list.d.ts +60 -0
- package/vite-plugin/node_modules/postcss/lib/list.js +58 -0
- package/vite-plugin/node_modules/postcss/lib/map-generator.js +376 -0
- package/vite-plugin/node_modules/postcss/lib/no-work-result.d.ts +45 -0
- package/vite-plugin/node_modules/postcss/lib/no-work-result.js +137 -0
- package/vite-plugin/node_modules/postcss/lib/node.d.ts +555 -0
- package/vite-plugin/node_modules/postcss/lib/node.js +449 -0
- package/vite-plugin/node_modules/postcss/lib/parse.d.ts +9 -0
- package/vite-plugin/node_modules/postcss/lib/parse.js +42 -0
- package/vite-plugin/node_modules/postcss/lib/parser.js +611 -0
- package/vite-plugin/node_modules/postcss/lib/postcss.d.mts +66 -0
- package/vite-plugin/node_modules/postcss/lib/postcss.d.ts +456 -0
- package/vite-plugin/node_modules/postcss/lib/postcss.js +101 -0
- package/vite-plugin/node_modules/postcss/lib/postcss.mjs +30 -0
- package/vite-plugin/node_modules/postcss/lib/previous-map.d.ts +80 -0
- package/vite-plugin/node_modules/postcss/lib/previous-map.js +145 -0
- package/vite-plugin/node_modules/postcss/lib/processor.d.ts +114 -0
- package/vite-plugin/node_modules/postcss/lib/processor.js +67 -0
- package/vite-plugin/node_modules/postcss/lib/result.d.ts +204 -0
- package/vite-plugin/node_modules/postcss/lib/result.js +42 -0
- package/vite-plugin/node_modules/postcss/lib/root.d.ts +86 -0
- package/vite-plugin/node_modules/postcss/lib/root.js +61 -0
- package/vite-plugin/node_modules/postcss/lib/rule.d.ts +126 -0
- package/vite-plugin/node_modules/postcss/lib/rule.js +27 -0
- package/vite-plugin/node_modules/postcss/lib/stringifier.d.ts +45 -0
- package/vite-plugin/node_modules/postcss/lib/stringifier.js +370 -0
- package/vite-plugin/node_modules/postcss/lib/stringify.d.ts +9 -0
- package/vite-plugin/node_modules/postcss/lib/stringify.js +11 -0
- package/vite-plugin/node_modules/postcss/lib/symbols.js +5 -0
- package/vite-plugin/node_modules/postcss/lib/terminal-highlight.js +70 -0
- package/vite-plugin/node_modules/postcss/lib/tokenize.js +266 -0
- package/vite-plugin/node_modules/postcss/lib/warn-once.js +13 -0
- package/vite-plugin/node_modules/postcss/lib/warning.d.ts +146 -0
- package/vite-plugin/node_modules/postcss/lib/warning.js +37 -0
- package/vite-plugin/node_modules/postcss/package.json +88 -0
- package/vite-plugin/node_modules/rolldown/LICENSE +25 -0
- package/vite-plugin/node_modules/rolldown/README.md +11 -0
- package/vite-plugin/node_modules/rolldown/bin/cli.mjs +2 -0
- package/vite-plugin/node_modules/rolldown/dist/cli.d.mts +1 -0
- package/vite-plugin/node_modules/rolldown/dist/cli.mjs +1191 -0
- package/vite-plugin/node_modules/rolldown/dist/config.d.mts +14 -0
- package/vite-plugin/node_modules/rolldown/dist/config.mjs +4 -0
- package/vite-plugin/node_modules/rolldown/dist/experimental-index.d.mts +253 -0
- package/vite-plugin/node_modules/rolldown/dist/experimental-index.mjs +320 -0
- package/vite-plugin/node_modules/rolldown/dist/experimental-runtime-types.d.ts +98 -0
- package/vite-plugin/node_modules/rolldown/dist/filter-index.d.mts +196 -0
- package/vite-plugin/node_modules/rolldown/dist/filter-index.mjs +386 -0
- package/vite-plugin/node_modules/rolldown/dist/get-log-filter.d.mts +3 -0
- package/vite-plugin/node_modules/rolldown/dist/get-log-filter.mjs +68 -0
- package/vite-plugin/node_modules/rolldown/dist/index.d.mts +4 -0
- package/vite-plugin/node_modules/rolldown/dist/index.mjs +50 -0
- package/vite-plugin/node_modules/rolldown/dist/parallel-plugin-worker.d.mts +1 -0
- package/vite-plugin/node_modules/rolldown/dist/parallel-plugin-worker.mjs +28 -0
- package/vite-plugin/node_modules/rolldown/dist/parallel-plugin.d.mts +13 -0
- package/vite-plugin/node_modules/rolldown/dist/parallel-plugin.mjs +6 -0
- package/vite-plugin/node_modules/rolldown/dist/parse-ast-index.d.mts +32 -0
- package/vite-plugin/node_modules/rolldown/dist/parse-ast-index.mjs +60 -0
- package/vite-plugin/node_modules/rolldown/dist/plugins-index.d.mts +33 -0
- package/vite-plugin/node_modules/rolldown/dist/plugins-index.mjs +40 -0
- package/vite-plugin/node_modules/rolldown/dist/shared/binding-BeU_1iEk.mjs +582 -0
- package/vite-plugin/node_modules/rolldown/dist/shared/binding-zH1vcmbM.d.mts +1899 -0
- package/vite-plugin/node_modules/rolldown/dist/shared/bindingify-input-options-DbbBhzky.mjs +2211 -0
- package/vite-plugin/node_modules/rolldown/dist/shared/constructors-C2EWPKW3.mjs +68 -0
- package/vite-plugin/node_modules/rolldown/dist/shared/constructors-D0W3rNfA.d.mts +37 -0
- package/vite-plugin/node_modules/rolldown/dist/shared/define-config-5HJ1b9vG.d.mts +3829 -0
- package/vite-plugin/node_modules/rolldown/dist/shared/define-config-DJOr6Iwt.mjs +6 -0
- package/vite-plugin/node_modules/rolldown/dist/shared/error-DL-e8-oE.mjs +85 -0
- package/vite-plugin/node_modules/rolldown/dist/shared/get-log-filter-semyr3Lj.d.mts +35 -0
- package/vite-plugin/node_modules/rolldown/dist/shared/load-config-BoVO31Un.mjs +120 -0
- package/vite-plugin/node_modules/rolldown/dist/shared/logging-C6h4g8dA.d.mts +50 -0
- package/vite-plugin/node_modules/rolldown/dist/shared/logs-D80CXhvg.mjs +180 -0
- package/vite-plugin/node_modules/rolldown/dist/shared/misc-DJYbNKZX.mjs +21 -0
- package/vite-plugin/node_modules/rolldown/dist/shared/normalize-string-or-regex-CbQQ69gT.mjs +66 -0
- package/vite-plugin/node_modules/rolldown/dist/shared/parse-B_ZnWxLZ.mjs +74 -0
- package/vite-plugin/node_modules/rolldown/dist/shared/prompt-U5ajztzG.mjs +847 -0
- package/vite-plugin/node_modules/rolldown/dist/shared/resolve-tsconfig-CfYpGzid.mjs +113 -0
- package/vite-plugin/node_modules/rolldown/dist/shared/rolldown-D3JZ9rMt.mjs +40 -0
- package/vite-plugin/node_modules/rolldown/dist/shared/rolldown-build-DSxL8qiP.mjs +3325 -0
- package/vite-plugin/node_modules/rolldown/dist/shared/transform-DgZ3paSD.d.mts +149 -0
- package/vite-plugin/node_modules/rolldown/dist/shared/watch-Bd8v9ewv.mjs +374 -0
- package/vite-plugin/node_modules/rolldown/dist/utils-index.d.mts +376 -0
- package/vite-plugin/node_modules/rolldown/dist/utils-index.mjs +2414 -0
- package/vite-plugin/node_modules/rolldown/package.json +153 -0
- package/vite-plugin/node_modules/source-map-js/LICENSE +28 -0
- package/vite-plugin/node_modules/source-map-js/README.md +765 -0
- package/vite-plugin/node_modules/source-map-js/lib/array-set.js +121 -0
- package/vite-plugin/node_modules/source-map-js/lib/base64-vlq.js +140 -0
- package/vite-plugin/node_modules/source-map-js/lib/base64.js +67 -0
- package/vite-plugin/node_modules/source-map-js/lib/binary-search.js +111 -0
- package/vite-plugin/node_modules/source-map-js/lib/mapping-list.js +79 -0
- package/vite-plugin/node_modules/source-map-js/lib/quick-sort.js +132 -0
- package/vite-plugin/node_modules/source-map-js/lib/source-map-consumer.d.ts +1 -0
- package/vite-plugin/node_modules/source-map-js/lib/source-map-consumer.js +1188 -0
- package/vite-plugin/node_modules/source-map-js/lib/source-map-generator.d.ts +1 -0
- package/vite-plugin/node_modules/source-map-js/lib/source-map-generator.js +444 -0
- package/vite-plugin/node_modules/source-map-js/lib/source-node.d.ts +1 -0
- package/vite-plugin/node_modules/source-map-js/lib/source-node.js +413 -0
- package/vite-plugin/node_modules/source-map-js/lib/util.js +594 -0
- package/vite-plugin/node_modules/source-map-js/package.json +71 -0
- package/vite-plugin/node_modules/source-map-js/source-map.d.ts +104 -0
- package/vite-plugin/node_modules/source-map-js/source-map.js +8 -0
- package/vite-plugin/node_modules/tinyglobby/LICENSE +21 -0
- package/vite-plugin/node_modules/tinyglobby/README.md +25 -0
- package/vite-plugin/node_modules/tinyglobby/dist/index.cjs +334 -0
- package/vite-plugin/node_modules/tinyglobby/dist/index.d.cts +148 -0
- package/vite-plugin/node_modules/tinyglobby/dist/index.d.mts +148 -0
- package/vite-plugin/node_modules/tinyglobby/dist/index.mjs +306 -0
- package/vite-plugin/node_modules/tinyglobby/package.json +73 -0
- package/vite-plugin/node_modules/vite/LICENSE.md +2230 -0
- package/vite-plugin/node_modules/vite/README.md +20 -0
- package/vite-plugin/node_modules/vite/bin/openChrome.js +68 -0
- package/vite-plugin/node_modules/vite/bin/vite.js +79 -0
- package/vite-plugin/node_modules/vite/client.d.ts +282 -0
- package/vite-plugin/node_modules/vite/dist/client/client.mjs +1237 -0
- package/vite-plugin/node_modules/vite/dist/client/env.mjs +18 -0
- package/vite-plugin/node_modules/vite/dist/node/chunks/build.js +5381 -0
- package/vite-plugin/node_modules/vite/dist/node/chunks/chunk.js +37 -0
- package/vite-plugin/node_modules/vite/dist/node/chunks/dist.js +6784 -0
- package/vite-plugin/node_modules/vite/dist/node/chunks/lib.js +371 -0
- package/vite-plugin/node_modules/vite/dist/node/chunks/logger.js +322 -0
- package/vite-plugin/node_modules/vite/dist/node/chunks/moduleRunnerTransport.d.ts +96 -0
- package/vite-plugin/node_modules/vite/dist/node/chunks/node.js +34874 -0
- package/vite-plugin/node_modules/vite/dist/node/chunks/postcss-import.js +467 -0
- package/vite-plugin/node_modules/vite/dist/node/cli.js +837 -0
- package/vite-plugin/node_modules/vite/dist/node/index.d.ts +3867 -0
- package/vite-plugin/node_modules/vite/dist/node/index.js +3 -0
- package/vite-plugin/node_modules/vite/dist/node/internal.d.ts +2 -0
- package/vite-plugin/node_modules/vite/dist/node/internal.js +2 -0
- package/vite-plugin/node_modules/vite/dist/node/module-runner.d.ts +315 -0
- package/vite-plugin/node_modules/vite/dist/node/module-runner.js +1262 -0
- package/vite-plugin/node_modules/vite/misc/false.js +1 -0
- package/vite-plugin/node_modules/vite/misc/true.js +1 -0
- package/vite-plugin/node_modules/vite/package.json +192 -0
- package/vite-plugin/node_modules/vite/types/customEvent.d.ts +79 -0
- package/vite-plugin/node_modules/vite/types/hmrPayload.d.ts +80 -0
- package/vite-plugin/node_modules/vite/types/hot.d.ts +39 -0
- package/vite-plugin/node_modules/vite/types/import-meta.d.ts +5 -0
- package/vite-plugin/node_modules/vite/types/importGlob.d.ts +89 -0
- package/vite-plugin/node_modules/vite/types/importMeta.d.ts +30 -0
- package/vite-plugin/node_modules/vite/types/internal/cssPreprocessorOptions.d.ts +44 -0
- package/vite-plugin/node_modules/vite/types/internal/esbuildOptions.d.ts +28 -0
- package/vite-plugin/node_modules/vite/types/internal/lightningcssOptions.d.ts +18 -0
- package/vite-plugin/node_modules/vite/types/internal/rollupTypeCompat.d.ts +24 -0
- package/vite-plugin/node_modules/vite/types/internal/terserOptions.d.ts +11 -0
- package/vite-plugin/node_modules/vite/types/metadata.d.ts +47 -0
- package/vite-plugin/package.json +14 -0
- package/www/src/{assets → .well-known/agent-skills/mockaton}/SKILLS.md +21 -9
- package/src/server/cacheBustResolver.js +0 -19
|
@@ -0,0 +1,843 @@
|
|
|
1
|
+
// @flow
|
|
2
|
+
|
|
3
|
+
type Exclude<A, B> = A;
|
|
4
|
+
// see https://gist.github.com/thecotne/6e5969f4aaf8f253985ed36b30ac9fe0
|
|
5
|
+
type $FlowGen$If<X: boolean, Then, Else = empty> = $Call<
|
|
6
|
+
((true, Then, Else) => Then) & ((false, Then, Else) => Else),
|
|
7
|
+
X,
|
|
8
|
+
Then,
|
|
9
|
+
Else
|
|
10
|
+
>;
|
|
11
|
+
|
|
12
|
+
type $FlowGen$Assignable<A, B> = $Call<
|
|
13
|
+
((...r: [B]) => true) & ((...r: [A]) => false),
|
|
14
|
+
A
|
|
15
|
+
>;
|
|
16
|
+
|
|
17
|
+
import type {
|
|
18
|
+
Angle,
|
|
19
|
+
CssColor,
|
|
20
|
+
Rule,
|
|
21
|
+
CustomProperty,
|
|
22
|
+
EnvironmentVariable,
|
|
23
|
+
Function,
|
|
24
|
+
Image,
|
|
25
|
+
LengthValue,
|
|
26
|
+
MediaQuery,
|
|
27
|
+
Declaration,
|
|
28
|
+
Ratio,
|
|
29
|
+
Resolution,
|
|
30
|
+
Selector,
|
|
31
|
+
SupportsCondition,
|
|
32
|
+
Time,
|
|
33
|
+
Token,
|
|
34
|
+
TokenOrValue,
|
|
35
|
+
UnknownAtRule,
|
|
36
|
+
Url,
|
|
37
|
+
Variable,
|
|
38
|
+
StyleRule,
|
|
39
|
+
DeclarationBlock,
|
|
40
|
+
ParsedComponent,
|
|
41
|
+
Multiplier,
|
|
42
|
+
StyleSheet,
|
|
43
|
+
Location2,
|
|
44
|
+
} from "./ast.js.flow";
|
|
45
|
+
import { Targets, Features } from "./targets.js.flow";
|
|
46
|
+
declare export * from "./ast.js.flow";
|
|
47
|
+
declare export { Targets, Features };
|
|
48
|
+
export type TransformOptions<C: CustomAtRules> = {|
|
|
49
|
+
/**
|
|
50
|
+
* The filename being transformed. Used for error messages and source maps.
|
|
51
|
+
*/
|
|
52
|
+
filename: string,
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* The source code to transform.
|
|
56
|
+
*/
|
|
57
|
+
code: Uint8Array,
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* Whether to enable minification.
|
|
61
|
+
*/
|
|
62
|
+
minify?: boolean,
|
|
63
|
+
|
|
64
|
+
/**
|
|
65
|
+
* Whether to output a source map.
|
|
66
|
+
*/
|
|
67
|
+
sourceMap?: boolean,
|
|
68
|
+
|
|
69
|
+
/**
|
|
70
|
+
* An input source map to extend.
|
|
71
|
+
*/
|
|
72
|
+
inputSourceMap?: string,
|
|
73
|
+
|
|
74
|
+
/**
|
|
75
|
+
* An optional project root path, used as the source root in the output source map.
|
|
76
|
+
* Also used to generate relative paths for sources used in CSS module hashes.
|
|
77
|
+
*/
|
|
78
|
+
projectRoot?: string,
|
|
79
|
+
|
|
80
|
+
/**
|
|
81
|
+
* The browser targets for the generated code.
|
|
82
|
+
*/
|
|
83
|
+
targets?: Targets,
|
|
84
|
+
|
|
85
|
+
/**
|
|
86
|
+
* Features that should always be compiled, even when supported by targets.
|
|
87
|
+
*/
|
|
88
|
+
include?: number,
|
|
89
|
+
|
|
90
|
+
/**
|
|
91
|
+
* Features that should never be compiled, even when unsupported by targets.
|
|
92
|
+
*/
|
|
93
|
+
exclude?: number,
|
|
94
|
+
|
|
95
|
+
/**
|
|
96
|
+
* Whether to enable parsing various draft syntax.
|
|
97
|
+
*/
|
|
98
|
+
drafts?: Drafts,
|
|
99
|
+
|
|
100
|
+
/**
|
|
101
|
+
* Whether to enable various non-standard syntax.
|
|
102
|
+
*/
|
|
103
|
+
nonStandard?: NonStandard,
|
|
104
|
+
|
|
105
|
+
/**
|
|
106
|
+
* Whether to compile this file as a CSS module.
|
|
107
|
+
*/
|
|
108
|
+
cssModules?: boolean | CSSModulesConfig,
|
|
109
|
+
|
|
110
|
+
/**
|
|
111
|
+
* Whether to analyze dependencies (e.g. string).
|
|
112
|
+
* When enabled, string dependencies
|
|
113
|
+
* are replaced with hashed placeholders that can be replaced with the final
|
|
114
|
+
* urls later (after bundling). Dependencies are returned as part of the result.
|
|
115
|
+
*/
|
|
116
|
+
analyzeDependencies?: boolean | DependencyOptions,
|
|
117
|
+
|
|
118
|
+
/**
|
|
119
|
+
* Replaces user action pseudo classes with class names that can be applied from JavaScript.
|
|
120
|
+
* This is useful for polyfills, for example.
|
|
121
|
+
*/
|
|
122
|
+
pseudoClasses?: PseudoClasses,
|
|
123
|
+
|
|
124
|
+
/**
|
|
125
|
+
* A list of class names, ids, and custom identifiers (e.g. @keyframes) that are known
|
|
126
|
+
* to be unused. These will be removed during minification. Note that these are not
|
|
127
|
+
* selectors but individual names (without any . or # prefixes).
|
|
128
|
+
*/
|
|
129
|
+
unusedSymbols?: string[],
|
|
130
|
+
|
|
131
|
+
/**
|
|
132
|
+
* Whether to ignore invalid rules and declarations rather than erroring.
|
|
133
|
+
* When enabled, warnings are returned, and the invalid rule or declaration is
|
|
134
|
+
* omitted from the output code.
|
|
135
|
+
*/
|
|
136
|
+
errorRecovery?: boolean,
|
|
137
|
+
|
|
138
|
+
/**
|
|
139
|
+
* An AST visitor object. This allows custom transforms or analysis to be implemented in JavaScript.
|
|
140
|
+
* Multiple visitors can be composed into one using the string function.
|
|
141
|
+
* For optimal performance, visitors should be as specific as possible about what types of values
|
|
142
|
+
* they care about so that JavaScript has to be called as little as possible.
|
|
143
|
+
*/
|
|
144
|
+
visitor?: Visitor<C> | VisitorFunction<C>,
|
|
145
|
+
|
|
146
|
+
/**
|
|
147
|
+
* Defines how to parse custom CSS at-rules. Each at-rule can have a prelude, defined using a CSS
|
|
148
|
+
* [syntax string](https://drafts.css-houdini.org/css-properties-values-api/#syntax-strings), and
|
|
149
|
+
* a block body. The body can be a declaration list, rule list, or style block as defined in the
|
|
150
|
+
* [css spec](https://drafts.csswg.org/css-syntax/#declaration-rule-list).
|
|
151
|
+
*/
|
|
152
|
+
customAtRules?: C,
|
|
153
|
+
|};
|
|
154
|
+
declare type PropertyStart =
|
|
155
|
+
| "-"
|
|
156
|
+
| "_"
|
|
157
|
+
| "a"
|
|
158
|
+
| "b"
|
|
159
|
+
| "c"
|
|
160
|
+
| "d"
|
|
161
|
+
| "e"
|
|
162
|
+
| "f"
|
|
163
|
+
| "g"
|
|
164
|
+
| "h"
|
|
165
|
+
| "i"
|
|
166
|
+
| "j"
|
|
167
|
+
| "k"
|
|
168
|
+
| "l"
|
|
169
|
+
| "m"
|
|
170
|
+
| "n"
|
|
171
|
+
| "o"
|
|
172
|
+
| "p"
|
|
173
|
+
| "q"
|
|
174
|
+
| "r"
|
|
175
|
+
| "s"
|
|
176
|
+
| "t"
|
|
177
|
+
| "u"
|
|
178
|
+
| "v"
|
|
179
|
+
| "w"
|
|
180
|
+
| "x"
|
|
181
|
+
| "y"
|
|
182
|
+
| "z";
|
|
183
|
+
export type ReturnedDeclaration =
|
|
184
|
+
| Declaration
|
|
185
|
+
| {|
|
|
186
|
+
/**
|
|
187
|
+
* The property name.
|
|
188
|
+
*/
|
|
189
|
+
property: string,
|
|
190
|
+
|
|
191
|
+
/**
|
|
192
|
+
* The raw string value for the declaration.
|
|
193
|
+
*/
|
|
194
|
+
raw: string,
|
|
195
|
+
|};
|
|
196
|
+
export type ReturnedMediaQuery =
|
|
197
|
+
| MediaQuery
|
|
198
|
+
| {|
|
|
199
|
+
/**
|
|
200
|
+
* The raw string value for the media query.
|
|
201
|
+
*/
|
|
202
|
+
raw: string,
|
|
203
|
+
|};
|
|
204
|
+
declare type FindByType<Union, Name> = $FlowGen$If<
|
|
205
|
+
$FlowGen$Assignable<
|
|
206
|
+
Union,
|
|
207
|
+
{|
|
|
208
|
+
type: Name,
|
|
209
|
+
|}
|
|
210
|
+
>,
|
|
211
|
+
Union,
|
|
212
|
+
empty
|
|
213
|
+
>;
|
|
214
|
+
export type ReturnedRule = Rule<ReturnedDeclaration, ReturnedMediaQuery>;
|
|
215
|
+
declare type RequiredValue<Rule> = $FlowGen$If<
|
|
216
|
+
$FlowGen$Assignable<
|
|
217
|
+
Rule,
|
|
218
|
+
{|
|
|
219
|
+
value: { [key: string]: any },
|
|
220
|
+
|}
|
|
221
|
+
>,
|
|
222
|
+
$FlowGen$If<
|
|
223
|
+
$FlowGen$Assignable<$PropertyType<Rule, "value">, StyleRule>,
|
|
224
|
+
{|
|
|
225
|
+
...Rule,
|
|
226
|
+
...{|
|
|
227
|
+
value: {|
|
|
228
|
+
...Required<StyleRule>,
|
|
229
|
+
...{|
|
|
230
|
+
declarations: Required<DeclarationBlock>,
|
|
231
|
+
|},
|
|
232
|
+
|},
|
|
233
|
+
|},
|
|
234
|
+
|},
|
|
235
|
+
{|
|
|
236
|
+
...Rule,
|
|
237
|
+
...{|
|
|
238
|
+
value: Required<$PropertyType<Rule, "value">>,
|
|
239
|
+
|},
|
|
240
|
+
|}
|
|
241
|
+
>,
|
|
242
|
+
Rule
|
|
243
|
+
>;
|
|
244
|
+
declare type RuleVisitor<R = RequiredValue<Rule>> = (
|
|
245
|
+
rule: R
|
|
246
|
+
) => ReturnedRule | ReturnedRule[] | void;
|
|
247
|
+
declare type MappedRuleVisitors = $ObjMapi<
|
|
248
|
+
{ [k: Exclude<$PropertyType<Rule, "type">, "unknown" | "custom">]: any },
|
|
249
|
+
<Name>(Name) => RuleVisitor<RequiredValue<FindByType<Rule, Name>>>
|
|
250
|
+
>;
|
|
251
|
+
declare type UnknownVisitors<T> = {
|
|
252
|
+
[name: string]: RuleVisitor<T>,
|
|
253
|
+
};
|
|
254
|
+
declare type CustomVisitors<T: CustomAtRules> = $ObjMapi<
|
|
255
|
+
T,
|
|
256
|
+
<Name>(Name) => RuleVisitor<CustomAtRule<Name, $ElementType<T, Name>>>
|
|
257
|
+
>;
|
|
258
|
+
declare type AnyCustomAtRule<C: CustomAtRules> = $ElementType<
|
|
259
|
+
$ObjMapi<C, <Key>(Key) => CustomAtRule<Key, $ElementType<C, Key>>>,
|
|
260
|
+
$Keys<C>
|
|
261
|
+
>;
|
|
262
|
+
declare type RuleVisitors<C: CustomAtRules> = {|
|
|
263
|
+
...MappedRuleVisitors,
|
|
264
|
+
...{|
|
|
265
|
+
unknown?:
|
|
266
|
+
| UnknownVisitors<UnknownAtRule>
|
|
267
|
+
| $Diff<
|
|
268
|
+
RuleVisitor<UnknownAtRule>,
|
|
269
|
+
{ [key: $Keys<CallableFunction>]: any }
|
|
270
|
+
>,
|
|
271
|
+
custom?:
|
|
272
|
+
| CustomVisitors<C>
|
|
273
|
+
| $Diff<
|
|
274
|
+
RuleVisitor<AnyCustomAtRule<C>>,
|
|
275
|
+
{ [key: $Keys<CallableFunction>]: any }
|
|
276
|
+
>,
|
|
277
|
+
|},
|
|
278
|
+
|};
|
|
279
|
+
declare type PreludeTypes = Exclude<
|
|
280
|
+
$PropertyType<ParsedComponent, "type">,
|
|
281
|
+
"literal" | "repeated" | "token"
|
|
282
|
+
>;
|
|
283
|
+
declare type SyntaxString = string | string;
|
|
284
|
+
declare type ComponentTypes = $ObjMapi<
|
|
285
|
+
{ [k: PreludeTypes]: any },
|
|
286
|
+
<Key>(Key) => FindByType<ParsedComponent, Key>
|
|
287
|
+
>;
|
|
288
|
+
declare type Repetitions = $ObjMapi<
|
|
289
|
+
{ [k: PreludeTypes]: any },
|
|
290
|
+
<Key>(Key) => {|
|
|
291
|
+
type: "repeated",
|
|
292
|
+
value: {|
|
|
293
|
+
components: FindByType<ParsedComponent, Key>[],
|
|
294
|
+
multiplier: Multiplier,
|
|
295
|
+
|},
|
|
296
|
+
|}
|
|
297
|
+
>;
|
|
298
|
+
declare type MappedPrelude = {| ...ComponentTypes, ...Repetitions |};
|
|
299
|
+
declare type MappedBody<P: $PropertyType<CustomAtRuleDefinition, "body">> =
|
|
300
|
+
$FlowGen$If<$FlowGen$Assignable<P, "style-block">, "rule-list", P>;
|
|
301
|
+
declare type CustomAtRule<N, R: CustomAtRuleDefinition> = {|
|
|
302
|
+
name: N,
|
|
303
|
+
prelude: $FlowGen$If<
|
|
304
|
+
$FlowGen$Assignable<$PropertyType<R, "prelude">, $Keys<MappedPrelude>>,
|
|
305
|
+
$ElementType<MappedPrelude, $PropertyType<R, "prelude">>,
|
|
306
|
+
ParsedComponent
|
|
307
|
+
>,
|
|
308
|
+
body: FindByType<CustomAtRuleBody, MappedBody<$PropertyType<R, "body">>>,
|
|
309
|
+
loc: Location2,
|
|
310
|
+
|};
|
|
311
|
+
declare type CustomAtRuleBody =
|
|
312
|
+
| {|
|
|
313
|
+
type: "declaration-list",
|
|
314
|
+
value: Required<DeclarationBlock>,
|
|
315
|
+
|}
|
|
316
|
+
| {|
|
|
317
|
+
type: "rule-list",
|
|
318
|
+
value: RequiredValue<Rule>[],
|
|
319
|
+
|};
|
|
320
|
+
declare type FindProperty<Union, Name> = $FlowGen$If<
|
|
321
|
+
$FlowGen$Assignable<
|
|
322
|
+
Union,
|
|
323
|
+
{|
|
|
324
|
+
property: Name,
|
|
325
|
+
|}
|
|
326
|
+
>,
|
|
327
|
+
Union,
|
|
328
|
+
empty
|
|
329
|
+
>;
|
|
330
|
+
declare type DeclarationVisitor<P = Declaration> = (
|
|
331
|
+
property: P
|
|
332
|
+
) => ReturnedDeclaration | ReturnedDeclaration[] | void;
|
|
333
|
+
declare type MappedDeclarationVisitors = $ObjMapi<
|
|
334
|
+
{
|
|
335
|
+
[k: Exclude<
|
|
336
|
+
$PropertyType<Declaration, "property">,
|
|
337
|
+
"unparsed" | "custom"
|
|
338
|
+
>]: any,
|
|
339
|
+
},
|
|
340
|
+
<Name>(
|
|
341
|
+
Name
|
|
342
|
+
) => DeclarationVisitor<
|
|
343
|
+
FindProperty<Declaration, Name> | FindProperty<Declaration, "unparsed">
|
|
344
|
+
>
|
|
345
|
+
>;
|
|
346
|
+
declare type CustomPropertyVisitors = {
|
|
347
|
+
[name: string]: DeclarationVisitor<CustomProperty>,
|
|
348
|
+
};
|
|
349
|
+
declare type DeclarationVisitors = {|
|
|
350
|
+
...MappedDeclarationVisitors,
|
|
351
|
+
...{|
|
|
352
|
+
custom?: CustomPropertyVisitors | DeclarationVisitor<CustomProperty>,
|
|
353
|
+
|},
|
|
354
|
+
|};
|
|
355
|
+
declare type RawValue = {|
|
|
356
|
+
/**
|
|
357
|
+
* A raw string value which will be parsed like CSS.
|
|
358
|
+
*/
|
|
359
|
+
raw: string,
|
|
360
|
+
|};
|
|
361
|
+
declare type TokenReturnValue = TokenOrValue | TokenOrValue[] | RawValue | void;
|
|
362
|
+
declare type TokenVisitor = (token: Token) => TokenReturnValue;
|
|
363
|
+
declare type VisitableTokenTypes =
|
|
364
|
+
| "ident"
|
|
365
|
+
| "at-keyword"
|
|
366
|
+
| "hash"
|
|
367
|
+
| "id-hash"
|
|
368
|
+
| "string"
|
|
369
|
+
| "number"
|
|
370
|
+
| "percentage"
|
|
371
|
+
| "dimension";
|
|
372
|
+
declare type TokenVisitors = $ObjMapi<
|
|
373
|
+
{ [k: VisitableTokenTypes]: any },
|
|
374
|
+
<Name>(Name) => (token: FindByType<Token, Name>) => TokenReturnValue
|
|
375
|
+
>;
|
|
376
|
+
declare type FunctionVisitor = (fn: Function) => TokenReturnValue;
|
|
377
|
+
declare type EnvironmentVariableVisitor = (
|
|
378
|
+
env: EnvironmentVariable
|
|
379
|
+
) => TokenReturnValue;
|
|
380
|
+
declare type EnvironmentVariableVisitors = {
|
|
381
|
+
[name: string]: EnvironmentVariableVisitor,
|
|
382
|
+
};
|
|
383
|
+
export type Visitor<C: CustomAtRules> = {|
|
|
384
|
+
StyleSheet?: (
|
|
385
|
+
stylesheet: StyleSheet
|
|
386
|
+
) => StyleSheet<ReturnedDeclaration, ReturnedMediaQuery> | void,
|
|
387
|
+
StyleSheetExit?: (
|
|
388
|
+
stylesheet: StyleSheet
|
|
389
|
+
) => StyleSheet<ReturnedDeclaration, ReturnedMediaQuery> | void,
|
|
390
|
+
Rule?: RuleVisitor<> | RuleVisitors<C>,
|
|
391
|
+
RuleExit?: RuleVisitor<> | RuleVisitors<C>,
|
|
392
|
+
Declaration?: DeclarationVisitor<> | DeclarationVisitors,
|
|
393
|
+
DeclarationExit?: DeclarationVisitor<> | DeclarationVisitors,
|
|
394
|
+
Url?: (url: Url) => Url | void,
|
|
395
|
+
Color?: (color: CssColor) => CssColor | void,
|
|
396
|
+
Image?: (image: Image) => Image | void,
|
|
397
|
+
ImageExit?: (image: Image) => Image | void,
|
|
398
|
+
Length?: (length: LengthValue) => LengthValue | void,
|
|
399
|
+
Angle?: (angle: Angle) => Angle | void,
|
|
400
|
+
Ratio?: (ratio: Ratio) => Ratio | void,
|
|
401
|
+
Resolution?: (resolution: Resolution) => Resolution | void,
|
|
402
|
+
Time?: (time: Time) => Time | void,
|
|
403
|
+
CustomIdent?: (ident: string) => string | void,
|
|
404
|
+
DashedIdent?: (ident: string) => string | void,
|
|
405
|
+
MediaQuery?: (
|
|
406
|
+
query: MediaQuery
|
|
407
|
+
) => ReturnedMediaQuery | ReturnedMediaQuery[] | void,
|
|
408
|
+
MediaQueryExit?: (
|
|
409
|
+
query: MediaQuery
|
|
410
|
+
) => ReturnedMediaQuery | ReturnedMediaQuery[] | void,
|
|
411
|
+
SupportsCondition?: (condition: SupportsCondition) => SupportsCondition,
|
|
412
|
+
SupportsConditionExit?: (condition: SupportsCondition) => SupportsCondition,
|
|
413
|
+
Selector?: (selector: Selector) => Selector | Selector[] | void,
|
|
414
|
+
Token?: TokenVisitor | TokenVisitors,
|
|
415
|
+
Function?:
|
|
416
|
+
| FunctionVisitor
|
|
417
|
+
| {
|
|
418
|
+
[name: string]: FunctionVisitor,
|
|
419
|
+
},
|
|
420
|
+
FunctionExit?:
|
|
421
|
+
| FunctionVisitor
|
|
422
|
+
| {
|
|
423
|
+
[name: string]: FunctionVisitor,
|
|
424
|
+
},
|
|
425
|
+
Variable?: (variable: Variable) => TokenReturnValue,
|
|
426
|
+
VariableExit?: (variable: Variable) => TokenReturnValue,
|
|
427
|
+
EnvironmentVariable?:
|
|
428
|
+
| EnvironmentVariableVisitor
|
|
429
|
+
| EnvironmentVariableVisitors,
|
|
430
|
+
EnvironmentVariableExit?:
|
|
431
|
+
| EnvironmentVariableVisitor
|
|
432
|
+
| EnvironmentVariableVisitors,
|
|
433
|
+
|};
|
|
434
|
+
export type VisitorDependency = FileDependency | GlobDependency;
|
|
435
|
+
export type VisitorOptions = {|
|
|
436
|
+
addDependency: (dep: VisitorDependency) => void,
|
|
437
|
+
|};
|
|
438
|
+
export type VisitorFunction<C: CustomAtRules> = (
|
|
439
|
+
options: VisitorOptions
|
|
440
|
+
) => Visitor<C>;
|
|
441
|
+
export type CustomAtRules = {|
|
|
442
|
+
[name: string]: CustomAtRuleDefinition,
|
|
443
|
+
|};
|
|
444
|
+
export type CustomAtRuleDefinition = {|
|
|
445
|
+
/**
|
|
446
|
+
* Defines the syntax for a custom at-rule prelude. The value should be a
|
|
447
|
+
* CSS [syntax string](https://drafts.css-houdini.org/css-properties-values-api/#syntax-strings)
|
|
448
|
+
* representing the types of values that are accepted. This property may be omitted or
|
|
449
|
+
* set to null to indicate that no prelude is accepted.
|
|
450
|
+
*/
|
|
451
|
+
prelude?: SyntaxString | null,
|
|
452
|
+
|
|
453
|
+
/**
|
|
454
|
+
* Defines the type of body contained within the at-rule block.
|
|
455
|
+
* - declaration-list: A CSS declaration list, as in a style rule.
|
|
456
|
+
* - rule-list: A list of CSS rules, as supported within a non-nested
|
|
457
|
+
* at-rule such as string.
|
|
458
|
+
* - style-block: Both a declaration list and rule list, as accepted within
|
|
459
|
+
* a nested at-rule within a style rule (e.g. string inside a style rule
|
|
460
|
+
* with directly nested declarations).
|
|
461
|
+
*/
|
|
462
|
+
body?: "declaration-list" | "rule-list" | "style-block" | null,
|
|
463
|
+
|};
|
|
464
|
+
export type DependencyOptions = {|
|
|
465
|
+
/**
|
|
466
|
+
* Whether to preserve string rules rather than removing them.
|
|
467
|
+
*/
|
|
468
|
+
preserveImports?: boolean,
|
|
469
|
+
|};
|
|
470
|
+
export type BundleOptions<C: CustomAtRules> = $Diff<
|
|
471
|
+
TransformOptions<C>,
|
|
472
|
+
{| code: any |}
|
|
473
|
+
>;
|
|
474
|
+
export type BundleAsyncOptions<C: CustomAtRules> = {|
|
|
475
|
+
...$Exact<BundleOptions<C>>,
|
|
476
|
+
|
|
477
|
+
resolver?: Resolver,
|
|
478
|
+
|};
|
|
479
|
+
|
|
480
|
+
/**
|
|
481
|
+
* Custom resolver to use when loading CSS files.
|
|
482
|
+
*/
|
|
483
|
+
export type Resolver = {|
|
|
484
|
+
/**
|
|
485
|
+
* Read the given file and return its contents as a string.
|
|
486
|
+
*/
|
|
487
|
+
read?: (file: string) => string | Promise<string>,
|
|
488
|
+
|
|
489
|
+
/**
|
|
490
|
+
* Resolve the given CSS import specifier from the provided originating file to a
|
|
491
|
+
* path which gets passed to string.
|
|
492
|
+
*/
|
|
493
|
+
resolve?: (
|
|
494
|
+
specifier: string,
|
|
495
|
+
originatingFile: string
|
|
496
|
+
) => string | Promise<string>,
|
|
497
|
+
|};
|
|
498
|
+
export type Drafts = {|
|
|
499
|
+
/**
|
|
500
|
+
* Whether to enable @custom-media rules.
|
|
501
|
+
*/
|
|
502
|
+
customMedia?: boolean,
|
|
503
|
+
|};
|
|
504
|
+
export type NonStandard = {|
|
|
505
|
+
/**
|
|
506
|
+
* Whether to enable the non-standard >>> and /deep/ selector combinators used by Angular and Vue.
|
|
507
|
+
*/
|
|
508
|
+
deepSelectorCombinator?: boolean,
|
|
509
|
+
|};
|
|
510
|
+
export type PseudoClasses = {|
|
|
511
|
+
hover?: string,
|
|
512
|
+
active?: string,
|
|
513
|
+
focus?: string,
|
|
514
|
+
focusVisible?: string,
|
|
515
|
+
focusWithin?: string,
|
|
516
|
+
|};
|
|
517
|
+
export type TransformResult = {|
|
|
518
|
+
/**
|
|
519
|
+
* The transformed code.
|
|
520
|
+
*/
|
|
521
|
+
code: Uint8Array,
|
|
522
|
+
|
|
523
|
+
/**
|
|
524
|
+
* The generated source map, if enabled.
|
|
525
|
+
*/
|
|
526
|
+
map: Uint8Array | void,
|
|
527
|
+
|
|
528
|
+
/**
|
|
529
|
+
* CSS module exports, if enabled.
|
|
530
|
+
*/
|
|
531
|
+
exports: CSSModuleExports | void,
|
|
532
|
+
|
|
533
|
+
/**
|
|
534
|
+
* CSS module references, if string is enabled.
|
|
535
|
+
*/
|
|
536
|
+
references: CSSModuleReferences,
|
|
537
|
+
|
|
538
|
+
/**
|
|
539
|
+
* string dependencies, if enabled.
|
|
540
|
+
*/
|
|
541
|
+
dependencies: Dependency[] | void,
|
|
542
|
+
|
|
543
|
+
/**
|
|
544
|
+
* Warnings that occurred during compilation.
|
|
545
|
+
*/
|
|
546
|
+
warnings: Warning[],
|
|
547
|
+
|};
|
|
548
|
+
export type Warning = {|
|
|
549
|
+
message: string,
|
|
550
|
+
type: string,
|
|
551
|
+
value?: any,
|
|
552
|
+
loc: ErrorLocation,
|
|
553
|
+
|};
|
|
554
|
+
export type CSSModulesConfig = {|
|
|
555
|
+
/**
|
|
556
|
+
* The pattern to use when renaming class names and other identifiers. Default is string.
|
|
557
|
+
*/
|
|
558
|
+
pattern?: string,
|
|
559
|
+
|
|
560
|
+
/**
|
|
561
|
+
* Whether to rename dashed identifiers, e.g. custom properties.
|
|
562
|
+
*/
|
|
563
|
+
dashedIdents?: boolean,
|
|
564
|
+
|
|
565
|
+
/**
|
|
566
|
+
* Whether to enable hashing for string.
|
|
567
|
+
*/
|
|
568
|
+
animation?: boolean,
|
|
569
|
+
|
|
570
|
+
/**
|
|
571
|
+
* Whether to enable hashing for CSS grid identifiers.
|
|
572
|
+
*/
|
|
573
|
+
grid?: boolean,
|
|
574
|
+
|
|
575
|
+
/**
|
|
576
|
+
* Whether to enable hashing for string names.
|
|
577
|
+
*/
|
|
578
|
+
container?: boolean,
|
|
579
|
+
|
|
580
|
+
/**
|
|
581
|
+
* Whether to enable hashing for custom identifiers.
|
|
582
|
+
*/
|
|
583
|
+
customIdents?: boolean,
|
|
584
|
+
|
|
585
|
+
/**
|
|
586
|
+
* Whether to require at least one class or id selector in each rule.
|
|
587
|
+
*/
|
|
588
|
+
pure?: boolean,
|
|
589
|
+
|};
|
|
590
|
+
export type CSSModuleExports = {
|
|
591
|
+
/**
|
|
592
|
+
* Maps exported (i.e. original) names to local names.
|
|
593
|
+
*/
|
|
594
|
+
[name: string]: CSSModuleExport,
|
|
595
|
+
};
|
|
596
|
+
export type CSSModuleExport = {|
|
|
597
|
+
/**
|
|
598
|
+
* The local (compiled) name for this export.
|
|
599
|
+
*/
|
|
600
|
+
name: string,
|
|
601
|
+
|
|
602
|
+
/**
|
|
603
|
+
* Whether the export is referenced in this file.
|
|
604
|
+
*/
|
|
605
|
+
isReferenced: boolean,
|
|
606
|
+
|
|
607
|
+
/**
|
|
608
|
+
* Other names that are composed by this export.
|
|
609
|
+
*/
|
|
610
|
+
composes: CSSModuleReference[],
|
|
611
|
+
|};
|
|
612
|
+
export type CSSModuleReferences = {
|
|
613
|
+
/**
|
|
614
|
+
* Maps placeholder names to references.
|
|
615
|
+
*/
|
|
616
|
+
[name: string]: DependencyCSSModuleReference,
|
|
617
|
+
};
|
|
618
|
+
export type CSSModuleReference =
|
|
619
|
+
| LocalCSSModuleReference
|
|
620
|
+
| GlobalCSSModuleReference
|
|
621
|
+
| DependencyCSSModuleReference;
|
|
622
|
+
export type LocalCSSModuleReference = {|
|
|
623
|
+
type: "local",
|
|
624
|
+
|
|
625
|
+
/**
|
|
626
|
+
* The local (compiled) name for the reference.
|
|
627
|
+
*/
|
|
628
|
+
name: string,
|
|
629
|
+
|};
|
|
630
|
+
export type GlobalCSSModuleReference = {|
|
|
631
|
+
type: "global",
|
|
632
|
+
|
|
633
|
+
/**
|
|
634
|
+
* The referenced global name.
|
|
635
|
+
*/
|
|
636
|
+
name: string,
|
|
637
|
+
|};
|
|
638
|
+
export type DependencyCSSModuleReference = {|
|
|
639
|
+
type: "dependency",
|
|
640
|
+
|
|
641
|
+
/**
|
|
642
|
+
* The name to reference within the dependency.
|
|
643
|
+
*/
|
|
644
|
+
name: string,
|
|
645
|
+
|
|
646
|
+
/**
|
|
647
|
+
* The dependency specifier for the referenced file.
|
|
648
|
+
*/
|
|
649
|
+
specifier: string,
|
|
650
|
+
|};
|
|
651
|
+
export type Dependency =
|
|
652
|
+
| ImportDependency
|
|
653
|
+
| UrlDependency
|
|
654
|
+
| FileDependency
|
|
655
|
+
| GlobDependency;
|
|
656
|
+
export type ImportDependency = {|
|
|
657
|
+
type: "import",
|
|
658
|
+
|
|
659
|
+
/**
|
|
660
|
+
* The url of the string dependency.
|
|
661
|
+
*/
|
|
662
|
+
url: string,
|
|
663
|
+
|
|
664
|
+
/**
|
|
665
|
+
* The media query for the string rule.
|
|
666
|
+
*/
|
|
667
|
+
media: string | null,
|
|
668
|
+
|
|
669
|
+
/**
|
|
670
|
+
* The string rule.
|
|
671
|
+
*/
|
|
672
|
+
supports: string | null,
|
|
673
|
+
|
|
674
|
+
/**
|
|
675
|
+
* The source location where the string rule was found.
|
|
676
|
+
*/
|
|
677
|
+
loc: SourceLocation,
|
|
678
|
+
|
|
679
|
+
/**
|
|
680
|
+
* The placeholder that the import was replaced with.
|
|
681
|
+
*/
|
|
682
|
+
placeholder: string,
|
|
683
|
+
|};
|
|
684
|
+
export type UrlDependency = {|
|
|
685
|
+
type: "url",
|
|
686
|
+
|
|
687
|
+
/**
|
|
688
|
+
* The url of the dependency.
|
|
689
|
+
*/
|
|
690
|
+
url: string,
|
|
691
|
+
|
|
692
|
+
/**
|
|
693
|
+
* The source location where the string was found.
|
|
694
|
+
*/
|
|
695
|
+
loc: SourceLocation,
|
|
696
|
+
|
|
697
|
+
/**
|
|
698
|
+
* The placeholder that the url was replaced with.
|
|
699
|
+
*/
|
|
700
|
+
placeholder: string,
|
|
701
|
+
|};
|
|
702
|
+
export type FileDependency = {|
|
|
703
|
+
type: "file",
|
|
704
|
+
filePath: string,
|
|
705
|
+
|};
|
|
706
|
+
export type GlobDependency = {|
|
|
707
|
+
type: "glob",
|
|
708
|
+
glob: string,
|
|
709
|
+
|};
|
|
710
|
+
export type SourceLocation = {|
|
|
711
|
+
/**
|
|
712
|
+
* The file path in which the dependency exists.
|
|
713
|
+
*/
|
|
714
|
+
filePath: string,
|
|
715
|
+
|
|
716
|
+
/**
|
|
717
|
+
* The start location of the dependency.
|
|
718
|
+
*/
|
|
719
|
+
start: Location,
|
|
720
|
+
|
|
721
|
+
/**
|
|
722
|
+
* The end location (inclusive) of the dependency.
|
|
723
|
+
*/
|
|
724
|
+
end: Location,
|
|
725
|
+
|};
|
|
726
|
+
export type Location = {|
|
|
727
|
+
/**
|
|
728
|
+
* The line number (1-based).
|
|
729
|
+
*/
|
|
730
|
+
line: number,
|
|
731
|
+
|
|
732
|
+
/**
|
|
733
|
+
* The column number (0-based).
|
|
734
|
+
*/
|
|
735
|
+
column: number,
|
|
736
|
+
|};
|
|
737
|
+
export type ErrorLocation = {|
|
|
738
|
+
...$Exact<Location>,
|
|
739
|
+
|
|
740
|
+
filename: string,
|
|
741
|
+
|};
|
|
742
|
+
|
|
743
|
+
/**
|
|
744
|
+
* Compiles a CSS file, including optionally minifying and lowering syntax to the given
|
|
745
|
+
* targets. A source map may also be generated, but this is not enabled by default.
|
|
746
|
+
*/
|
|
747
|
+
declare export function transform<C: CustomAtRules>(
|
|
748
|
+
options: TransformOptions<C>
|
|
749
|
+
): TransformResult;
|
|
750
|
+
export type TransformAttributeOptions = {|
|
|
751
|
+
/**
|
|
752
|
+
* The filename in which the style attribute appeared. Used for error messages and dependencies.
|
|
753
|
+
*/
|
|
754
|
+
filename?: string,
|
|
755
|
+
|
|
756
|
+
/**
|
|
757
|
+
* The source code to transform.
|
|
758
|
+
*/
|
|
759
|
+
code: Uint8Array,
|
|
760
|
+
|
|
761
|
+
/**
|
|
762
|
+
* Whether to enable minification.
|
|
763
|
+
*/
|
|
764
|
+
minify?: boolean,
|
|
765
|
+
|
|
766
|
+
/**
|
|
767
|
+
* The browser targets for the generated code.
|
|
768
|
+
*/
|
|
769
|
+
targets?: Targets,
|
|
770
|
+
|
|
771
|
+
/**
|
|
772
|
+
* Whether to analyze string dependencies.
|
|
773
|
+
* When enabled, string dependencies are replaced with hashed placeholders
|
|
774
|
+
* that can be replaced with the final urls later (after bundling).
|
|
775
|
+
* Dependencies are returned as part of the result.
|
|
776
|
+
*/
|
|
777
|
+
analyzeDependencies?: boolean,
|
|
778
|
+
|
|
779
|
+
/**
|
|
780
|
+
* Whether to ignore invalid rules and declarations rather than erroring.
|
|
781
|
+
* When enabled, warnings are returned, and the invalid rule or declaration is
|
|
782
|
+
* omitted from the output code.
|
|
783
|
+
*/
|
|
784
|
+
errorRecovery?: boolean,
|
|
785
|
+
|
|
786
|
+
/**
|
|
787
|
+
* An AST visitor object. This allows custom transforms or analysis to be implemented in JavaScript.
|
|
788
|
+
* Multiple visitors can be composed into one using the string function.
|
|
789
|
+
* For optimal performance, visitors should be as specific as possible about what types of values
|
|
790
|
+
* they care about so that JavaScript has to be called as little as possible.
|
|
791
|
+
*/
|
|
792
|
+
visitor?: Visitor<empty> | VisitorFunction<empty>,
|
|
793
|
+
|};
|
|
794
|
+
export type TransformAttributeResult = {|
|
|
795
|
+
/**
|
|
796
|
+
* The transformed code.
|
|
797
|
+
*/
|
|
798
|
+
code: Uint8Array,
|
|
799
|
+
|
|
800
|
+
/**
|
|
801
|
+
* string dependencies, if enabled.
|
|
802
|
+
*/
|
|
803
|
+
dependencies: Dependency[] | void,
|
|
804
|
+
|
|
805
|
+
/**
|
|
806
|
+
* Warnings that occurred during compilation.
|
|
807
|
+
*/
|
|
808
|
+
warnings: Warning[],
|
|
809
|
+
|};
|
|
810
|
+
|
|
811
|
+
/**
|
|
812
|
+
* Compiles a single CSS declaration list, such as an inline style attribute in HTML.
|
|
813
|
+
*/
|
|
814
|
+
declare export function transformStyleAttribute(
|
|
815
|
+
options: TransformAttributeOptions
|
|
816
|
+
): TransformAttributeResult;
|
|
817
|
+
|
|
818
|
+
/**
|
|
819
|
+
* Converts a browserslist result into targets that can be passed to lightningcss.
|
|
820
|
+
* @param browserslist the result of calling string
|
|
821
|
+
*/
|
|
822
|
+
declare export function browserslistToTargets(browserslist: string[]): Targets;
|
|
823
|
+
|
|
824
|
+
/**
|
|
825
|
+
* Bundles a CSS file and its dependencies, inlining @import rules.
|
|
826
|
+
*/
|
|
827
|
+
declare export function bundle<C: CustomAtRules>(
|
|
828
|
+
options: BundleOptions<C>
|
|
829
|
+
): TransformResult;
|
|
830
|
+
|
|
831
|
+
/**
|
|
832
|
+
* Bundles a CSS file and its dependencies asynchronously, inlining @import rules.
|
|
833
|
+
*/
|
|
834
|
+
declare export function bundleAsync<C: CustomAtRules>(
|
|
835
|
+
options: BundleAsyncOptions<C>
|
|
836
|
+
): Promise<TransformResult>;
|
|
837
|
+
|
|
838
|
+
/**
|
|
839
|
+
* Composes multiple visitor objects into a single one.
|
|
840
|
+
*/
|
|
841
|
+
declare export function composeVisitors<C: CustomAtRules>(
|
|
842
|
+
visitors: (Visitor<C> | VisitorFunction<C>)[]
|
|
843
|
+
): Visitor<C> | VisitorFunction<C>;
|