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,70 @@
|
|
|
1
|
+
'use strict'
|
|
2
|
+
|
|
3
|
+
let pico = require('picocolors')
|
|
4
|
+
|
|
5
|
+
let tokenizer = require('./tokenize')
|
|
6
|
+
|
|
7
|
+
let Input
|
|
8
|
+
|
|
9
|
+
function registerInput(dependant) {
|
|
10
|
+
Input = dependant
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
const HIGHLIGHT_THEME = {
|
|
14
|
+
';': pico.yellow,
|
|
15
|
+
':': pico.yellow,
|
|
16
|
+
'(': pico.cyan,
|
|
17
|
+
')': pico.cyan,
|
|
18
|
+
'[': pico.yellow,
|
|
19
|
+
']': pico.yellow,
|
|
20
|
+
'{': pico.yellow,
|
|
21
|
+
'}': pico.yellow,
|
|
22
|
+
'at-word': pico.cyan,
|
|
23
|
+
'brackets': pico.cyan,
|
|
24
|
+
'call': pico.cyan,
|
|
25
|
+
'class': pico.yellow,
|
|
26
|
+
'comment': pico.gray,
|
|
27
|
+
'hash': pico.magenta,
|
|
28
|
+
'string': pico.green
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
function getTokenType([type, value], processor) {
|
|
32
|
+
if (type === 'word') {
|
|
33
|
+
if (value[0] === '.') {
|
|
34
|
+
return 'class'
|
|
35
|
+
}
|
|
36
|
+
if (value[0] === '#') {
|
|
37
|
+
return 'hash'
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
if (!processor.endOfFile()) {
|
|
42
|
+
let next = processor.nextToken()
|
|
43
|
+
processor.back(next)
|
|
44
|
+
if (next[0] === 'brackets' || next[0] === '(') return 'call'
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
return type
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
function terminalHighlight(css) {
|
|
51
|
+
let processor = tokenizer(new Input(css), { ignoreErrors: true })
|
|
52
|
+
let result = ''
|
|
53
|
+
while (!processor.endOfFile()) {
|
|
54
|
+
let token = processor.nextToken()
|
|
55
|
+
let color = HIGHLIGHT_THEME[getTokenType(token, processor)]
|
|
56
|
+
if (color) {
|
|
57
|
+
result += token[1]
|
|
58
|
+
.split(/\r?\n/)
|
|
59
|
+
.map(i => color(i))
|
|
60
|
+
.join('\n')
|
|
61
|
+
} else {
|
|
62
|
+
result += token[1]
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
return result
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
terminalHighlight.registerInput = registerInput
|
|
69
|
+
|
|
70
|
+
module.exports = terminalHighlight
|
|
@@ -0,0 +1,270 @@
|
|
|
1
|
+
'use strict'
|
|
2
|
+
|
|
3
|
+
const SINGLE_QUOTE = "'".charCodeAt(0)
|
|
4
|
+
const DOUBLE_QUOTE = '"'.charCodeAt(0)
|
|
5
|
+
const BACKSLASH = '\\'.charCodeAt(0)
|
|
6
|
+
const SLASH = '/'.charCodeAt(0)
|
|
7
|
+
const NEWLINE = '\n'.charCodeAt(0)
|
|
8
|
+
const SPACE = ' '.charCodeAt(0)
|
|
9
|
+
const FEED = '\f'.charCodeAt(0)
|
|
10
|
+
const TAB = '\t'.charCodeAt(0)
|
|
11
|
+
const CR = '\r'.charCodeAt(0)
|
|
12
|
+
const OPEN_SQUARE = '['.charCodeAt(0)
|
|
13
|
+
const CLOSE_SQUARE = ']'.charCodeAt(0)
|
|
14
|
+
const OPEN_PARENTHESES = '('.charCodeAt(0)
|
|
15
|
+
const CLOSE_PARENTHESES = ')'.charCodeAt(0)
|
|
16
|
+
const OPEN_CURLY = '{'.charCodeAt(0)
|
|
17
|
+
const CLOSE_CURLY = '}'.charCodeAt(0)
|
|
18
|
+
const SEMICOLON = ';'.charCodeAt(0)
|
|
19
|
+
const ASTERISK = '*'.charCodeAt(0)
|
|
20
|
+
const COLON = ':'.charCodeAt(0)
|
|
21
|
+
const AT = '@'.charCodeAt(0)
|
|
22
|
+
|
|
23
|
+
const RE_AT_END = /[\t\n\f\r "#'()/;[\\\]{}]/g
|
|
24
|
+
const RE_WORD_END = /[\t\n\f\r !"#'():;@[\\\]{}]|\/(?=\*)/g
|
|
25
|
+
const RE_BAD_BRACKET = /.[\r\n"'(/\\]/
|
|
26
|
+
const RE_HEX_ESCAPE = /[\da-f]/i
|
|
27
|
+
|
|
28
|
+
module.exports = function tokenizer(input, options = {}) {
|
|
29
|
+
let css = input.css.valueOf()
|
|
30
|
+
let ignore = options.ignoreErrors
|
|
31
|
+
|
|
32
|
+
let code, content, escape, next, quote
|
|
33
|
+
let currentToken, escaped, escapePos, n, prev
|
|
34
|
+
|
|
35
|
+
let length = css.length
|
|
36
|
+
let pos = 0
|
|
37
|
+
let buffer = []
|
|
38
|
+
let returned = []
|
|
39
|
+
let lastBadParen = -1
|
|
40
|
+
|
|
41
|
+
function position() {
|
|
42
|
+
return pos
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
function unclosed(what) {
|
|
46
|
+
throw input.error('Unclosed ' + what, pos)
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
function endOfFile() {
|
|
50
|
+
return returned.length === 0 && pos >= length
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
function nextToken(opts) {
|
|
54
|
+
if (returned.length) return returned.pop()
|
|
55
|
+
if (pos >= length) return
|
|
56
|
+
|
|
57
|
+
let ignoreUnclosed = opts ? opts.ignoreUnclosed : false
|
|
58
|
+
|
|
59
|
+
code = css.charCodeAt(pos)
|
|
60
|
+
|
|
61
|
+
switch (code) {
|
|
62
|
+
case NEWLINE:
|
|
63
|
+
case SPACE:
|
|
64
|
+
case TAB:
|
|
65
|
+
case CR:
|
|
66
|
+
case FEED: {
|
|
67
|
+
next = pos
|
|
68
|
+
do {
|
|
69
|
+
next += 1
|
|
70
|
+
code = css.charCodeAt(next)
|
|
71
|
+
} while (
|
|
72
|
+
code === SPACE ||
|
|
73
|
+
code === NEWLINE ||
|
|
74
|
+
code === TAB ||
|
|
75
|
+
code === CR ||
|
|
76
|
+
code === FEED
|
|
77
|
+
)
|
|
78
|
+
|
|
79
|
+
currentToken = ['space', css.slice(pos, next)]
|
|
80
|
+
pos = next - 1
|
|
81
|
+
break
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
case OPEN_SQUARE:
|
|
85
|
+
case CLOSE_SQUARE:
|
|
86
|
+
case OPEN_CURLY:
|
|
87
|
+
case CLOSE_CURLY:
|
|
88
|
+
case COLON:
|
|
89
|
+
case SEMICOLON:
|
|
90
|
+
case CLOSE_PARENTHESES: {
|
|
91
|
+
let controlChar = String.fromCharCode(code)
|
|
92
|
+
currentToken = [controlChar, controlChar, pos]
|
|
93
|
+
break
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
case OPEN_PARENTHESES: {
|
|
97
|
+
prev = buffer.length ? buffer.pop()[1] : ''
|
|
98
|
+
n = css.charCodeAt(pos + 1)
|
|
99
|
+
if (
|
|
100
|
+
prev === 'url' &&
|
|
101
|
+
n !== SINGLE_QUOTE &&
|
|
102
|
+
n !== DOUBLE_QUOTE &&
|
|
103
|
+
n !== SPACE &&
|
|
104
|
+
n !== NEWLINE &&
|
|
105
|
+
n !== TAB &&
|
|
106
|
+
n !== FEED &&
|
|
107
|
+
n !== CR
|
|
108
|
+
) {
|
|
109
|
+
next = pos
|
|
110
|
+
do {
|
|
111
|
+
escaped = false
|
|
112
|
+
next = css.indexOf(')', next + 1)
|
|
113
|
+
if (next === -1) {
|
|
114
|
+
if (ignore || ignoreUnclosed) {
|
|
115
|
+
next = pos
|
|
116
|
+
break
|
|
117
|
+
} else {
|
|
118
|
+
unclosed('bracket')
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
escapePos = next
|
|
122
|
+
while (css.charCodeAt(escapePos - 1) === BACKSLASH) {
|
|
123
|
+
escapePos -= 1
|
|
124
|
+
escaped = !escaped
|
|
125
|
+
}
|
|
126
|
+
} while (escaped)
|
|
127
|
+
|
|
128
|
+
currentToken = ['brackets', css.slice(pos, next + 1), pos, next]
|
|
129
|
+
|
|
130
|
+
pos = next
|
|
131
|
+
} else if (pos <= lastBadParen) {
|
|
132
|
+
currentToken = ['(', '(', pos]
|
|
133
|
+
} else {
|
|
134
|
+
next = css.indexOf(')', pos + 1)
|
|
135
|
+
content = css.slice(pos, next + 1)
|
|
136
|
+
|
|
137
|
+
if (next === -1 || RE_BAD_BRACKET.test(content)) {
|
|
138
|
+
lastBadParen = next === -1 ? length : next
|
|
139
|
+
currentToken = ['(', '(', pos]
|
|
140
|
+
} else {
|
|
141
|
+
currentToken = ['brackets', content, pos, next]
|
|
142
|
+
pos = next
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
break
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
case SINGLE_QUOTE:
|
|
150
|
+
case DOUBLE_QUOTE: {
|
|
151
|
+
quote = code === SINGLE_QUOTE ? "'" : '"'
|
|
152
|
+
next = pos
|
|
153
|
+
do {
|
|
154
|
+
escaped = false
|
|
155
|
+
next = css.indexOf(quote, next + 1)
|
|
156
|
+
if (next === -1) {
|
|
157
|
+
if (ignore || ignoreUnclosed) {
|
|
158
|
+
next = pos + 1
|
|
159
|
+
break
|
|
160
|
+
} else {
|
|
161
|
+
unclosed('string')
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
escapePos = next
|
|
165
|
+
while (css.charCodeAt(escapePos - 1) === BACKSLASH) {
|
|
166
|
+
escapePos -= 1
|
|
167
|
+
escaped = !escaped
|
|
168
|
+
}
|
|
169
|
+
} while (escaped)
|
|
170
|
+
|
|
171
|
+
currentToken = ['string', css.slice(pos, next + 1), pos, next]
|
|
172
|
+
pos = next
|
|
173
|
+
break
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
case AT: {
|
|
177
|
+
RE_AT_END.lastIndex = pos + 1
|
|
178
|
+
RE_AT_END.test(css)
|
|
179
|
+
if (RE_AT_END.lastIndex === 0) {
|
|
180
|
+
next = css.length - 1
|
|
181
|
+
} else {
|
|
182
|
+
next = RE_AT_END.lastIndex - 2
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
currentToken = ['at-word', css.slice(pos, next + 1), pos, next]
|
|
186
|
+
|
|
187
|
+
pos = next
|
|
188
|
+
break
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
case BACKSLASH: {
|
|
192
|
+
next = pos
|
|
193
|
+
escape = true
|
|
194
|
+
while (css.charCodeAt(next + 1) === BACKSLASH) {
|
|
195
|
+
next += 1
|
|
196
|
+
escape = !escape
|
|
197
|
+
}
|
|
198
|
+
code = css.charCodeAt(next + 1)
|
|
199
|
+
if (
|
|
200
|
+
escape &&
|
|
201
|
+
code !== SLASH &&
|
|
202
|
+
code !== SPACE &&
|
|
203
|
+
code !== NEWLINE &&
|
|
204
|
+
code !== TAB &&
|
|
205
|
+
code !== CR &&
|
|
206
|
+
code !== FEED
|
|
207
|
+
) {
|
|
208
|
+
next += 1
|
|
209
|
+
if (RE_HEX_ESCAPE.test(css.charAt(next))) {
|
|
210
|
+
while (RE_HEX_ESCAPE.test(css.charAt(next + 1))) {
|
|
211
|
+
next += 1
|
|
212
|
+
}
|
|
213
|
+
if (css.charCodeAt(next + 1) === SPACE) {
|
|
214
|
+
next += 1
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
currentToken = ['word', css.slice(pos, next + 1), pos, next]
|
|
220
|
+
|
|
221
|
+
pos = next
|
|
222
|
+
break
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
default: {
|
|
226
|
+
if (code === SLASH && css.charCodeAt(pos + 1) === ASTERISK) {
|
|
227
|
+
next = css.indexOf('*/', pos + 2) + 1
|
|
228
|
+
if (next === 0) {
|
|
229
|
+
if (ignore || ignoreUnclosed) {
|
|
230
|
+
next = css.length
|
|
231
|
+
} else {
|
|
232
|
+
unclosed('comment')
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
currentToken = ['comment', css.slice(pos, next + 1), pos, next]
|
|
237
|
+
pos = next
|
|
238
|
+
} else {
|
|
239
|
+
RE_WORD_END.lastIndex = pos + 1
|
|
240
|
+
RE_WORD_END.test(css)
|
|
241
|
+
if (RE_WORD_END.lastIndex === 0) {
|
|
242
|
+
next = css.length - 1
|
|
243
|
+
} else {
|
|
244
|
+
next = RE_WORD_END.lastIndex - 2
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
currentToken = ['word', css.slice(pos, next + 1), pos, next]
|
|
248
|
+
buffer.push(currentToken)
|
|
249
|
+
pos = next
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
break
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
pos++
|
|
257
|
+
return currentToken
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
function back(token) {
|
|
261
|
+
returned.push(token)
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
return {
|
|
265
|
+
back,
|
|
266
|
+
endOfFile,
|
|
267
|
+
nextToken,
|
|
268
|
+
position
|
|
269
|
+
}
|
|
270
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/* eslint-disable no-console */
|
|
2
|
+
'use strict'
|
|
3
|
+
|
|
4
|
+
let printed = {}
|
|
5
|
+
|
|
6
|
+
module.exports = function warnOnce(message) {
|
|
7
|
+
if (printed[message]) return
|
|
8
|
+
printed[message] = true
|
|
9
|
+
|
|
10
|
+
if (typeof console !== 'undefined' && console.warn) {
|
|
11
|
+
console.warn(message)
|
|
12
|
+
}
|
|
13
|
+
}
|
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
import { RangePosition } from './css-syntax-error.js'
|
|
2
|
+
import Node from './node.js'
|
|
3
|
+
|
|
4
|
+
declare namespace Warning {
|
|
5
|
+
export interface WarningOptions {
|
|
6
|
+
/**
|
|
7
|
+
* End position, exclusive, in CSS node string that caused the warning.
|
|
8
|
+
*/
|
|
9
|
+
end?: RangePosition
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* End index, exclusive, in CSS node string that caused the warning.
|
|
13
|
+
*/
|
|
14
|
+
endIndex?: number
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* Start index, inclusive, in CSS node string that caused the warning.
|
|
18
|
+
*/
|
|
19
|
+
index?: number
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* CSS node that caused the warning.
|
|
23
|
+
*/
|
|
24
|
+
node?: Node
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* Name of the plugin that created this warning. `Result#warn` fills
|
|
28
|
+
* this property automatically.
|
|
29
|
+
*/
|
|
30
|
+
plugin?: string
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* Start position, inclusive, in CSS node string that caused the warning.
|
|
34
|
+
*/
|
|
35
|
+
start?: RangePosition
|
|
36
|
+
|
|
37
|
+
/**
|
|
38
|
+
* Word in CSS source that caused the warning.
|
|
39
|
+
*/
|
|
40
|
+
word?: string
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export { Warning_ as default }
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* Represents a plugin’s warning. It can be created using `Node#warn`.
|
|
48
|
+
*
|
|
49
|
+
* ```js
|
|
50
|
+
* if (decl.important) {
|
|
51
|
+
* decl.warn(result, 'Avoid !important', { word: '!important' })
|
|
52
|
+
* }
|
|
53
|
+
* ```
|
|
54
|
+
*/
|
|
55
|
+
declare class Warning_ {
|
|
56
|
+
/**
|
|
57
|
+
* Column for inclusive start position in the input file with this warning’s source.
|
|
58
|
+
*
|
|
59
|
+
* ```js
|
|
60
|
+
* warning.column //=> 6
|
|
61
|
+
* ```
|
|
62
|
+
*/
|
|
63
|
+
column: number
|
|
64
|
+
|
|
65
|
+
/**
|
|
66
|
+
* Column for exclusive end position in the input file with this warning’s source.
|
|
67
|
+
*
|
|
68
|
+
* ```js
|
|
69
|
+
* warning.endColumn //=> 4
|
|
70
|
+
* ```
|
|
71
|
+
*/
|
|
72
|
+
endColumn?: number
|
|
73
|
+
|
|
74
|
+
/**
|
|
75
|
+
* Line for exclusive end position in the input file with this warning’s source.
|
|
76
|
+
*
|
|
77
|
+
* ```js
|
|
78
|
+
* warning.endLine //=> 6
|
|
79
|
+
* ```
|
|
80
|
+
*/
|
|
81
|
+
endLine?: number
|
|
82
|
+
|
|
83
|
+
/**
|
|
84
|
+
* Line for inclusive start position in the input file with this warning’s source.
|
|
85
|
+
*
|
|
86
|
+
* ```js
|
|
87
|
+
* warning.line //=> 5
|
|
88
|
+
* ```
|
|
89
|
+
*/
|
|
90
|
+
line: number
|
|
91
|
+
|
|
92
|
+
/**
|
|
93
|
+
* Contains the CSS node that caused the warning.
|
|
94
|
+
*
|
|
95
|
+
* ```js
|
|
96
|
+
* warning.node.toString() //=> 'color: white !important'
|
|
97
|
+
* ```
|
|
98
|
+
*/
|
|
99
|
+
node: Node
|
|
100
|
+
|
|
101
|
+
/**
|
|
102
|
+
* The name of the plugin that created this warning.
|
|
103
|
+
* When you call `Node#warn` it will fill this property automatically.
|
|
104
|
+
*
|
|
105
|
+
* ```js
|
|
106
|
+
* warning.plugin //=> 'postcss-important'
|
|
107
|
+
* ```
|
|
108
|
+
*/
|
|
109
|
+
plugin: string
|
|
110
|
+
|
|
111
|
+
/**
|
|
112
|
+
* The warning message.
|
|
113
|
+
*
|
|
114
|
+
* ```js
|
|
115
|
+
* warning.text //=> 'Try to avoid !important'
|
|
116
|
+
* ```
|
|
117
|
+
*/
|
|
118
|
+
text: string
|
|
119
|
+
|
|
120
|
+
/**
|
|
121
|
+
* Type to filter warnings from `Result#messages`.
|
|
122
|
+
* Always equal to `"warning"`.
|
|
123
|
+
*/
|
|
124
|
+
type: 'warning'
|
|
125
|
+
|
|
126
|
+
/**
|
|
127
|
+
* @param text Warning message.
|
|
128
|
+
* @param opts Warning options.
|
|
129
|
+
*/
|
|
130
|
+
constructor(text: string, opts?: Warning.WarningOptions)
|
|
131
|
+
|
|
132
|
+
/**
|
|
133
|
+
* Returns a warning position and message.
|
|
134
|
+
*
|
|
135
|
+
* ```js
|
|
136
|
+
* warning.toString() //=> 'postcss-lint:a.css:10:14: Avoid !important'
|
|
137
|
+
* ```
|
|
138
|
+
*
|
|
139
|
+
* @return Warning position and message.
|
|
140
|
+
*/
|
|
141
|
+
toString(): string
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
declare class Warning extends Warning_ {}
|
|
145
|
+
|
|
146
|
+
export = Warning
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
'use strict'
|
|
2
|
+
|
|
3
|
+
class Warning {
|
|
4
|
+
constructor(text, opts = {}) {
|
|
5
|
+
this.type = 'warning'
|
|
6
|
+
this.text = text
|
|
7
|
+
|
|
8
|
+
if (opts.node && opts.node.source) {
|
|
9
|
+
let range = opts.node.rangeBy(opts)
|
|
10
|
+
this.line = range.start.line
|
|
11
|
+
this.column = range.start.column
|
|
12
|
+
this.endLine = range.end.line
|
|
13
|
+
this.endColumn = range.end.column
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
for (let opt in opts) this[opt] = opts[opt]
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
toString() {
|
|
20
|
+
if (this.node) {
|
|
21
|
+
return this.node.error(this.text, {
|
|
22
|
+
index: this.index,
|
|
23
|
+
plugin: this.plugin,
|
|
24
|
+
word: this.word
|
|
25
|
+
}).message
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
if (this.plugin) {
|
|
29
|
+
return this.plugin + ': ' + this.text
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
return this.text
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
module.exports = Warning
|
|
37
|
+
Warning.default = Warning
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "postcss",
|
|
3
|
+
"version": "8.5.16",
|
|
4
|
+
"description": "Tool for transforming styles with JS plugins",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"css",
|
|
7
|
+
"manipulation",
|
|
8
|
+
"parser",
|
|
9
|
+
"postcss",
|
|
10
|
+
"preprocessor",
|
|
11
|
+
"rework",
|
|
12
|
+
"source map",
|
|
13
|
+
"transform",
|
|
14
|
+
"transpiler"
|
|
15
|
+
],
|
|
16
|
+
"homepage": "https://postcss.org/",
|
|
17
|
+
"bugs": {
|
|
18
|
+
"url": "https://github.com/postcss/postcss/issues"
|
|
19
|
+
},
|
|
20
|
+
"license": "MIT",
|
|
21
|
+
"author": "Andrey Sitnik <andrey@sitnik.es>",
|
|
22
|
+
"repository": "postcss/postcss",
|
|
23
|
+
"funding": [
|
|
24
|
+
{
|
|
25
|
+
"type": "opencollective",
|
|
26
|
+
"url": "https://opencollective.com/postcss/"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"type": "tidelift",
|
|
30
|
+
"url": "https://tidelift.com/funding/github/npm/postcss"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"type": "github",
|
|
34
|
+
"url": "https://github.com/sponsors/ai"
|
|
35
|
+
}
|
|
36
|
+
],
|
|
37
|
+
"main": "./lib/postcss.js",
|
|
38
|
+
"browser": {
|
|
39
|
+
"./lib/terminal-highlight": false,
|
|
40
|
+
"source-map-js": false,
|
|
41
|
+
"path": false,
|
|
42
|
+
"url": false,
|
|
43
|
+
"fs": false
|
|
44
|
+
},
|
|
45
|
+
"types": "./lib/postcss.d.ts",
|
|
46
|
+
"exports": {
|
|
47
|
+
".": {
|
|
48
|
+
"import": "./lib/postcss.mjs",
|
|
49
|
+
"require": "./lib/postcss.js"
|
|
50
|
+
},
|
|
51
|
+
"./lib/at-rule": "./lib/at-rule.js",
|
|
52
|
+
"./lib/comment": "./lib/comment.js",
|
|
53
|
+
"./lib/container": "./lib/container.js",
|
|
54
|
+
"./lib/css-syntax-error": "./lib/css-syntax-error.js",
|
|
55
|
+
"./lib/declaration": "./lib/declaration.js",
|
|
56
|
+
"./lib/fromJSON": "./lib/fromJSON.js",
|
|
57
|
+
"./lib/input": "./lib/input.js",
|
|
58
|
+
"./lib/lazy-result": "./lib/lazy-result.js",
|
|
59
|
+
"./lib/no-work-result": "./lib/no-work-result.js",
|
|
60
|
+
"./lib/list": "./lib/list.js",
|
|
61
|
+
"./lib/map-generator": "./lib/map-generator.js",
|
|
62
|
+
"./lib/node": "./lib/node.js",
|
|
63
|
+
"./lib/parse": "./lib/parse.js",
|
|
64
|
+
"./lib/parser": "./lib/parser.js",
|
|
65
|
+
"./lib/postcss": "./lib/postcss.js",
|
|
66
|
+
"./lib/previous-map": "./lib/previous-map.js",
|
|
67
|
+
"./lib/processor": "./lib/processor.js",
|
|
68
|
+
"./lib/result": "./lib/result.js",
|
|
69
|
+
"./lib/root": "./lib/root.js",
|
|
70
|
+
"./lib/rule": "./lib/rule.js",
|
|
71
|
+
"./lib/stringifier": "./lib/stringifier.js",
|
|
72
|
+
"./lib/stringify": "./lib/stringify.js",
|
|
73
|
+
"./lib/symbols": "./lib/symbols.js",
|
|
74
|
+
"./lib/terminal-highlight": "./lib/terminal-highlight.js",
|
|
75
|
+
"./lib/tokenize": "./lib/tokenize.js",
|
|
76
|
+
"./lib/warn-once": "./lib/warn-once.js",
|
|
77
|
+
"./lib/warning": "./lib/warning.js",
|
|
78
|
+
"./package.json": "./package.json"
|
|
79
|
+
},
|
|
80
|
+
"dependencies": {
|
|
81
|
+
"nanoid": "^3.3.12",
|
|
82
|
+
"picocolors": "^1.1.1",
|
|
83
|
+
"source-map-js": "^1.2.1"
|
|
84
|
+
},
|
|
85
|
+
"engines": {
|
|
86
|
+
"node": "^10 || ^12 || >=14"
|
|
87
|
+
}
|
|
88
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024-present VoidZero Inc. & Contributors
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
22
|
+
|
|
23
|
+
end of terms and conditions
|
|
24
|
+
|
|
25
|
+
The licenses of externally maintained libraries from which parts of the Software is derived are listed [here](https://github.com/rolldown/rolldown/blob/main/THIRD-PARTY-LICENSE).
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# Rolldown
|
|
2
|
+
|
|
3
|
+
> Fast Rust-based bundler for JavaScript with Rollup-compatible API
|
|
4
|
+
|
|
5
|
+
- ⚡️ Lightning Fast Performance
|
|
6
|
+
- 🔌 Rollup-Compatible APIs
|
|
7
|
+
- ⏩ esbuild Feature Parity
|
|
8
|
+
|
|
9
|
+
Rolldown is primarily designed to serve as the underlying bundler in [Vite](https://vite.dev/), with the goal to replace esbuild and Rollup with one unified build tool. Although designed for Vite, Rolldown is also fully capable of being used as a standalone, general-purpose bundler. It can serve as a drop-in replacement for Rollup in most cases, and can also be used as an esbuild alternative when better chunking control is needed.
|
|
10
|
+
|
|
11
|
+
[Read the Docs to Learn More](https://rolldown.rs).
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { };
|