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,349 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
const scan = require('./scan');
|
|
4
|
+
const parse = require('./parse');
|
|
5
|
+
const utils = require('./utils');
|
|
6
|
+
const constants = require('./constants');
|
|
7
|
+
const isObject = val => val && typeof val === 'object' && !Array.isArray(val);
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* Creates a matcher function from one or more glob patterns. The
|
|
11
|
+
* returned function takes a string to match as its first argument,
|
|
12
|
+
* and returns true if the string is a match. The returned matcher
|
|
13
|
+
* function also takes a boolean as the second argument that, when true,
|
|
14
|
+
* returns an object with additional information.
|
|
15
|
+
*
|
|
16
|
+
* ```js
|
|
17
|
+
* const picomatch = require('picomatch');
|
|
18
|
+
* // picomatch(glob[, options]);
|
|
19
|
+
*
|
|
20
|
+
* const isMatch = picomatch('*.!(*a)');
|
|
21
|
+
* console.log(isMatch('a.a')); //=> false
|
|
22
|
+
* console.log(isMatch('a.b')); //=> true
|
|
23
|
+
* ```
|
|
24
|
+
* @name picomatch
|
|
25
|
+
* @param {String|Array} `globs` One or more glob patterns.
|
|
26
|
+
* @param {Object=} `options`
|
|
27
|
+
* @return {Function=} Returns a matcher function.
|
|
28
|
+
* @api public
|
|
29
|
+
*/
|
|
30
|
+
|
|
31
|
+
const picomatch = (glob, options, returnState = false) => {
|
|
32
|
+
if (Array.isArray(glob)) {
|
|
33
|
+
const fns = glob.map(input => picomatch(input, options, returnState));
|
|
34
|
+
const arrayMatcher = str => {
|
|
35
|
+
for (const isMatch of fns) {
|
|
36
|
+
const state = isMatch(str);
|
|
37
|
+
if (state) return state;
|
|
38
|
+
}
|
|
39
|
+
return false;
|
|
40
|
+
};
|
|
41
|
+
return arrayMatcher;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
const isState = isObject(glob) && glob.tokens && glob.input;
|
|
45
|
+
|
|
46
|
+
if (glob === '' || (typeof glob !== 'string' && !isState)) {
|
|
47
|
+
throw new TypeError('Expected pattern to be a non-empty string');
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
const opts = options || {};
|
|
51
|
+
const posix = opts.windows;
|
|
52
|
+
const regex = isState
|
|
53
|
+
? picomatch.compileRe(glob, options)
|
|
54
|
+
: picomatch.makeRe(glob, options, false, true);
|
|
55
|
+
|
|
56
|
+
const state = regex.state;
|
|
57
|
+
delete regex.state;
|
|
58
|
+
|
|
59
|
+
let isIgnored = () => false;
|
|
60
|
+
if (opts.ignore) {
|
|
61
|
+
const ignoreOpts = { ...options, ignore: null, onMatch: null, onResult: null };
|
|
62
|
+
isIgnored = picomatch(opts.ignore, ignoreOpts, returnState);
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
const matcher = (input, returnObject = false) => {
|
|
66
|
+
const { isMatch, match, output } = picomatch.test(input, regex, options, { glob, posix });
|
|
67
|
+
const result = { glob, state, regex, posix, input, output, match, isMatch };
|
|
68
|
+
|
|
69
|
+
if (typeof opts.onResult === 'function') {
|
|
70
|
+
opts.onResult(result);
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
if (isMatch === false) {
|
|
74
|
+
result.isMatch = false;
|
|
75
|
+
return returnObject ? result : false;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
if (isIgnored(input)) {
|
|
79
|
+
if (typeof opts.onIgnore === 'function') {
|
|
80
|
+
opts.onIgnore(result);
|
|
81
|
+
}
|
|
82
|
+
result.isMatch = false;
|
|
83
|
+
return returnObject ? result : false;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
if (typeof opts.onMatch === 'function') {
|
|
87
|
+
opts.onMatch(result);
|
|
88
|
+
}
|
|
89
|
+
return returnObject ? result : true;
|
|
90
|
+
};
|
|
91
|
+
|
|
92
|
+
if (returnState) {
|
|
93
|
+
matcher.state = state;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
return matcher;
|
|
97
|
+
};
|
|
98
|
+
|
|
99
|
+
/**
|
|
100
|
+
* Test `input` with the given `regex`. This is used by the main
|
|
101
|
+
* `picomatch()` function to test the input string.
|
|
102
|
+
*
|
|
103
|
+
* ```js
|
|
104
|
+
* const picomatch = require('picomatch');
|
|
105
|
+
* // picomatch.test(input, regex[, options]);
|
|
106
|
+
*
|
|
107
|
+
* console.log(picomatch.test('foo/bar', /^(?:([^/]*?)\/([^/]*?))$/));
|
|
108
|
+
* // { isMatch: true, match: [ 'foo/', 'foo', 'bar' ], output: 'foo/bar' }
|
|
109
|
+
* ```
|
|
110
|
+
* @param {String} `input` String to test.
|
|
111
|
+
* @param {RegExp} `regex`
|
|
112
|
+
* @return {Object} Returns an object with matching info.
|
|
113
|
+
* @api public
|
|
114
|
+
*/
|
|
115
|
+
|
|
116
|
+
picomatch.test = (input, regex, options, { glob, posix } = {}) => {
|
|
117
|
+
if (typeof input !== 'string') {
|
|
118
|
+
throw new TypeError('Expected input to be a string');
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
if (input === '') {
|
|
122
|
+
return { isMatch: false, output: '' };
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
const opts = options || {};
|
|
126
|
+
const format = opts.format || (posix ? utils.toPosixSlashes : null);
|
|
127
|
+
let match = input === glob;
|
|
128
|
+
let output = (match && format) ? format(input) : input;
|
|
129
|
+
|
|
130
|
+
if (match === false) {
|
|
131
|
+
output = format ? format(input) : input;
|
|
132
|
+
match = output === glob;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
if (match === false || opts.capture === true) {
|
|
136
|
+
if (opts.matchBase === true || opts.basename === true) {
|
|
137
|
+
match = picomatch.matchBase(input, regex, options, posix);
|
|
138
|
+
} else {
|
|
139
|
+
match = regex.exec(output);
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
return { isMatch: Boolean(match), match, output };
|
|
144
|
+
};
|
|
145
|
+
|
|
146
|
+
/**
|
|
147
|
+
* Match the basename of a filepath.
|
|
148
|
+
*
|
|
149
|
+
* ```js
|
|
150
|
+
* const picomatch = require('picomatch');
|
|
151
|
+
* // picomatch.matchBase(input, glob[, options]);
|
|
152
|
+
* console.log(picomatch.matchBase('foo/bar.js', '*.js'); // true
|
|
153
|
+
* ```
|
|
154
|
+
* @param {String} `input` String to test.
|
|
155
|
+
* @param {RegExp|String} `glob` Glob pattern or regex created by [.makeRe](#makeRe).
|
|
156
|
+
* @return {Boolean}
|
|
157
|
+
* @api public
|
|
158
|
+
*/
|
|
159
|
+
|
|
160
|
+
picomatch.matchBase = (input, glob, options) => {
|
|
161
|
+
const regex = glob instanceof RegExp ? glob : picomatch.makeRe(glob, options);
|
|
162
|
+
return regex.test(utils.basename(input));
|
|
163
|
+
};
|
|
164
|
+
|
|
165
|
+
/**
|
|
166
|
+
* Returns true if **any** of the given glob `patterns` match the specified `string`.
|
|
167
|
+
*
|
|
168
|
+
* ```js
|
|
169
|
+
* const picomatch = require('picomatch');
|
|
170
|
+
* // picomatch.isMatch(string, patterns[, options]);
|
|
171
|
+
*
|
|
172
|
+
* console.log(picomatch.isMatch('a.a', ['b.*', '*.a'])); //=> true
|
|
173
|
+
* console.log(picomatch.isMatch('a.a', 'b.*')); //=> false
|
|
174
|
+
* ```
|
|
175
|
+
* @param {String|Array} str The string to test.
|
|
176
|
+
* @param {String|Array} patterns One or more glob patterns to use for matching.
|
|
177
|
+
* @param {Object} [options] See available [options](#options).
|
|
178
|
+
* @return {Boolean} Returns true if any patterns match `str`
|
|
179
|
+
* @api public
|
|
180
|
+
*/
|
|
181
|
+
|
|
182
|
+
picomatch.isMatch = (str, patterns, options) => picomatch(patterns, options)(str);
|
|
183
|
+
|
|
184
|
+
/**
|
|
185
|
+
* Parse a glob pattern to create the source string for a regular
|
|
186
|
+
* expression.
|
|
187
|
+
*
|
|
188
|
+
* ```js
|
|
189
|
+
* const picomatch = require('picomatch');
|
|
190
|
+
* const result = picomatch.parse(pattern[, options]);
|
|
191
|
+
* ```
|
|
192
|
+
* @param {String} `pattern`
|
|
193
|
+
* @param {Object} `options`
|
|
194
|
+
* @return {Object} Returns an object with useful properties and output to be used as a regex source string.
|
|
195
|
+
* @api public
|
|
196
|
+
*/
|
|
197
|
+
|
|
198
|
+
picomatch.parse = (pattern, options) => {
|
|
199
|
+
if (Array.isArray(pattern)) return pattern.map(p => picomatch.parse(p, options));
|
|
200
|
+
return parse(pattern, { ...options, fastpaths: false });
|
|
201
|
+
};
|
|
202
|
+
|
|
203
|
+
/**
|
|
204
|
+
* Scan a glob pattern to separate the pattern into segments.
|
|
205
|
+
*
|
|
206
|
+
* ```js
|
|
207
|
+
* const picomatch = require('picomatch');
|
|
208
|
+
* // picomatch.scan(input[, options]);
|
|
209
|
+
*
|
|
210
|
+
* const result = picomatch.scan('!./foo/*.js');
|
|
211
|
+
* console.log(result);
|
|
212
|
+
* { prefix: '!./',
|
|
213
|
+
* input: '!./foo/*.js',
|
|
214
|
+
* start: 3,
|
|
215
|
+
* base: 'foo',
|
|
216
|
+
* glob: '*.js',
|
|
217
|
+
* isBrace: false,
|
|
218
|
+
* isBracket: false,
|
|
219
|
+
* isGlob: true,
|
|
220
|
+
* isExtglob: false,
|
|
221
|
+
* isGlobstar: false,
|
|
222
|
+
* negated: true }
|
|
223
|
+
* ```
|
|
224
|
+
* @param {String} `input` Glob pattern to scan.
|
|
225
|
+
* @param {Object} `options`
|
|
226
|
+
* @return {Object} Returns an object with
|
|
227
|
+
* @api public
|
|
228
|
+
*/
|
|
229
|
+
|
|
230
|
+
picomatch.scan = (input, options) => scan(input, options);
|
|
231
|
+
|
|
232
|
+
/**
|
|
233
|
+
* Compile a regular expression from the `state` object returned by the
|
|
234
|
+
* [parse()](#parse) method.
|
|
235
|
+
*
|
|
236
|
+
* ```js
|
|
237
|
+
* const picomatch = require('picomatch');
|
|
238
|
+
* const state = picomatch.parse('*.js');
|
|
239
|
+
* // picomatch.compileRe(state[, options]);
|
|
240
|
+
*
|
|
241
|
+
* console.log(picomatch.compileRe(state));
|
|
242
|
+
* //=> /^(?:(?!\.)(?=.)[^/]*?\.js)$/
|
|
243
|
+
* ```
|
|
244
|
+
* @param {Object} `state`
|
|
245
|
+
* @param {Object} `options`
|
|
246
|
+
* @param {Boolean} `returnOutput` Intended for implementors, this argument allows you to return the raw output from the parser.
|
|
247
|
+
* @param {Boolean} `returnState` Adds the state to a `state` property on the returned regex. Useful for implementors and debugging.
|
|
248
|
+
* @return {RegExp}
|
|
249
|
+
* @api public
|
|
250
|
+
*/
|
|
251
|
+
|
|
252
|
+
picomatch.compileRe = (state, options, returnOutput = false, returnState = false) => {
|
|
253
|
+
if (returnOutput === true) {
|
|
254
|
+
return state.output;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
const opts = options || {};
|
|
258
|
+
const prepend = opts.contains ? '' : '^';
|
|
259
|
+
const append = opts.contains ? '' : '$';
|
|
260
|
+
|
|
261
|
+
let source = `${prepend}(?:${state.output})${append}`;
|
|
262
|
+
if (state && state.negated === true) {
|
|
263
|
+
source = `^(?!${source}).*$`;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
const regex = picomatch.toRegex(source, options);
|
|
267
|
+
if (returnState === true) {
|
|
268
|
+
regex.state = state;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
return regex;
|
|
272
|
+
};
|
|
273
|
+
|
|
274
|
+
/**
|
|
275
|
+
* Create a regular expression from a parsed glob pattern.
|
|
276
|
+
*
|
|
277
|
+
* ```js
|
|
278
|
+
* const picomatch = require('picomatch');
|
|
279
|
+
* // picomatch.makeRe(state[, options]);
|
|
280
|
+
*
|
|
281
|
+
* const result = picomatch.makeRe('*.js');
|
|
282
|
+
* console.log(result);
|
|
283
|
+
* //=> /^(?:(?!\.)(?=.)[^/]*?\.js)$/
|
|
284
|
+
* ```
|
|
285
|
+
* @param {String} `state` The object returned from the `.parse` method.
|
|
286
|
+
* @param {Object} `options`
|
|
287
|
+
* @param {Boolean} `returnOutput` Implementors may use this argument to return the compiled output, instead of a regular expression. This is not exposed on the options to prevent end-users from mutating the result.
|
|
288
|
+
* @param {Boolean} `returnState` Implementors may use this argument to return the state from the parsed glob with the returned regular expression.
|
|
289
|
+
* @return {RegExp} Returns a regex created from the given pattern.
|
|
290
|
+
* @api public
|
|
291
|
+
*/
|
|
292
|
+
|
|
293
|
+
picomatch.makeRe = (input, options = {}, returnOutput = false, returnState = false) => {
|
|
294
|
+
if (!input || typeof input !== 'string') {
|
|
295
|
+
throw new TypeError('Expected a non-empty string');
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
let parsed = { negated: false, fastpaths: true };
|
|
299
|
+
|
|
300
|
+
if (options.fastpaths !== false && (input[0] === '.' || input[0] === '*')) {
|
|
301
|
+
parsed.output = parse.fastpaths(input, options);
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
if (!parsed.output) {
|
|
305
|
+
parsed = parse(input, options);
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
return picomatch.compileRe(parsed, options, returnOutput, returnState);
|
|
309
|
+
};
|
|
310
|
+
|
|
311
|
+
/**
|
|
312
|
+
* Create a regular expression from the given regex source string.
|
|
313
|
+
*
|
|
314
|
+
* ```js
|
|
315
|
+
* const picomatch = require('picomatch');
|
|
316
|
+
* // picomatch.toRegex(source[, options]);
|
|
317
|
+
*
|
|
318
|
+
* const { output } = picomatch.parse('*.js');
|
|
319
|
+
* console.log(picomatch.toRegex(output));
|
|
320
|
+
* //=> /^(?:(?!\.)(?=.)[^/]*?\.js)$/
|
|
321
|
+
* ```
|
|
322
|
+
* @param {String} `source` Regular expression source string.
|
|
323
|
+
* @param {Object} `options`
|
|
324
|
+
* @return {RegExp}
|
|
325
|
+
* @api public
|
|
326
|
+
*/
|
|
327
|
+
|
|
328
|
+
picomatch.toRegex = (source, options) => {
|
|
329
|
+
try {
|
|
330
|
+
const opts = options || {};
|
|
331
|
+
return new RegExp(source, opts.flags || (opts.nocase ? 'i' : ''));
|
|
332
|
+
} catch (err) {
|
|
333
|
+
if (options && options.debug === true) throw err;
|
|
334
|
+
return /$^/;
|
|
335
|
+
}
|
|
336
|
+
};
|
|
337
|
+
|
|
338
|
+
/**
|
|
339
|
+
* Picomatch constants.
|
|
340
|
+
* @return {Object}
|
|
341
|
+
*/
|
|
342
|
+
|
|
343
|
+
picomatch.constants = constants;
|
|
344
|
+
|
|
345
|
+
/**
|
|
346
|
+
* Expose "picomatch"
|
|
347
|
+
*/
|
|
348
|
+
|
|
349
|
+
module.exports = picomatch;
|