create-nuclo 0.1.1
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 +60 -0
- package/package.json +35 -0
- package/src/create-nuclo.mjs +193 -0
- package/templates/basic/README.md +16 -0
- package/templates/basic/_gitignore +5 -0
- package/templates/basic/index.html +26 -0
- package/templates/basic/node_modules/.package-lock.json +348 -0
- package/templates/basic/node_modules/.vite/deps/_metadata.json +15 -0
- package/templates/basic/node_modules/.vite/deps/nuclo.js +1665 -0
- package/templates/basic/node_modules/.vite/deps/nuclo.js.map +1 -0
- package/templates/basic/node_modules/.vite/deps/package.json +3 -0
- package/templates/basic/node_modules/@oxc-project/types/LICENSE +22 -0
- package/templates/basic/node_modules/@oxc-project/types/README.md +3 -0
- package/templates/basic/node_modules/@oxc-project/types/package.json +26 -0
- package/templates/basic/node_modules/@oxc-project/types/types.d.ts +1912 -0
- package/templates/basic/node_modules/@rolldown/binding-darwin-arm64/README.md +3 -0
- package/templates/basic/node_modules/@rolldown/binding-darwin-arm64/package.json +37 -0
- package/templates/basic/node_modules/@rolldown/binding-darwin-arm64/rolldown-binding.darwin-arm64.node +0 -0
- package/templates/basic/node_modules/@rolldown/pluginutils/LICENSE +21 -0
- package/templates/basic/node_modules/@rolldown/pluginutils/README.md +145 -0
- package/templates/basic/node_modules/@rolldown/pluginutils/dist/filter/index.d.mts +194 -0
- package/templates/basic/node_modules/@rolldown/pluginutils/dist/filter/index.mjs +2 -0
- package/templates/basic/node_modules/@rolldown/pluginutils/dist/filter-B_mD-HGz.mjs +323 -0
- package/templates/basic/node_modules/@rolldown/pluginutils/dist/index.d.mts +2 -0
- package/templates/basic/node_modules/@rolldown/pluginutils/dist/index.mjs +2 -0
- package/templates/basic/node_modules/@rolldown/pluginutils/package.json +40 -0
- package/templates/basic/node_modules/detect-libc/LICENSE +201 -0
- package/templates/basic/node_modules/detect-libc/README.md +163 -0
- package/templates/basic/node_modules/detect-libc/index.d.ts +14 -0
- package/templates/basic/node_modules/detect-libc/lib/detect-libc.js +313 -0
- package/templates/basic/node_modules/detect-libc/lib/elf.js +39 -0
- package/templates/basic/node_modules/detect-libc/lib/filesystem.js +51 -0
- package/templates/basic/node_modules/detect-libc/lib/process.js +24 -0
- package/templates/basic/node_modules/detect-libc/package.json +44 -0
- package/templates/basic/node_modules/fdir/LICENSE +7 -0
- package/templates/basic/node_modules/fdir/README.md +91 -0
- package/templates/basic/node_modules/fdir/dist/index.cjs +588 -0
- package/templates/basic/node_modules/fdir/dist/index.d.cts +155 -0
- package/templates/basic/node_modules/fdir/dist/index.d.mts +155 -0
- package/templates/basic/node_modules/fdir/dist/index.mjs +570 -0
- package/templates/basic/node_modules/fdir/package.json +103 -0
- package/templates/basic/node_modules/lightningcss/LICENSE +373 -0
- package/templates/basic/node_modules/lightningcss/README.md +105 -0
- package/templates/basic/node_modules/lightningcss/node/ast.d.ts +9892 -0
- package/templates/basic/node_modules/lightningcss/node/ast.js.flow +10539 -0
- package/templates/basic/node_modules/lightningcss/node/browserslistToTargets.js +48 -0
- package/templates/basic/node_modules/lightningcss/node/composeVisitors.js +450 -0
- package/templates/basic/node_modules/lightningcss/node/flags.js +28 -0
- package/templates/basic/node_modules/lightningcss/node/index.d.ts +494 -0
- package/templates/basic/node_modules/lightningcss/node/index.js +59 -0
- package/templates/basic/node_modules/lightningcss/node/index.js.flow +843 -0
- package/templates/basic/node_modules/lightningcss/node/index.mjs +4 -0
- package/templates/basic/node_modules/lightningcss/node/targets.d.ts +40 -0
- package/templates/basic/node_modules/lightningcss/node/targets.js.flow +39 -0
- package/templates/basic/node_modules/lightningcss/package.json +110 -0
- package/templates/basic/node_modules/lightningcss-darwin-arm64/LICENSE +373 -0
- package/templates/basic/node_modules/lightningcss-darwin-arm64/README.md +1 -0
- package/templates/basic/node_modules/lightningcss-darwin-arm64/lightningcss.darwin-arm64.node +0 -0
- package/templates/basic/node_modules/lightningcss-darwin-arm64/package.json +34 -0
- package/templates/basic/node_modules/nanoid/LICENSE +20 -0
- package/templates/basic/node_modules/nanoid/README.md +36 -0
- package/templates/basic/node_modules/nanoid/async/index.browser.cjs +42 -0
- package/templates/basic/node_modules/nanoid/async/index.browser.js +42 -0
- package/templates/basic/node_modules/nanoid/async/index.cjs +44 -0
- package/templates/basic/node_modules/nanoid/async/index.d.ts +56 -0
- package/templates/basic/node_modules/nanoid/async/index.js +44 -0
- package/templates/basic/node_modules/nanoid/async/index.native.js +35 -0
- package/templates/basic/node_modules/nanoid/async/package.json +12 -0
- package/templates/basic/node_modules/nanoid/bin/nanoid.cjs +55 -0
- package/templates/basic/node_modules/nanoid/index.browser.cjs +44 -0
- package/templates/basic/node_modules/nanoid/index.browser.js +44 -0
- package/templates/basic/node_modules/nanoid/index.cjs +57 -0
- package/templates/basic/node_modules/nanoid/index.d.cts +91 -0
- package/templates/basic/node_modules/nanoid/index.d.ts +91 -0
- package/templates/basic/node_modules/nanoid/index.js +62 -0
- package/templates/basic/node_modules/nanoid/nanoid.js +1 -0
- package/templates/basic/node_modules/nanoid/non-secure/index.cjs +24 -0
- package/templates/basic/node_modules/nanoid/non-secure/index.d.ts +33 -0
- package/templates/basic/node_modules/nanoid/non-secure/index.js +24 -0
- package/templates/basic/node_modules/nanoid/non-secure/package.json +6 -0
- package/templates/basic/node_modules/nanoid/package.json +89 -0
- package/templates/basic/node_modules/nanoid/url-alphabet/index.cjs +4 -0
- package/templates/basic/node_modules/nanoid/url-alphabet/index.js +4 -0
- package/templates/basic/node_modules/nanoid/url-alphabet/package.json +6 -0
- package/templates/basic/node_modules/nuclo/LICENSE.md +45 -0
- package/templates/basic/node_modules/nuclo/README.md +727 -0
- package/templates/basic/node_modules/nuclo/dist/bootstrap.d.ts +5 -0
- package/templates/basic/node_modules/nuclo/dist/bootstrap.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/element/attributes.d.ts +3 -0
- package/templates/basic/node_modules/nuclo/dist/element/attributes.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/element/class-name.d.ts +6 -0
- package/templates/basic/node_modules/nuclo/dist/element/class-name.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/element/events.d.ts +35 -0
- package/templates/basic/node_modules/nuclo/dist/element/events.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/element/factory.d.ts +32 -0
- package/templates/basic/node_modules/nuclo/dist/element/factory.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/element/inline-style.d.ts +9 -0
- package/templates/basic/node_modules/nuclo/dist/element/inline-style.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/element/modifiers.d.ts +11 -0
- package/templates/basic/node_modules/nuclo/dist/element/modifiers.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/element/tags.d.ts +5 -0
- package/templates/basic/node_modules/nuclo/dist/element/tags.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/hydration.d.ts +73 -0
- package/templates/basic/node_modules/nuclo/dist/hydration.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/index.d.ts +17 -0
- package/templates/basic/node_modules/nuclo/dist/index.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/list/index.d.ts +7 -0
- package/templates/basic/node_modules/nuclo/dist/list/index.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/list/runtime.d.ts +6 -0
- package/templates/basic/node_modules/nuclo/dist/list/runtime.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/list/types.d.ts +18 -0
- package/templates/basic/node_modules/nuclo/dist/list/types.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/nuclo.cjs +2 -0
- package/templates/basic/node_modules/nuclo/dist/nuclo.cjs.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/nuclo.mjs +2 -0
- package/templates/basic/node_modules/nuclo/dist/nuclo.mjs.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/nuclo.umd.js +2 -0
- package/templates/basic/node_modules/nuclo/dist/nuclo.umd.js.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/polyfill/Document.d.ts +19 -0
- package/templates/basic/node_modules/nuclo/dist/polyfill/Document.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/polyfill/Element.d.ts +48 -0
- package/templates/basic/node_modules/nuclo/dist/polyfill/Element.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/polyfill/Event.d.ts +43 -0
- package/templates/basic/node_modules/nuclo/dist/polyfill/Event.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/polyfill/Node.d.ts +13 -0
- package/templates/basic/node_modules/nuclo/dist/polyfill/Node.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/polyfill/Text.d.ts +11 -0
- package/templates/basic/node_modules/nuclo/dist/polyfill/Text.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/polyfill/index.d.ts +24 -0
- package/templates/basic/node_modules/nuclo/dist/polyfill/index.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/polyfill/nuclo.polyfill.cjs +2 -0
- package/templates/basic/node_modules/nuclo/dist/polyfill/nuclo.polyfill.cjs.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/polyfill/nuclo.polyfill.mjs +2 -0
- package/templates/basic/node_modules/nuclo/dist/polyfill/nuclo.polyfill.mjs.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/render.d.ts +33 -0
- package/templates/basic/node_modules/nuclo/dist/render.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/shared/conditions.d.ts +4 -0
- package/templates/basic/node_modules/nuclo/dist/shared/conditions.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/shared/dom.d.ts +69 -0
- package/templates/basic/node_modules/nuclo/dist/shared/dom.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/shared/environment.d.ts +5 -0
- package/templates/basic/node_modules/nuclo/dist/shared/environment.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/shared/errors.d.ts +2 -0
- package/templates/basic/node_modules/nuclo/dist/shared/errors.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/shared/renderables.d.ts +4 -0
- package/templates/basic/node_modules/nuclo/dist/shared/renderables.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/shared/strings.d.ts +19 -0
- package/templates/basic/node_modules/nuclo/dist/shared/strings.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/shared/type-guards.d.ts +16 -0
- package/templates/basic/node_modules/nuclo/dist/shared/type-guards.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/ssr/index.d.ts +19 -0
- package/templates/basic/node_modules/nuclo/dist/ssr/index.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/ssr/nuclo.ssr.cjs +2 -0
- package/templates/basic/node_modules/nuclo/dist/ssr/nuclo.ssr.cjs.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/ssr/nuclo.ssr.mjs +2 -0
- package/templates/basic/node_modules/nuclo/dist/ssr/nuclo.ssr.mjs.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/ssr/render-to-string.d.ts +41 -0
- package/templates/basic/node_modules/nuclo/dist/ssr/render-to-string.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/style/css.d.ts +19 -0
- package/templates/basic/node_modules/nuclo/dist/style/css.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/style/engine.d.ts +34 -0
- package/templates/basic/node_modules/nuclo/dist/style/engine.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/style/index.d.ts +3 -0
- package/templates/basic/node_modules/nuclo/dist/style/index.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/update/conditional.d.ts +3 -0
- package/templates/basic/node_modules/nuclo/dist/update/conditional.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/update/reactive-attributes.d.ts +45 -0
- package/templates/basic/node_modules/nuclo/dist/update/reactive-attributes.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/update/reactive-text.d.ts +38 -0
- package/templates/basic/node_modules/nuclo/dist/update/reactive-text.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/update/registry.d.ts +97 -0
- package/templates/basic/node_modules/nuclo/dist/update/registry.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/update/scope.d.ts +7 -0
- package/templates/basic/node_modules/nuclo/dist/update/scope.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/update/update.d.ts +4 -0
- package/templates/basic/node_modules/nuclo/dist/update/update.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/when/builder.d.ts +16 -0
- package/templates/basic/node_modules/nuclo/dist/when/builder.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/when/index.d.ts +44 -0
- package/templates/basic/node_modules/nuclo/dist/when/index.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/dist/when/runtime.d.ts +59 -0
- package/templates/basic/node_modules/nuclo/dist/when/runtime.d.ts.map +1 -0
- package/templates/basic/node_modules/nuclo/package.json +88 -0
- package/templates/basic/node_modules/nuclo/types/core/base.d.ts +113 -0
- package/templates/basic/node_modules/nuclo/types/features/list.d.ts +38 -0
- package/templates/basic/node_modules/nuclo/types/features/on.d.ts +59 -0
- package/templates/basic/node_modules/nuclo/types/features/render.d.ts +49 -0
- package/templates/basic/node_modules/nuclo/types/features/scope.d.ts +6 -0
- package/templates/basic/node_modules/nuclo/types/features/style.d.ts +77 -0
- package/templates/basic/node_modules/nuclo/types/features/update.d.ts +6 -0
- package/templates/basic/node_modules/nuclo/types/features/when.d.ts +18 -0
- package/templates/basic/node_modules/nuclo/types/html/tags.d.ts +119 -0
- package/templates/basic/node_modules/nuclo/types/index.d.ts +137 -0
- package/templates/basic/node_modules/nuclo/types/polyfill.d.ts +131 -0
- package/templates/basic/node_modules/nuclo/types/ssr.d.ts +45 -0
- package/templates/basic/node_modules/nuclo/types/style.d.ts +404 -0
- package/templates/basic/node_modules/nuclo/types/svg/base.d.ts +118 -0
- package/templates/basic/node_modules/nuclo/types/svg/tags.d.ts +68 -0
- package/templates/basic/node_modules/picocolors/LICENSE +15 -0
- package/templates/basic/node_modules/picocolors/README.md +21 -0
- package/templates/basic/node_modules/picocolors/package.json +25 -0
- package/templates/basic/node_modules/picocolors/picocolors.browser.js +4 -0
- package/templates/basic/node_modules/picocolors/picocolors.d.ts +5 -0
- package/templates/basic/node_modules/picocolors/picocolors.js +75 -0
- package/templates/basic/node_modules/picocolors/types.d.ts +51 -0
- package/templates/basic/node_modules/picomatch/LICENSE +21 -0
- package/templates/basic/node_modules/picomatch/README.md +743 -0
- package/templates/basic/node_modules/picomatch/index.js +17 -0
- package/templates/basic/node_modules/picomatch/lib/constants.js +184 -0
- package/templates/basic/node_modules/picomatch/lib/parse.js +1416 -0
- package/templates/basic/node_modules/picomatch/lib/picomatch.js +361 -0
- package/templates/basic/node_modules/picomatch/lib/scan.js +391 -0
- package/templates/basic/node_modules/picomatch/lib/utils.js +72 -0
- package/templates/basic/node_modules/picomatch/package.json +83 -0
- package/templates/basic/node_modules/picomatch/posix.js +3 -0
- package/templates/basic/node_modules/postcss/LICENSE +20 -0
- package/templates/basic/node_modules/postcss/README.md +25 -0
- package/templates/basic/node_modules/postcss/lib/at-rule.d.ts +139 -0
- package/templates/basic/node_modules/postcss/lib/at-rule.js +25 -0
- package/templates/basic/node_modules/postcss/lib/comment.d.ts +67 -0
- package/templates/basic/node_modules/postcss/lib/comment.js +13 -0
- package/templates/basic/node_modules/postcss/lib/container.d.ts +478 -0
- package/templates/basic/node_modules/postcss/lib/container.js +447 -0
- package/templates/basic/node_modules/postcss/lib/css-syntax-error.d.ts +247 -0
- package/templates/basic/node_modules/postcss/lib/css-syntax-error.js +133 -0
- package/templates/basic/node_modules/postcss/lib/declaration.d.ts +150 -0
- package/templates/basic/node_modules/postcss/lib/declaration.js +24 -0
- package/templates/basic/node_modules/postcss/lib/document.d.ts +68 -0
- package/templates/basic/node_modules/postcss/lib/document.js +33 -0
- package/templates/basic/node_modules/postcss/lib/fromJSON.d.ts +9 -0
- package/templates/basic/node_modules/postcss/lib/fromJSON.js +68 -0
- package/templates/basic/node_modules/postcss/lib/input.d.ts +226 -0
- package/templates/basic/node_modules/postcss/lib/input.js +276 -0
- package/templates/basic/node_modules/postcss/lib/lazy-result.d.ts +189 -0
- package/templates/basic/node_modules/postcss/lib/lazy-result.js +563 -0
- package/templates/basic/node_modules/postcss/lib/list.d.ts +60 -0
- package/templates/basic/node_modules/postcss/lib/list.js +58 -0
- package/templates/basic/node_modules/postcss/lib/map-generator.js +376 -0
- package/templates/basic/node_modules/postcss/lib/no-work-result.d.ts +45 -0
- package/templates/basic/node_modules/postcss/lib/no-work-result.js +137 -0
- package/templates/basic/node_modules/postcss/lib/node.d.ts +555 -0
- package/templates/basic/node_modules/postcss/lib/node.js +456 -0
- package/templates/basic/node_modules/postcss/lib/parse.d.ts +9 -0
- package/templates/basic/node_modules/postcss/lib/parse.js +42 -0
- package/templates/basic/node_modules/postcss/lib/parser.js +618 -0
- package/templates/basic/node_modules/postcss/lib/postcss.d.mts +66 -0
- package/templates/basic/node_modules/postcss/lib/postcss.d.ts +461 -0
- package/templates/basic/node_modules/postcss/lib/postcss.js +101 -0
- package/templates/basic/node_modules/postcss/lib/postcss.mjs +30 -0
- package/templates/basic/node_modules/postcss/lib/previous-map.d.ts +80 -0
- package/templates/basic/node_modules/postcss/lib/previous-map.js +161 -0
- package/templates/basic/node_modules/postcss/lib/processor.d.ts +114 -0
- package/templates/basic/node_modules/postcss/lib/processor.js +67 -0
- package/templates/basic/node_modules/postcss/lib/result.d.ts +204 -0
- package/templates/basic/node_modules/postcss/lib/result.js +42 -0
- package/templates/basic/node_modules/postcss/lib/root.d.ts +86 -0
- package/templates/basic/node_modules/postcss/lib/root.js +61 -0
- package/templates/basic/node_modules/postcss/lib/rule.d.ts +126 -0
- package/templates/basic/node_modules/postcss/lib/rule.js +27 -0
- package/templates/basic/node_modules/postcss/lib/stringifier.d.ts +45 -0
- package/templates/basic/node_modules/postcss/lib/stringifier.js +374 -0
- package/templates/basic/node_modules/postcss/lib/stringify.d.ts +9 -0
- package/templates/basic/node_modules/postcss/lib/stringify.js +11 -0
- package/templates/basic/node_modules/postcss/lib/symbols.js +5 -0
- package/templates/basic/node_modules/postcss/lib/terminal-highlight.js +70 -0
- package/templates/basic/node_modules/postcss/lib/tokenize.js +270 -0
- package/templates/basic/node_modules/postcss/lib/warn-once.js +13 -0
- package/templates/basic/node_modules/postcss/lib/warning.d.ts +146 -0
- package/templates/basic/node_modules/postcss/lib/warning.js +37 -0
- package/templates/basic/node_modules/postcss/package.json +88 -0
- package/templates/basic/node_modules/rolldown/LICENSE +25 -0
- package/templates/basic/node_modules/rolldown/README.md +11 -0
- package/templates/basic/node_modules/rolldown/bin/cli.mjs +2 -0
- package/templates/basic/node_modules/rolldown/dist/cli.d.mts +1 -0
- package/templates/basic/node_modules/rolldown/dist/cli.mjs +1202 -0
- package/templates/basic/node_modules/rolldown/dist/config.d.mts +14 -0
- package/templates/basic/node_modules/rolldown/dist/config.mjs +4 -0
- package/templates/basic/node_modules/rolldown/dist/experimental-index.d.mts +280 -0
- package/templates/basic/node_modules/rolldown/dist/experimental-index.mjs +331 -0
- package/templates/basic/node_modules/rolldown/dist/experimental-runtime-types.d.ts +107 -0
- package/templates/basic/node_modules/rolldown/dist/filter-index.d.mts +195 -0
- package/templates/basic/node_modules/rolldown/dist/filter-index.mjs +380 -0
- package/templates/basic/node_modules/rolldown/dist/get-log-filter.d.mts +3 -0
- package/templates/basic/node_modules/rolldown/dist/get-log-filter.mjs +68 -0
- package/templates/basic/node_modules/rolldown/dist/index.d.mts +4 -0
- package/templates/basic/node_modules/rolldown/dist/index.mjs +50 -0
- package/templates/basic/node_modules/rolldown/dist/parallel-plugin-worker.d.mts +1 -0
- package/templates/basic/node_modules/rolldown/dist/parallel-plugin-worker.mjs +29 -0
- package/templates/basic/node_modules/rolldown/dist/parallel-plugin.d.mts +13 -0
- package/templates/basic/node_modules/rolldown/dist/parallel-plugin.mjs +6 -0
- package/templates/basic/node_modules/rolldown/dist/parse-ast-index.d.mts +32 -0
- package/templates/basic/node_modules/rolldown/dist/parse-ast-index.mjs +60 -0
- package/templates/basic/node_modules/rolldown/dist/plugins-index.d.mts +33 -0
- package/templates/basic/node_modules/rolldown/dist/plugins-index.mjs +40 -0
- package/templates/basic/node_modules/rolldown/dist/shared/binding-B1q9aYT-.d.mts +1947 -0
- package/templates/basic/node_modules/rolldown/dist/shared/binding-BmkJW3Wy.mjs +588 -0
- package/templates/basic/node_modules/rolldown/dist/shared/bindingify-input-options-BsDhfYrS.mjs +2240 -0
- package/templates/basic/node_modules/rolldown/dist/shared/constructors-2i1T9YcF.d.mts +36 -0
- package/templates/basic/node_modules/rolldown/dist/shared/constructors-CE6zZSUt.mjs +65 -0
- package/templates/basic/node_modules/rolldown/dist/shared/define-config-BBz954-q.d.mts +3901 -0
- package/templates/basic/node_modules/rolldown/dist/shared/define-config-Demdg3_4.mjs +6 -0
- package/templates/basic/node_modules/rolldown/dist/shared/error-BlQ0-ek7.mjs +85 -0
- package/templates/basic/node_modules/rolldown/dist/shared/get-log-filter-BpNVNJ5-.d.mts +35 -0
- package/templates/basic/node_modules/rolldown/dist/shared/load-config-FRmAU9xl.mjs +120 -0
- package/templates/basic/node_modules/rolldown/dist/shared/logging-BSNejiLS.d.mts +50 -0
- package/templates/basic/node_modules/rolldown/dist/shared/logs-aMKUxRpj.mjs +180 -0
- package/templates/basic/node_modules/rolldown/dist/shared/misc-CoQm4NHO.mjs +21 -0
- package/templates/basic/node_modules/rolldown/dist/shared/normalize-string-or-regex-BYkbbGqQ.mjs +68 -0
- package/templates/basic/node_modules/rolldown/dist/shared/parse-DVMnkavl.mjs +74 -0
- package/templates/basic/node_modules/rolldown/dist/shared/prompt-B1Yc1NPt.mjs +847 -0
- package/templates/basic/node_modules/rolldown/dist/shared/resolve-tsconfig-CdIAR1Eb.mjs +124 -0
- package/templates/basic/node_modules/rolldown/dist/shared/rolldown-build-aV0QeeTW.mjs +3264 -0
- package/templates/basic/node_modules/rolldown/dist/shared/rolldown-tbHvKzVl.mjs +40 -0
- package/templates/basic/node_modules/rolldown/dist/shared/transform-CEmFsvJW.d.mts +149 -0
- package/templates/basic/node_modules/rolldown/dist/shared/watch-DIhJ-T1s.mjs +374 -0
- package/templates/basic/node_modules/rolldown/dist/utils-index.d.mts +376 -0
- package/templates/basic/node_modules/rolldown/dist/utils-index.mjs +2414 -0
- package/templates/basic/node_modules/rolldown/package.json +153 -0
- package/templates/basic/node_modules/source-map-js/LICENSE +28 -0
- package/templates/basic/node_modules/source-map-js/README.md +765 -0
- package/templates/basic/node_modules/source-map-js/lib/array-set.js +121 -0
- package/templates/basic/node_modules/source-map-js/lib/base64-vlq.js +140 -0
- package/templates/basic/node_modules/source-map-js/lib/base64.js +67 -0
- package/templates/basic/node_modules/source-map-js/lib/binary-search.js +111 -0
- package/templates/basic/node_modules/source-map-js/lib/mapping-list.js +79 -0
- package/templates/basic/node_modules/source-map-js/lib/quick-sort.js +132 -0
- package/templates/basic/node_modules/source-map-js/lib/source-map-consumer.d.ts +1 -0
- package/templates/basic/node_modules/source-map-js/lib/source-map-consumer.js +1188 -0
- package/templates/basic/node_modules/source-map-js/lib/source-map-generator.d.ts +1 -0
- package/templates/basic/node_modules/source-map-js/lib/source-map-generator.js +444 -0
- package/templates/basic/node_modules/source-map-js/lib/source-node.d.ts +1 -0
- package/templates/basic/node_modules/source-map-js/lib/source-node.js +413 -0
- package/templates/basic/node_modules/source-map-js/lib/util.js +594 -0
- package/templates/basic/node_modules/source-map-js/package.json +71 -0
- package/templates/basic/node_modules/source-map-js/source-map.d.ts +104 -0
- package/templates/basic/node_modules/source-map-js/source-map.js +8 -0
- package/templates/basic/node_modules/tinyglobby/LICENSE +21 -0
- package/templates/basic/node_modules/tinyglobby/README.md +25 -0
- package/templates/basic/node_modules/tinyglobby/dist/index.cjs +335 -0
- package/templates/basic/node_modules/tinyglobby/dist/index.d.cts +148 -0
- package/templates/basic/node_modules/tinyglobby/dist/index.d.mts +148 -0
- package/templates/basic/node_modules/tinyglobby/dist/index.mjs +307 -0
- package/templates/basic/node_modules/tinyglobby/package.json +70 -0
- package/templates/basic/node_modules/typescript/LICENSE.txt +55 -0
- package/templates/basic/node_modules/typescript/README.md +50 -0
- package/templates/basic/node_modules/typescript/SECURITY.md +39 -0
- package/templates/basic/node_modules/typescript/ThirdPartyNoticeText.txt +193 -0
- package/templates/basic/node_modules/typescript/bin/tsc +2 -0
- package/templates/basic/node_modules/typescript/bin/tsserver +2 -0
- package/templates/basic/node_modules/typescript/lib/_tsc.js +134465 -0
- package/templates/basic/node_modules/typescript/lib/_tsserver.js +659 -0
- package/templates/basic/node_modules/typescript/lib/_typingsInstaller.js +222 -0
- package/templates/basic/node_modules/typescript/lib/cs/diagnosticMessages.generated.json +2129 -0
- package/templates/basic/node_modules/typescript/lib/de/diagnosticMessages.generated.json +2125 -0
- package/templates/basic/node_modules/typescript/lib/es/diagnosticMessages.generated.json +2129 -0
- package/templates/basic/node_modules/typescript/lib/fr/diagnosticMessages.generated.json +2129 -0
- package/templates/basic/node_modules/typescript/lib/it/diagnosticMessages.generated.json +2125 -0
- package/templates/basic/node_modules/typescript/lib/ja/diagnosticMessages.generated.json +2129 -0
- package/templates/basic/node_modules/typescript/lib/ko/diagnosticMessages.generated.json +2129 -0
- package/templates/basic/node_modules/typescript/lib/lib.d.ts +20 -0
- package/templates/basic/node_modules/typescript/lib/lib.decorators.d.ts +382 -0
- package/templates/basic/node_modules/typescript/lib/lib.decorators.legacy.d.ts +20 -0
- package/templates/basic/node_modules/typescript/lib/lib.dom.asynciterable.d.ts +18 -0
- package/templates/basic/node_modules/typescript/lib/lib.dom.d.ts +45125 -0
- package/templates/basic/node_modules/typescript/lib/lib.dom.iterable.d.ts +18 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2015.collection.d.ts +150 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2015.core.d.ts +595 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2015.d.ts +26 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2015.generator.d.ts +75 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2015.iterable.d.ts +603 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2015.promise.d.ts +79 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2015.proxy.d.ts +126 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2015.reflect.d.ts +142 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2015.symbol.d.ts +44 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts +324 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2016.array.include.d.ts +114 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2016.d.ts +19 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2016.full.d.ts +21 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2016.intl.d.ts +29 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts +19 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2017.d.ts +24 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2017.date.d.ts +29 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2017.full.d.ts +21 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2017.intl.d.ts +42 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2017.object.d.ts +47 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts +133 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2017.string.d.ts +43 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts +51 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts +75 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts +51 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2018.d.ts +22 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2018.full.d.ts +22 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2018.intl.d.ts +81 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2018.promise.d.ts +28 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2018.regexp.d.ts +35 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2019.array.d.ts +77 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2019.d.ts +22 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2019.full.d.ts +22 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2019.intl.d.ts +21 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2019.object.d.ts +31 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2019.string.d.ts +35 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2019.symbol.d.ts +22 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2020.bigint.d.ts +763 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2020.d.ts +25 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2020.date.d.ts +40 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2020.full.d.ts +22 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2020.intl.d.ts +472 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2020.number.d.ts +26 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2020.promise.d.ts +45 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts +97 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2020.string.d.ts +42 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts +39 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2021.d.ts +21 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2021.full.d.ts +22 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2021.intl.d.ts +164 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2021.promise.d.ts +46 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2021.string.d.ts +31 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2021.weakref.d.ts +76 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2022.array.d.ts +119 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2022.d.ts +23 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2022.error.d.ts +73 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2022.full.d.ts +22 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2022.intl.d.ts +143 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2022.object.d.ts +24 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2022.regexp.d.ts +37 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2022.string.d.ts +23 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2023.array.d.ts +922 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2023.collection.d.ts +19 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2023.d.ts +20 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2023.full.d.ts +22 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2023.intl.d.ts +62 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts +63 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2024.collection.d.ts +27 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2024.d.ts +24 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2024.full.d.ts +22 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2024.object.d.ts +27 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2024.promise.d.ts +33 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2024.regexp.d.ts +23 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts +66 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2024.string.d.ts +27 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2025.collection.d.ts +94 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2025.d.ts +23 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2025.float16.d.ts +443 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2025.full.d.ts +22 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2025.intl.d.ts +200 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2025.iterator.d.ts +146 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2025.promise.d.ts +32 -0
- package/templates/basic/node_modules/typescript/lib/lib.es2025.regexp.d.ts +30 -0
- package/templates/basic/node_modules/typescript/lib/lib.es5.d.ts +4599 -0
- package/templates/basic/node_modules/typescript/lib/lib.es6.d.ts +21 -0
- package/templates/basic/node_modules/typescript/lib/lib.esnext.array.d.ts +33 -0
- package/templates/basic/node_modules/typescript/lib/lib.esnext.collection.d.ts +47 -0
- package/templates/basic/node_modules/typescript/lib/lib.esnext.d.ts +27 -0
- package/templates/basic/node_modules/typescript/lib/lib.esnext.date.d.ts +21 -0
- package/templates/basic/node_modules/typescript/lib/lib.esnext.decorators.d.ts +26 -0
- package/templates/basic/node_modules/typescript/lib/lib.esnext.disposable.d.ts +191 -0
- package/templates/basic/node_modules/typescript/lib/lib.esnext.error.d.ts +22 -0
- package/templates/basic/node_modules/typescript/lib/lib.esnext.full.d.ts +22 -0
- package/templates/basic/node_modules/typescript/lib/lib.esnext.intl.d.ts +107 -0
- package/templates/basic/node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts +23 -0
- package/templates/basic/node_modules/typescript/lib/lib.esnext.temporal.d.ts +485 -0
- package/templates/basic/node_modules/typescript/lib/lib.esnext.typedarrays.d.ts +90 -0
- package/templates/basic/node_modules/typescript/lib/lib.scripthost.d.ts +320 -0
- package/templates/basic/node_modules/typescript/lib/lib.webworker.asynciterable.d.ts +18 -0
- package/templates/basic/node_modules/typescript/lib/lib.webworker.d.ts +15606 -0
- package/templates/basic/node_modules/typescript/lib/lib.webworker.importscripts.d.ts +21 -0
- package/templates/basic/node_modules/typescript/lib/lib.webworker.iterable.d.ts +18 -0
- package/templates/basic/node_modules/typescript/lib/pl/diagnosticMessages.generated.json +2129 -0
- package/templates/basic/node_modules/typescript/lib/pt-br/diagnosticMessages.generated.json +2129 -0
- package/templates/basic/node_modules/typescript/lib/ru/diagnosticMessages.generated.json +2125 -0
- package/templates/basic/node_modules/typescript/lib/tr/diagnosticMessages.generated.json +2129 -0
- package/templates/basic/node_modules/typescript/lib/tsc.js +8 -0
- package/templates/basic/node_modules/typescript/lib/tsserver.js +8 -0
- package/templates/basic/node_modules/typescript/lib/tsserverlibrary.d.ts +17 -0
- package/templates/basic/node_modules/typescript/lib/tsserverlibrary.js +21 -0
- package/templates/basic/node_modules/typescript/lib/typesMap.json +497 -0
- package/templates/basic/node_modules/typescript/lib/typescript.d.ts +11448 -0
- package/templates/basic/node_modules/typescript/lib/typescript.js +201039 -0
- package/templates/basic/node_modules/typescript/lib/typingsInstaller.js +8 -0
- package/templates/basic/node_modules/typescript/lib/watchGuard.js +53 -0
- package/templates/basic/node_modules/typescript/lib/zh-cn/diagnosticMessages.generated.json +2129 -0
- package/templates/basic/node_modules/typescript/lib/zh-tw/diagnosticMessages.generated.json +2125 -0
- package/templates/basic/node_modules/typescript/package.json +118 -0
- package/templates/basic/node_modules/vite/LICENSE.md +2287 -0
- package/templates/basic/node_modules/vite/README.md +20 -0
- package/templates/basic/node_modules/vite/bin/openChrome.js +68 -0
- package/templates/basic/node_modules/vite/bin/vite.js +79 -0
- package/templates/basic/node_modules/vite/client.d.ts +285 -0
- package/templates/basic/node_modules/vite/dist/client/client.mjs +1269 -0
- package/templates/basic/node_modules/vite/dist/client/env.mjs +18 -0
- package/templates/basic/node_modules/vite/dist/node/chunks/build.js +5371 -0
- package/templates/basic/node_modules/vite/dist/node/chunks/dist.js +6784 -0
- package/templates/basic/node_modules/vite/dist/node/chunks/lib.js +371 -0
- package/templates/basic/node_modules/vite/dist/node/chunks/logger.js +364 -0
- package/templates/basic/node_modules/vite/dist/node/chunks/moduleRunnerTransport.d.ts +96 -0
- package/templates/basic/node_modules/vite/dist/node/chunks/node.js +35836 -0
- package/templates/basic/node_modules/vite/dist/node/chunks/postcss-import.js +467 -0
- package/templates/basic/node_modules/vite/dist/node/cli.js +836 -0
- package/templates/basic/node_modules/vite/dist/node/index.d.ts +4011 -0
- package/templates/basic/node_modules/vite/dist/node/index.js +3 -0
- package/templates/basic/node_modules/vite/dist/node/internal.d.ts +2 -0
- package/templates/basic/node_modules/vite/dist/node/internal.js +2 -0
- package/templates/basic/node_modules/vite/dist/node/module-runner.d.ts +314 -0
- package/templates/basic/node_modules/vite/dist/node/module-runner.js +1274 -0
- package/templates/basic/node_modules/vite/misc/false.js +1 -0
- package/templates/basic/node_modules/vite/misc/true.js +1 -0
- package/templates/basic/node_modules/vite/package.json +194 -0
- package/templates/basic/node_modules/vite/types/customEvent.d.ts +79 -0
- package/templates/basic/node_modules/vite/types/hmrPayload.d.ts +80 -0
- package/templates/basic/node_modules/vite/types/hot.d.ts +39 -0
- package/templates/basic/node_modules/vite/types/import-meta.d.ts +5 -0
- package/templates/basic/node_modules/vite/types/importGlob.d.ts +131 -0
- package/templates/basic/node_modules/vite/types/importMeta.d.ts +30 -0
- package/templates/basic/node_modules/vite/types/internal/cssPreprocessorOptions.d.ts +44 -0
- package/templates/basic/node_modules/vite/types/internal/esbuildOptions.d.ts +28 -0
- package/templates/basic/node_modules/vite/types/internal/lightningcssOptions.d.ts +18 -0
- package/templates/basic/node_modules/vite/types/internal/rollupTypeCompat.d.ts +24 -0
- package/templates/basic/node_modules/vite/types/internal/terserOptions.d.ts +11 -0
- package/templates/basic/node_modules/vite/types/metadata.d.ts +47 -0
- package/templates/basic/package-lock.json +926 -0
- package/templates/basic/package.json +18 -0
- package/templates/basic/public/apple-touch-icon.png +0 -0
- package/templates/basic/public/favicon-16x16.png +0 -0
- package/templates/basic/public/favicon-32x32.png +0 -0
- package/templates/basic/public/favicon.ico +0 -0
- package/templates/basic/public/icon-192.png +0 -0
- package/templates/basic/public/icon-512.png +0 -0
- package/templates/basic/public/nuclo-logo.svg +24 -0
- package/templates/basic/public/site.webmanifest +23 -0
- package/templates/basic/src/app.ts +37 -0
- package/templates/basic/src/main.ts +5 -0
- package/templates/basic/src/styles.ts +85 -0
- package/templates/basic/tsconfig.json +23 -0
- package/templates/basic/vite.config.ts +3 -0
|
@@ -0,0 +1,376 @@
|
|
|
1
|
+
'use strict'
|
|
2
|
+
|
|
3
|
+
let { dirname, relative, resolve, sep } = require('path')
|
|
4
|
+
let { SourceMapConsumer, SourceMapGenerator } = require('source-map-js')
|
|
5
|
+
let { pathToFileURL } = require('url')
|
|
6
|
+
|
|
7
|
+
let Input = require('./input')
|
|
8
|
+
|
|
9
|
+
let sourceMapAvailable = Boolean(SourceMapConsumer && SourceMapGenerator)
|
|
10
|
+
let pathAvailable = Boolean(dirname && resolve && relative && sep)
|
|
11
|
+
|
|
12
|
+
class MapGenerator {
|
|
13
|
+
constructor(stringify, root, opts, cssString) {
|
|
14
|
+
this.stringify = stringify
|
|
15
|
+
this.mapOpts = opts.map || {}
|
|
16
|
+
this.root = root
|
|
17
|
+
this.opts = opts
|
|
18
|
+
this.css = cssString
|
|
19
|
+
this.originalCSS = cssString
|
|
20
|
+
this.usesFileUrls = !this.mapOpts.from && this.mapOpts.absolute
|
|
21
|
+
|
|
22
|
+
this.memoizedFileURLs = new Map()
|
|
23
|
+
this.memoizedPaths = new Map()
|
|
24
|
+
this.memoizedURLs = new Map()
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
addAnnotation() {
|
|
28
|
+
let content
|
|
29
|
+
|
|
30
|
+
if (this.isInline()) {
|
|
31
|
+
content =
|
|
32
|
+
'data:application/json;base64,' + this.toBase64(this.map.toString())
|
|
33
|
+
} else if (typeof this.mapOpts.annotation === 'string') {
|
|
34
|
+
content = this.mapOpts.annotation
|
|
35
|
+
} else if (typeof this.mapOpts.annotation === 'function') {
|
|
36
|
+
content = this.mapOpts.annotation(this.opts.to, this.root)
|
|
37
|
+
} else {
|
|
38
|
+
content = this.outputFile() + '.map'
|
|
39
|
+
}
|
|
40
|
+
let eol = '\n'
|
|
41
|
+
if (this.css.includes('\r\n')) eol = '\r\n'
|
|
42
|
+
|
|
43
|
+
this.css += eol + '/*# sourceMappingURL=' + content + ' */'
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
applyPrevMaps() {
|
|
47
|
+
for (let prev of this.previous()) {
|
|
48
|
+
let from = this.toUrl(this.path(prev.file))
|
|
49
|
+
let root = prev.root || dirname(prev.file)
|
|
50
|
+
let map
|
|
51
|
+
|
|
52
|
+
if (this.mapOpts.sourcesContent === false) {
|
|
53
|
+
map = new SourceMapConsumer(prev.text)
|
|
54
|
+
if (map.sourcesContent) {
|
|
55
|
+
map.sourcesContent = null
|
|
56
|
+
}
|
|
57
|
+
} else {
|
|
58
|
+
map = prev.consumer()
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
this.map.applySourceMap(map, from, this.toUrl(this.path(root)))
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
clearAnnotation() {
|
|
66
|
+
if (this.mapOpts.annotation === false) return
|
|
67
|
+
|
|
68
|
+
if (this.root) {
|
|
69
|
+
let node
|
|
70
|
+
for (let i = this.root.nodes.length - 1; i >= 0; i--) {
|
|
71
|
+
node = this.root.nodes[i]
|
|
72
|
+
if (node.type !== 'comment') continue
|
|
73
|
+
if (node.text.startsWith('# sourceMappingURL=')) {
|
|
74
|
+
this.root.removeChild(i)
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
} else if (this.css) {
|
|
78
|
+
let startIndex
|
|
79
|
+
while ((startIndex = this.css.lastIndexOf('/*#')) !== -1) {
|
|
80
|
+
let endIndex = this.css.indexOf('*/', startIndex + 3)
|
|
81
|
+
if (endIndex === -1) break
|
|
82
|
+
while (startIndex > 0 && this.css[startIndex - 1] === '\n') {
|
|
83
|
+
startIndex--
|
|
84
|
+
}
|
|
85
|
+
this.css = this.css.slice(0, startIndex) + this.css.slice(endIndex + 2)
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
generate() {
|
|
91
|
+
this.clearAnnotation()
|
|
92
|
+
if (pathAvailable && sourceMapAvailable && this.isMap()) {
|
|
93
|
+
return this.generateMap()
|
|
94
|
+
} else {
|
|
95
|
+
let result = ''
|
|
96
|
+
this.stringify(this.root, i => {
|
|
97
|
+
result += i
|
|
98
|
+
})
|
|
99
|
+
return [result]
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
generateMap() {
|
|
104
|
+
if (this.root) {
|
|
105
|
+
this.generateString()
|
|
106
|
+
} else if (this.previous().length === 1) {
|
|
107
|
+
let prev = this.previous()[0].consumer()
|
|
108
|
+
prev.file = this.outputFile()
|
|
109
|
+
this.map = SourceMapGenerator.fromSourceMap(prev, {
|
|
110
|
+
ignoreInvalidMapping: true
|
|
111
|
+
})
|
|
112
|
+
} else {
|
|
113
|
+
this.map = new SourceMapGenerator({
|
|
114
|
+
file: this.outputFile(),
|
|
115
|
+
ignoreInvalidMapping: true
|
|
116
|
+
})
|
|
117
|
+
this.map.addMapping({
|
|
118
|
+
generated: { column: 0, line: 1 },
|
|
119
|
+
original: { column: 0, line: 1 },
|
|
120
|
+
source: this.opts.from
|
|
121
|
+
? this.toUrl(this.path(this.opts.from))
|
|
122
|
+
: '<no source>'
|
|
123
|
+
})
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
if (this.isSourcesContent()) this.setSourcesContent()
|
|
127
|
+
if (this.root && this.previous().length > 0) this.applyPrevMaps()
|
|
128
|
+
if (this.isAnnotation()) this.addAnnotation()
|
|
129
|
+
|
|
130
|
+
if (this.isInline()) {
|
|
131
|
+
return [this.css]
|
|
132
|
+
} else {
|
|
133
|
+
return [this.css, this.map]
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
generateString() {
|
|
138
|
+
this.css = ''
|
|
139
|
+
this.map = new SourceMapGenerator({
|
|
140
|
+
file: this.outputFile(),
|
|
141
|
+
ignoreInvalidMapping: true
|
|
142
|
+
})
|
|
143
|
+
|
|
144
|
+
let line = 1
|
|
145
|
+
let column = 1
|
|
146
|
+
|
|
147
|
+
let noSource = '<no source>'
|
|
148
|
+
let mapping = {
|
|
149
|
+
generated: { column: 0, line: 0 },
|
|
150
|
+
original: { column: 0, line: 0 },
|
|
151
|
+
source: ''
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
let last, lines
|
|
155
|
+
this.stringify(this.root, (str, node, type) => {
|
|
156
|
+
this.css += str
|
|
157
|
+
|
|
158
|
+
if (node && type !== 'end') {
|
|
159
|
+
mapping.generated.line = line
|
|
160
|
+
mapping.generated.column = column - 1
|
|
161
|
+
if (node.source && node.source.start) {
|
|
162
|
+
mapping.source = this.sourcePath(node)
|
|
163
|
+
mapping.original.line = node.source.start.line
|
|
164
|
+
mapping.original.column = node.source.start.column - 1
|
|
165
|
+
this.map.addMapping(mapping)
|
|
166
|
+
} else {
|
|
167
|
+
mapping.source = noSource
|
|
168
|
+
mapping.original.line = 1
|
|
169
|
+
mapping.original.column = 0
|
|
170
|
+
this.map.addMapping(mapping)
|
|
171
|
+
}
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
lines = str.match(/\n/g)
|
|
175
|
+
if (lines) {
|
|
176
|
+
line += lines.length
|
|
177
|
+
last = str.lastIndexOf('\n')
|
|
178
|
+
column = str.length - last
|
|
179
|
+
} else {
|
|
180
|
+
column += str.length
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
if (node && type !== 'start') {
|
|
184
|
+
let p = node.parent || { raws: {} }
|
|
185
|
+
let childless =
|
|
186
|
+
node.type === 'decl' || (node.type === 'atrule' && !node.nodes)
|
|
187
|
+
if (!childless || node !== p.last || p.raws.semicolon) {
|
|
188
|
+
if (node.source && node.source.end) {
|
|
189
|
+
mapping.source = this.sourcePath(node)
|
|
190
|
+
mapping.original.line = node.source.end.line
|
|
191
|
+
mapping.original.column = node.source.end.column - 1
|
|
192
|
+
mapping.generated.line = line
|
|
193
|
+
mapping.generated.column = column - 2
|
|
194
|
+
this.map.addMapping(mapping)
|
|
195
|
+
} else {
|
|
196
|
+
mapping.source = noSource
|
|
197
|
+
mapping.original.line = 1
|
|
198
|
+
mapping.original.column = 0
|
|
199
|
+
mapping.generated.line = line
|
|
200
|
+
mapping.generated.column = column - 1
|
|
201
|
+
this.map.addMapping(mapping)
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
})
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
isAnnotation() {
|
|
209
|
+
if (this.isInline()) {
|
|
210
|
+
return true
|
|
211
|
+
}
|
|
212
|
+
if (typeof this.mapOpts.annotation !== 'undefined') {
|
|
213
|
+
return this.mapOpts.annotation
|
|
214
|
+
}
|
|
215
|
+
if (this.previous().length) {
|
|
216
|
+
return this.previous().some(i => i.annotation)
|
|
217
|
+
}
|
|
218
|
+
return true
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
isInline() {
|
|
222
|
+
if (typeof this.mapOpts.inline !== 'undefined') {
|
|
223
|
+
return this.mapOpts.inline
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
let annotation = this.mapOpts.annotation
|
|
227
|
+
if (typeof annotation !== 'undefined' && annotation !== true) {
|
|
228
|
+
return false
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
if (this.previous().length) {
|
|
232
|
+
return this.previous().some(i => i.inline)
|
|
233
|
+
}
|
|
234
|
+
return true
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
isMap() {
|
|
238
|
+
if (typeof this.opts.map !== 'undefined') {
|
|
239
|
+
return !!this.opts.map
|
|
240
|
+
}
|
|
241
|
+
return this.previous().length > 0
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
isSourcesContent() {
|
|
245
|
+
if (typeof this.mapOpts.sourcesContent !== 'undefined') {
|
|
246
|
+
return this.mapOpts.sourcesContent
|
|
247
|
+
}
|
|
248
|
+
if (this.previous().length) {
|
|
249
|
+
return this.previous().some(i => i.withContent())
|
|
250
|
+
}
|
|
251
|
+
return true
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
outputFile() {
|
|
255
|
+
if (this.opts.to) {
|
|
256
|
+
return this.path(this.opts.to)
|
|
257
|
+
} else if (this.opts.from) {
|
|
258
|
+
return this.path(this.opts.from)
|
|
259
|
+
} else {
|
|
260
|
+
return 'to.css'
|
|
261
|
+
}
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
path(file) {
|
|
265
|
+
if (this.mapOpts.absolute) return file
|
|
266
|
+
if (file.charCodeAt(0) === 60 /* `<` */) return file
|
|
267
|
+
if (/^\w+:\/\//.test(file)) return file
|
|
268
|
+
let cached = this.memoizedPaths.get(file)
|
|
269
|
+
if (cached) return cached
|
|
270
|
+
|
|
271
|
+
let from = this.opts.to ? dirname(this.opts.to) : '.'
|
|
272
|
+
|
|
273
|
+
if (typeof this.mapOpts.annotation === 'string') {
|
|
274
|
+
from = dirname(resolve(from, this.mapOpts.annotation))
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
let path = relative(from, file)
|
|
278
|
+
this.memoizedPaths.set(file, path)
|
|
279
|
+
|
|
280
|
+
return path
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
previous() {
|
|
284
|
+
if (!this.previousMaps) {
|
|
285
|
+
this.previousMaps = []
|
|
286
|
+
if (this.root) {
|
|
287
|
+
this.root.walk(node => {
|
|
288
|
+
if (node.source && node.source.input.map) {
|
|
289
|
+
let map = node.source.input.map
|
|
290
|
+
if (!this.previousMaps.includes(map)) {
|
|
291
|
+
this.previousMaps.push(map)
|
|
292
|
+
}
|
|
293
|
+
}
|
|
294
|
+
})
|
|
295
|
+
} else {
|
|
296
|
+
let input = new Input(this.originalCSS, this.opts)
|
|
297
|
+
if (input.map) this.previousMaps.push(input.map)
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
return this.previousMaps
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
setSourcesContent() {
|
|
305
|
+
let already = {}
|
|
306
|
+
if (this.root) {
|
|
307
|
+
this.root.walk(node => {
|
|
308
|
+
if (node.source) {
|
|
309
|
+
let from = node.source.input.from
|
|
310
|
+
if (from && !already[from]) {
|
|
311
|
+
already[from] = true
|
|
312
|
+
let fromUrl = this.usesFileUrls
|
|
313
|
+
? this.toFileUrl(from)
|
|
314
|
+
: this.toUrl(this.path(from))
|
|
315
|
+
this.map.setSourceContent(fromUrl, node.source.input.css)
|
|
316
|
+
}
|
|
317
|
+
}
|
|
318
|
+
})
|
|
319
|
+
} else if (this.css) {
|
|
320
|
+
let from = this.opts.from
|
|
321
|
+
? this.toUrl(this.path(this.opts.from))
|
|
322
|
+
: '<no source>'
|
|
323
|
+
this.map.setSourceContent(from, this.css)
|
|
324
|
+
}
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
sourcePath(node) {
|
|
328
|
+
if (this.mapOpts.from) {
|
|
329
|
+
return this.toUrl(this.mapOpts.from)
|
|
330
|
+
} else if (this.usesFileUrls) {
|
|
331
|
+
return this.toFileUrl(node.source.input.from)
|
|
332
|
+
} else {
|
|
333
|
+
return this.toUrl(this.path(node.source.input.from))
|
|
334
|
+
}
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
toBase64(str) {
|
|
338
|
+
if (Buffer) {
|
|
339
|
+
return Buffer.from(str).toString('base64')
|
|
340
|
+
} else {
|
|
341
|
+
return window.btoa(unescape(encodeURIComponent(str)))
|
|
342
|
+
}
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
toFileUrl(path) {
|
|
346
|
+
let cached = this.memoizedFileURLs.get(path)
|
|
347
|
+
if (cached) return cached
|
|
348
|
+
|
|
349
|
+
if (pathToFileURL) {
|
|
350
|
+
let fileURL = pathToFileURL(path).toString()
|
|
351
|
+
this.memoizedFileURLs.set(path, fileURL)
|
|
352
|
+
|
|
353
|
+
return fileURL
|
|
354
|
+
} else {
|
|
355
|
+
throw new Error(
|
|
356
|
+
'`map.absolute` option is not available in this PostCSS build'
|
|
357
|
+
)
|
|
358
|
+
}
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
toUrl(path) {
|
|
362
|
+
let cached = this.memoizedURLs.get(path)
|
|
363
|
+
if (cached) return cached
|
|
364
|
+
|
|
365
|
+
if (sep === '\\') {
|
|
366
|
+
path = path.replace(/\\/g, '/')
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
let url = encodeURI(path).replace(/[#?]/g, encodeURIComponent)
|
|
370
|
+
this.memoizedURLs.set(path, url)
|
|
371
|
+
|
|
372
|
+
return url
|
|
373
|
+
}
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
module.exports = MapGenerator
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import LazyResult from './lazy-result.js'
|
|
2
|
+
import { SourceMap } from './postcss.js'
|
|
3
|
+
import Processor from './processor.js'
|
|
4
|
+
import Result, { Message, ResultOptions } from './result.js'
|
|
5
|
+
import Root from './root.js'
|
|
6
|
+
import Warning from './warning.js'
|
|
7
|
+
|
|
8
|
+
declare namespace NoWorkResult {
|
|
9
|
+
export { NoWorkResult_ as default }
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* A Promise proxy for the result of PostCSS transformations.
|
|
14
|
+
* This lazy result instance doesn't parse css unless `NoWorkResult#root` or `Result#root`
|
|
15
|
+
* are accessed. See the example below for details.
|
|
16
|
+
* A `NoWork` instance is returned by `Processor#process` ONLY when no plugins defined.
|
|
17
|
+
*
|
|
18
|
+
* ```js
|
|
19
|
+
* const noWorkResult = postcss().process(css) // No plugins are defined.
|
|
20
|
+
* // CSS is not parsed
|
|
21
|
+
* let root = noWorkResult.root // now css is parsed because we accessed the root
|
|
22
|
+
* ```
|
|
23
|
+
*/
|
|
24
|
+
declare class NoWorkResult_ implements LazyResult<Root> {
|
|
25
|
+
catch: Promise<Result<Root>>['catch']
|
|
26
|
+
finally: Promise<Result<Root>>['finally']
|
|
27
|
+
then: Promise<Result<Root>>['then']
|
|
28
|
+
get content(): string
|
|
29
|
+
get css(): string
|
|
30
|
+
get map(): SourceMap
|
|
31
|
+
get messages(): Message[]
|
|
32
|
+
get opts(): ResultOptions
|
|
33
|
+
get processor(): Processor
|
|
34
|
+
get root(): Root
|
|
35
|
+
get [Symbol.toStringTag](): string
|
|
36
|
+
constructor(processor: Processor, css: string, opts: ResultOptions)
|
|
37
|
+
async(): Promise<Result<Root>>
|
|
38
|
+
sync(): Result<Root>
|
|
39
|
+
toString(): string
|
|
40
|
+
warnings(): Warning[]
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
declare class NoWorkResult extends NoWorkResult_ {}
|
|
44
|
+
|
|
45
|
+
export = NoWorkResult
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
'use strict'
|
|
2
|
+
|
|
3
|
+
let MapGenerator = require('./map-generator')
|
|
4
|
+
let parse = require('./parse')
|
|
5
|
+
let Result = require('./result')
|
|
6
|
+
let stringify = require('./stringify')
|
|
7
|
+
let warnOnce = require('./warn-once')
|
|
8
|
+
|
|
9
|
+
class NoWorkResult {
|
|
10
|
+
get content() {
|
|
11
|
+
return this.result.css
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
get css() {
|
|
15
|
+
return this.result.css
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
get map() {
|
|
19
|
+
return this.result.map
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
get messages() {
|
|
23
|
+
return []
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
get opts() {
|
|
27
|
+
return this.result.opts
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
get processor() {
|
|
31
|
+
return this.result.processor
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
get root() {
|
|
35
|
+
if (this._root) {
|
|
36
|
+
return this._root
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
let root
|
|
40
|
+
let parser = parse
|
|
41
|
+
|
|
42
|
+
try {
|
|
43
|
+
root = parser(this._css, this._opts)
|
|
44
|
+
} catch (error) {
|
|
45
|
+
this.error = error
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
if (this.error) {
|
|
49
|
+
throw this.error
|
|
50
|
+
} else {
|
|
51
|
+
this._root = root
|
|
52
|
+
return root
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
get [Symbol.toStringTag]() {
|
|
57
|
+
return 'NoWorkResult'
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
constructor(processor, css, opts) {
|
|
61
|
+
css = css.toString()
|
|
62
|
+
this.stringified = false
|
|
63
|
+
|
|
64
|
+
this._processor = processor
|
|
65
|
+
this._css = css
|
|
66
|
+
this._opts = opts
|
|
67
|
+
this._map = undefined
|
|
68
|
+
|
|
69
|
+
let str = stringify
|
|
70
|
+
this.result = new Result(this._processor, undefined, this._opts)
|
|
71
|
+
this.result.css = css
|
|
72
|
+
|
|
73
|
+
let self = this
|
|
74
|
+
Object.defineProperty(this.result, 'root', {
|
|
75
|
+
get() {
|
|
76
|
+
return self.root
|
|
77
|
+
}
|
|
78
|
+
})
|
|
79
|
+
|
|
80
|
+
let map = new MapGenerator(str, undefined, this._opts, css)
|
|
81
|
+
if (map.isMap()) {
|
|
82
|
+
let [generatedCSS, generatedMap] = map.generate()
|
|
83
|
+
if (generatedCSS) {
|
|
84
|
+
this.result.css = generatedCSS
|
|
85
|
+
}
|
|
86
|
+
if (generatedMap) {
|
|
87
|
+
this.result.map = generatedMap
|
|
88
|
+
}
|
|
89
|
+
} else {
|
|
90
|
+
map.clearAnnotation()
|
|
91
|
+
this.result.css = map.css
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
async() {
|
|
96
|
+
if (this.error) return Promise.reject(this.error)
|
|
97
|
+
return Promise.resolve(this.result)
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
catch(onRejected) {
|
|
101
|
+
return this.async().catch(onRejected)
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
finally(onFinally) {
|
|
105
|
+
return this.async().then(onFinally, onFinally)
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
sync() {
|
|
109
|
+
if (this.error) throw this.error
|
|
110
|
+
return this.result
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
then(onFulfilled, onRejected) {
|
|
114
|
+
if (process.env.NODE_ENV !== 'production') {
|
|
115
|
+
if (!('from' in this._opts)) {
|
|
116
|
+
warnOnce(
|
|
117
|
+
'Without `from` option PostCSS could generate wrong source map ' +
|
|
118
|
+
'and will not find Browserslist config. Set it to CSS file path ' +
|
|
119
|
+
'or to `undefined` to prevent this warning.'
|
|
120
|
+
)
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
return this.async().then(onFulfilled, onRejected)
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
toString() {
|
|
128
|
+
return this._css
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
warnings() {
|
|
132
|
+
return []
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
module.exports = NoWorkResult
|
|
137
|
+
NoWorkResult.default = NoWorkResult
|