├── .devcontainer └── devcontainer.json ├── .dockerignore ├── .editorconfig ├── .eslintrc.yml ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml ├── SECURITY.md └── workflows │ └── tests.yaml ├── .gitignore ├── .prettierrc.yml ├── Dockerfile ├── LICENSE ├── README.md ├── babel.config.json ├── codecov.yml ├── docker-compose.yml ├── jest.config.js ├── package.json ├── packages ├── bundler │ ├── LICENSE │ ├── README.md │ ├── bundler.png │ ├── package.json │ ├── playground │ │ ├── astro │ │ │ ├── .gitignore │ │ │ ├── astro.config.js │ │ │ ├── package.json │ │ │ ├── server.mjs │ │ │ ├── src │ │ │ │ ├── README.md │ │ │ │ ├── components │ │ │ │ │ └── title.astro │ │ │ │ ├── env.d.ts │ │ │ │ ├── layouts │ │ │ │ │ └── Layout.astro │ │ │ │ ├── pages │ │ │ │ │ ├── index.astro │ │ │ │ │ └── second.astro │ │ │ │ └── styles │ │ │ │ │ └── stylify.css │ │ │ ├── stylify.config.js │ │ │ ├── tsconfig.json │ │ │ └── vite.config.js │ │ ├── nuxt │ │ │ ├── README.md │ │ │ ├── app.vue │ │ │ ├── content │ │ │ │ └── hello-world.md │ │ │ ├── nuxt.config.ts │ │ │ └── stylify.config.js │ │ ├── vanillajs │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── bundles.mjs │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ └── index.html │ │ │ └── stylify.config.mjs │ │ └── webpack │ │ │ ├── README.md │ │ │ ├── index.html │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── stylify.config.js │ │ │ └── webpack.config.js │ ├── src │ │ ├── Bundler.ts │ │ └── index.ts │ └── tests │ │ └── jest │ │ ├── bundle-specific-compiler-config.test.ts │ │ ├── bundle-specific-compiler-config │ │ ├── expected │ │ │ ├── index.css │ │ │ └── second.css │ │ └── input │ │ │ ├── index.html │ │ │ └── second.html │ │ ├── css-layers.test.ts │ │ ├── css-layers │ │ ├── expected │ │ │ ├── layout.css │ │ │ ├── page.css │ │ │ ├── stylify-css-layers.css │ │ │ └── without-export.css │ │ └── input │ │ │ ├── layout.html │ │ │ ├── page.html │ │ │ └── without-export.html │ │ ├── hooks.test.ts │ │ ├── hooks │ │ ├── expected │ │ │ ├── index.css │ │ │ ├── index.html │ │ │ ├── second.css │ │ │ └── second.html │ │ └── input │ │ │ ├── default.twig │ │ │ ├── index.html │ │ │ ├── layout.twig │ │ │ └── second.html │ │ ├── logs-dir.test.ts │ │ ├── logs-dir │ │ ├── expected │ │ │ ├── index-error.css │ │ │ └── stylify-bundler-error.txt │ │ └── input │ │ │ └── index.html │ │ ├── multiple-files-same-selectors.test.ts │ │ ├── multiple-files-same-selectors │ │ ├── expected │ │ │ ├── index.css │ │ │ ├── index.html │ │ │ ├── layout.css │ │ │ └── layout.html │ │ └── input │ │ │ ├── index.html │ │ │ └── layout.html │ │ ├── multiple-files.test.ts │ │ ├── multiple-files │ │ ├── expected │ │ │ ├── index.css │ │ │ ├── index.html │ │ │ ├── index │ │ │ │ ├── component │ │ │ │ │ └── component.html │ │ │ │ └── secondary.html │ │ │ ├── second.css │ │ │ ├── second.html │ │ │ └── second │ │ │ │ ├── html.html │ │ │ │ ├── nette.latte │ │ │ │ ├── symfony.twig │ │ │ │ ├── vue.vue │ │ │ │ └── vuejs │ │ │ │ └── component.vue │ │ └── input │ │ │ ├── ignored.md │ │ │ ├── index.html │ │ │ ├── index │ │ │ ├── component │ │ │ │ └── component.html │ │ │ └── secondary.html │ │ │ ├── second.html │ │ │ └── second │ │ │ ├── html.html │ │ │ ├── nette.latte │ │ │ ├── symfony.twig │ │ │ ├── vue.vue │ │ │ └── vuejs │ │ │ └── component.vue │ │ ├── normalized-path.test.ts │ │ ├── normalized-path │ │ ├── expected │ │ │ └── index.css │ │ └── input │ │ │ ├── index.html │ │ │ └── nested │ │ │ └── dir │ │ │ └── part.html │ │ ├── selectors-areas.test.ts │ │ ├── selectors-areas │ │ ├── expected │ │ │ └── index.css │ │ └── input │ │ │ └── index.html │ │ ├── single-file.test.ts │ │ ├── single-file │ │ ├── expected │ │ │ ├── index.css │ │ │ ├── second.css │ │ │ └── second.html │ │ └── input │ │ │ ├── index.html │ │ │ └── second.html │ │ ├── special-chars-in-dirname.test.ts │ │ ├── special-chars-in-dirname │ │ ├── expected │ │ │ └── index.css │ │ └── input │ │ │ └── (themes) │ │ │ ├── (default) │ │ │ ├── dir │ │ │ │ ├── (nested) │ │ │ │ │ └── another.html │ │ │ │ └── test.html │ │ │ └── index.svelte │ │ │ └── index.html │ │ ├── vars-export.test.ts │ │ ├── vars-export │ │ └── input │ │ │ └── index.html │ │ ├── watch.test.ts │ │ └── watch │ │ ├── expected │ │ ├── after-config-modification.css │ │ └── before-config-modification.css │ │ └── input │ │ ├── index.html │ │ └── stylify.config.js └── stylify │ ├── LICENSE │ ├── README.md │ ├── package.json │ ├── playground │ ├── index.html │ └── index.ts │ ├── src │ ├── Compiler │ │ ├── CompilationResult.ts │ │ ├── Compiler.ts │ │ ├── CssRecord.ts │ │ ├── CustomSelector.ts │ │ ├── MacroMatch.ts │ │ ├── MinifiedSelectorGenerator.ts │ │ ├── RegExpMatch.ts │ │ ├── ScreensSorter.ts │ │ ├── defaultPreset.ts │ │ └── index.ts │ ├── Configurator.ts │ ├── Hooks.ts │ ├── Runtime.ts │ ├── Utilities │ │ ├── colors.ts │ │ ├── index.ts │ │ ├── numbers.ts │ │ ├── objects.ts │ │ └── strings.ts │ ├── index.browser.iife.ts │ ├── index.browser.ts │ └── index.ts │ ├── tests │ └── jest │ │ ├── aliases-escaping.test.ts │ │ ├── aliases-escaping │ │ ├── expected │ │ │ ├── index.css │ │ │ ├── mangled.css │ │ │ └── mangled.html │ │ └── input │ │ │ ├── index.html │ │ │ └── mangled.html │ │ ├── combined-pages.test.ts │ │ ├── combined-pages │ │ ├── expected │ │ │ ├── about.html │ │ │ ├── index.css │ │ │ └── index.html │ │ └── input │ │ │ ├── about.html │ │ │ └── index.html │ │ ├── components.test.ts │ │ ├── components │ │ ├── expected │ │ │ ├── comment-components.css │ │ │ ├── dynamic-components.css │ │ │ ├── index.css │ │ │ ├── mangle-dynamic-components.css │ │ │ ├── mangle-dynamic-components.html │ │ │ ├── mangle-selectors.css │ │ │ ├── mangle-selectors.html │ │ │ ├── multiple-components.css │ │ │ ├── nested-syntax-mangled.css │ │ │ ├── nested-syntax-mangled.html │ │ │ └── nested-syntax.css │ │ └── input │ │ │ ├── comment-components.html │ │ │ ├── dynamic-components.html │ │ │ ├── index.html │ │ │ ├── mangle-dynamic-components.html │ │ │ ├── mangle-selectors.html │ │ │ ├── multiple-components.html │ │ │ ├── nested-syntax-mangled.html │ │ │ └── nested-syntax.html │ │ ├── content-options.test.ts │ │ ├── content-options │ │ ├── expected │ │ │ └── index.css │ │ └── input │ │ │ └── index.html │ │ ├── custom-selectors.test.ts │ │ ├── custom-selectors │ │ ├── expected │ │ │ ├── duplicate-definition.css │ │ │ ├── index.css │ │ │ └── random-order.css │ │ └── input │ │ │ └── index.html │ │ ├── hooks.test.ts │ │ ├── hooks │ │ ├── expected │ │ │ └── index.css │ │ └── input │ │ │ └── index.html │ │ ├── ignored-areas.test.ts │ │ ├── ignored-areas │ │ ├── expected │ │ │ ├── index.css │ │ │ └── index.html │ │ └── input │ │ │ └── index.html │ │ ├── keyframes.test.ts │ │ ├── keyframes │ │ ├── expected │ │ │ └── index.css │ │ └── input │ │ │ └── index.html │ │ ├── larger-page.test.ts │ │ ├── larger-page │ │ ├── expected │ │ │ └── index.css │ │ └── input │ │ │ └── index.html │ │ ├── macros.test.ts │ │ ├── macros │ │ ├── expected │ │ │ ├── custom-macros.css │ │ │ ├── selectors-areas.css │ │ │ ├── selectors-prefix.css │ │ │ └── single-letter-macros.css │ │ └── input │ │ │ ├── custom-macros.html │ │ │ ├── selectors-areas.html │ │ │ ├── selectors-prefix.html │ │ │ ├── single-letter-macros.html │ │ │ └── svelte-match-area.html │ │ ├── multistep-compilation.test.ts │ │ ├── multistep-compilation │ │ └── expected │ │ │ └── index.css │ │ ├── screens.test.ts │ │ ├── screens │ │ ├── expected │ │ │ ├── index.css │ │ │ └── similar-screens.css │ │ └── input │ │ │ └── index.html │ │ ├── selectors-mangling.test.ts │ │ ├── selectors-mangling │ │ ├── expected │ │ │ ├── chained-classes-from-custom-selector.css │ │ │ ├── chained-classes-from-custom-selector.html │ │ │ ├── components-and-custom-selectors-collision.css │ │ │ ├── components-and-custom-selectors-collision.html │ │ │ ├── escaped-match-area.css │ │ │ ├── escaped-match-area.yaml │ │ │ ├── identical-ignored-areas.html │ │ │ ├── mangle-duplicate-selectors.css │ │ │ ├── mangle-duplicate-selectors.html │ │ │ ├── mangle-single-letter-macros.css │ │ │ ├── mangle-single-letter-macros.html │ │ │ ├── mangle-with-special-characters.css │ │ │ ├── mangle-with-special-characters.html │ │ │ ├── mangled-selectors-prefix.css │ │ │ ├── mangled-selectors-prefix.html │ │ │ ├── nested-selector-areas.css │ │ │ ├── nested-selector-areas.html │ │ │ ├── selectors-areas.html │ │ │ ├── selectors-prefix.css │ │ │ ├── selectors-prefix.html │ │ │ ├── similar-areas-behind-each-other.css │ │ │ ├── similar-areas-behind-each-other.html │ │ │ └── whitespace-removal.html │ │ └── input │ │ │ ├── chained-classes-from-custom-selector.html │ │ │ ├── components-and-custom-selectors-collision.html │ │ │ ├── escaped-match-area.yaml │ │ │ ├── identical-ignored-areas.html │ │ │ ├── mangle-duplicate-selectors.html │ │ │ ├── mangle-single-letter-macros.html │ │ │ ├── mangle-with-special-characters.html │ │ │ ├── mangled-selectors-prefix.html │ │ │ ├── nested-selector-areas.html │ │ │ ├── selectors-areas.html │ │ │ ├── selectors-prefix.html │ │ │ ├── similar-areas-behind-each-other.html │ │ │ └── whitespace-removal.html │ │ ├── variables-and-helpers.test.ts │ │ └── variables-and-helpers │ │ ├── expected │ │ ├── external-variables.css │ │ ├── index.css │ │ ├── scoped-variables.css │ │ └── simple-vars.css │ │ └── input │ │ ├── external-variables.html │ │ ├── index.html │ │ └── simple-vars.html │ └── tools │ ├── default-preset-generator │ ├── browser-properties-collector.js │ ├── index.js │ └── lists │ │ ├── chrome-properties.txt │ │ ├── edge-properties.txt │ │ ├── mozila-properties.txt │ │ ├── opera-properties.txt │ │ └── safari-properties.txt │ └── media-queries-extractor │ ├── index.js │ └── sources │ └── facebook.css ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── scripts ├── build-generate-stats.ts ├── build.ts └── helpers │ ├── esbuild.ts │ ├── index.ts │ └── output-stats.ts ├── stylify-intro-v2.gif ├── tests └── TestUtils.ts └── tsconfig.json /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [Machy8] 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/workflows/tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/.github/workflows/tests.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/.prettierrc.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/babel.config.json -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/codecov.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/package.json -------------------------------------------------------------------------------- /packages/bundler/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/LICENSE -------------------------------------------------------------------------------- /packages/bundler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/README.md -------------------------------------------------------------------------------- /packages/bundler/bundler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/bundler.png -------------------------------------------------------------------------------- /packages/bundler/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/package.json -------------------------------------------------------------------------------- /packages/bundler/playground/astro/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/playground/astro/.gitignore -------------------------------------------------------------------------------- /packages/bundler/playground/astro/astro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/playground/astro/astro.config.js -------------------------------------------------------------------------------- /packages/bundler/playground/astro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/playground/astro/package.json -------------------------------------------------------------------------------- /packages/bundler/playground/astro/server.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/playground/astro/server.mjs -------------------------------------------------------------------------------- /packages/bundler/playground/astro/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/playground/astro/src/README.md -------------------------------------------------------------------------------- /packages/bundler/playground/astro/src/components/title.astro: -------------------------------------------------------------------------------- 1 |

Title!

6 | -------------------------------------------------------------------------------- /packages/bundler/playground/astro/src/env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /packages/bundler/playground/astro/src/layouts/Layout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/playground/astro/src/layouts/Layout.astro -------------------------------------------------------------------------------- /packages/bundler/playground/astro/src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/playground/astro/src/pages/index.astro -------------------------------------------------------------------------------- /packages/bundler/playground/astro/src/pages/second.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/playground/astro/src/pages/second.astro -------------------------------------------------------------------------------- /packages/bundler/playground/astro/src/styles/stylify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/playground/astro/src/styles/stylify.css -------------------------------------------------------------------------------- /packages/bundler/playground/astro/stylify.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/playground/astro/stylify.config.js -------------------------------------------------------------------------------- /packages/bundler/playground/astro/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "astro/tsconfigs/base" 3 | } 4 | -------------------------------------------------------------------------------- /packages/bundler/playground/astro/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/playground/astro/vite.config.js -------------------------------------------------------------------------------- /packages/bundler/playground/nuxt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/playground/nuxt/README.md -------------------------------------------------------------------------------- /packages/bundler/playground/nuxt/app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/playground/nuxt/app.vue -------------------------------------------------------------------------------- /packages/bundler/playground/nuxt/content/hello-world.md: -------------------------------------------------------------------------------- 1 |
Nuxt module playground!
2 | -------------------------------------------------------------------------------- /packages/bundler/playground/nuxt/nuxt.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/playground/nuxt/nuxt.config.ts -------------------------------------------------------------------------------- /packages/bundler/playground/nuxt/stylify.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/playground/nuxt/stylify.config.js -------------------------------------------------------------------------------- /packages/bundler/playground/vanillajs/.gitignore: -------------------------------------------------------------------------------- 1 | *.css 2 | -------------------------------------------------------------------------------- /packages/bundler/playground/vanillajs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/playground/vanillajs/README.md -------------------------------------------------------------------------------- /packages/bundler/playground/vanillajs/bundles.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/playground/vanillajs/bundles.mjs -------------------------------------------------------------------------------- /packages/bundler/playground/vanillajs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/playground/vanillajs/package.json -------------------------------------------------------------------------------- /packages/bundler/playground/vanillajs/src/index.html: -------------------------------------------------------------------------------- 1 |
Hello World!
2 | -------------------------------------------------------------------------------- /packages/bundler/playground/vanillajs/stylify.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/playground/vanillajs/stylify.config.mjs -------------------------------------------------------------------------------- /packages/bundler/playground/webpack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/playground/webpack/README.md -------------------------------------------------------------------------------- /packages/bundler/playground/webpack/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/playground/webpack/index.html -------------------------------------------------------------------------------- /packages/bundler/playground/webpack/index.js: -------------------------------------------------------------------------------- 1 | import './index.css'; 2 | -------------------------------------------------------------------------------- /packages/bundler/playground/webpack/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/playground/webpack/package.json -------------------------------------------------------------------------------- /packages/bundler/playground/webpack/stylify.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/playground/webpack/stylify.config.js -------------------------------------------------------------------------------- /packages/bundler/playground/webpack/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/playground/webpack/webpack.config.js -------------------------------------------------------------------------------- /packages/bundler/src/Bundler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/src/Bundler.ts -------------------------------------------------------------------------------- /packages/bundler/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Bundler'; 2 | -------------------------------------------------------------------------------- /packages/bundler/tests/jest/bundle-specific-compiler-config.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/bundle-specific-compiler-config.test.ts -------------------------------------------------------------------------------- /packages/bundler/tests/jest/bundle-specific-compiler-config/expected/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/bundle-specific-compiler-config/expected/index.css -------------------------------------------------------------------------------- /packages/bundler/tests/jest/bundle-specific-compiler-config/expected/second.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/bundle-specific-compiler-config/expected/second.css -------------------------------------------------------------------------------- /packages/bundler/tests/jest/bundle-specific-compiler-config/input/index.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /packages/bundler/tests/jest/bundle-specific-compiler-config/input/second.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /packages/bundler/tests/jest/css-layers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/css-layers.test.ts -------------------------------------------------------------------------------- /packages/bundler/tests/jest/css-layers/expected/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/css-layers/expected/layout.css -------------------------------------------------------------------------------- /packages/bundler/tests/jest/css-layers/expected/page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/css-layers/expected/page.css -------------------------------------------------------------------------------- /packages/bundler/tests/jest/css-layers/expected/stylify-css-layers.css: -------------------------------------------------------------------------------- 1 | @layer layout,page; 2 | -------------------------------------------------------------------------------- /packages/bundler/tests/jest/css-layers/expected/without-export.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/css-layers/expected/without-export.css -------------------------------------------------------------------------------- /packages/bundler/tests/jest/css-layers/input/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/css-layers/input/layout.html -------------------------------------------------------------------------------- /packages/bundler/tests/jest/css-layers/input/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/css-layers/input/page.html -------------------------------------------------------------------------------- /packages/bundler/tests/jest/css-layers/input/without-export.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /packages/bundler/tests/jest/hooks.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/hooks.test.ts -------------------------------------------------------------------------------- /packages/bundler/tests/jest/hooks/expected/index.css: -------------------------------------------------------------------------------- 1 | /* File content changed during build */ 2 | .a{ 3 | color: red 4 | } 5 | -------------------------------------------------------------------------------- /packages/bundler/tests/jest/hooks/expected/index.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | -------------------------------------------------------------------------------- /packages/bundler/tests/jest/hooks/expected/second.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/hooks/expected/second.css -------------------------------------------------------------------------------- /packages/bundler/tests/jest/hooks/expected/second.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /packages/bundler/tests/jest/hooks/input/default.twig: -------------------------------------------------------------------------------- 1 | {% extends "layout.twig" %} 2 | -------------------------------------------------------------------------------- /packages/bundler/tests/jest/hooks/input/index.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /packages/bundler/tests/jest/hooks/input/layout.twig: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /packages/bundler/tests/jest/hooks/input/second.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /packages/bundler/tests/jest/logs-dir.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/logs-dir.test.ts -------------------------------------------------------------------------------- /packages/bundler/tests/jest/logs-dir/expected/index-error.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/logs-dir/expected/index-error.css -------------------------------------------------------------------------------- /packages/bundler/tests/jest/logs-dir/expected/stylify-bundler-error.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/logs-dir/expected/stylify-bundler-error.txt -------------------------------------------------------------------------------- /packages/bundler/tests/jest/logs-dir/input/index.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /packages/bundler/tests/jest/multiple-files-same-selectors.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/multiple-files-same-selectors.test.ts -------------------------------------------------------------------------------- /packages/bundler/tests/jest/multiple-files-same-selectors/expected/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/multiple-files-same-selectors/expected/index.css -------------------------------------------------------------------------------- /packages/bundler/tests/jest/multiple-files-same-selectors/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/multiple-files-same-selectors/expected/index.html -------------------------------------------------------------------------------- /packages/bundler/tests/jest/multiple-files-same-selectors/expected/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/multiple-files-same-selectors/expected/layout.css -------------------------------------------------------------------------------- /packages/bundler/tests/jest/multiple-files-same-selectors/expected/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/multiple-files-same-selectors/expected/layout.html -------------------------------------------------------------------------------- /packages/bundler/tests/jest/multiple-files-same-selectors/input/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/multiple-files-same-selectors/input/index.html -------------------------------------------------------------------------------- /packages/bundler/tests/jest/multiple-files-same-selectors/input/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/multiple-files-same-selectors/input/layout.html -------------------------------------------------------------------------------- /packages/bundler/tests/jest/multiple-files.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/multiple-files.test.ts -------------------------------------------------------------------------------- /packages/bundler/tests/jest/multiple-files/expected/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/multiple-files/expected/index.css -------------------------------------------------------------------------------- /packages/bundler/tests/jest/multiple-files/expected/index.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /packages/bundler/tests/jest/multiple-files/expected/index/component/component.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /packages/bundler/tests/jest/multiple-files/expected/index/secondary.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /packages/bundler/tests/jest/multiple-files/expected/second.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/multiple-files/expected/second.css -------------------------------------------------------------------------------- /packages/bundler/tests/jest/multiple-files/expected/second.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/multiple-files/expected/second.html -------------------------------------------------------------------------------- /packages/bundler/tests/jest/multiple-files/expected/second/html.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/multiple-files/expected/second/html.html -------------------------------------------------------------------------------- /packages/bundler/tests/jest/multiple-files/expected/second/nette.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/multiple-files/expected/second/nette.latte -------------------------------------------------------------------------------- /packages/bundler/tests/jest/multiple-files/expected/second/symfony.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/multiple-files/expected/second/symfony.twig -------------------------------------------------------------------------------- /packages/bundler/tests/jest/multiple-files/expected/second/vue.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/multiple-files/expected/second/vue.vue -------------------------------------------------------------------------------- /packages/bundler/tests/jest/multiple-files/expected/second/vuejs/component.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/multiple-files/expected/second/vuejs/component.vue -------------------------------------------------------------------------------- /packages/bundler/tests/jest/multiple-files/input/ignored.md: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /packages/bundler/tests/jest/multiple-files/input/index.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /packages/bundler/tests/jest/multiple-files/input/index/component/component.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /packages/bundler/tests/jest/multiple-files/input/index/secondary.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /packages/bundler/tests/jest/multiple-files/input/second.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/multiple-files/input/second.html -------------------------------------------------------------------------------- /packages/bundler/tests/jest/multiple-files/input/second/html.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/multiple-files/input/second/html.html -------------------------------------------------------------------------------- /packages/bundler/tests/jest/multiple-files/input/second/nette.latte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/multiple-files/input/second/nette.latte -------------------------------------------------------------------------------- /packages/bundler/tests/jest/multiple-files/input/second/symfony.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/multiple-files/input/second/symfony.twig -------------------------------------------------------------------------------- /packages/bundler/tests/jest/multiple-files/input/second/vue.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/multiple-files/input/second/vue.vue -------------------------------------------------------------------------------- /packages/bundler/tests/jest/multiple-files/input/second/vuejs/component.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/multiple-files/input/second/vuejs/component.vue -------------------------------------------------------------------------------- /packages/bundler/tests/jest/normalized-path.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/normalized-path.test.ts -------------------------------------------------------------------------------- /packages/bundler/tests/jest/normalized-path/expected/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/normalized-path/expected/index.css -------------------------------------------------------------------------------- /packages/bundler/tests/jest/normalized-path/input/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/normalized-path/input/index.html -------------------------------------------------------------------------------- /packages/bundler/tests/jest/normalized-path/input/nested/dir/part.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /packages/bundler/tests/jest/selectors-areas.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/selectors-areas.test.ts -------------------------------------------------------------------------------- /packages/bundler/tests/jest/selectors-areas/expected/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/selectors-areas/expected/index.css -------------------------------------------------------------------------------- /packages/bundler/tests/jest/selectors-areas/input/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/selectors-areas/input/index.html -------------------------------------------------------------------------------- /packages/bundler/tests/jest/single-file.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/single-file.test.ts -------------------------------------------------------------------------------- /packages/bundler/tests/jest/single-file/expected/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/single-file/expected/index.css -------------------------------------------------------------------------------- /packages/bundler/tests/jest/single-file/expected/second.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/single-file/expected/second.css -------------------------------------------------------------------------------- /packages/bundler/tests/jest/single-file/expected/second.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/single-file/expected/second.html -------------------------------------------------------------------------------- /packages/bundler/tests/jest/single-file/input/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/single-file/input/index.html -------------------------------------------------------------------------------- /packages/bundler/tests/jest/single-file/input/second.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/single-file/input/second.html -------------------------------------------------------------------------------- /packages/bundler/tests/jest/special-chars-in-dirname.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/special-chars-in-dirname.test.ts -------------------------------------------------------------------------------- /packages/bundler/tests/jest/special-chars-in-dirname/expected/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/special-chars-in-dirname/expected/index.css -------------------------------------------------------------------------------- /packages/bundler/tests/jest/special-chars-in-dirname/input/(themes)/(default)/dir/(nested)/another.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /packages/bundler/tests/jest/special-chars-in-dirname/input/(themes)/(default)/dir/test.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /packages/bundler/tests/jest/special-chars-in-dirname/input/(themes)/(default)/index.svelte: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /packages/bundler/tests/jest/special-chars-in-dirname/input/(themes)/index.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /packages/bundler/tests/jest/vars-export.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/vars-export.test.ts -------------------------------------------------------------------------------- /packages/bundler/tests/jest/vars-export/input/index.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /packages/bundler/tests/jest/watch.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/watch.test.ts -------------------------------------------------------------------------------- /packages/bundler/tests/jest/watch/expected/after-config-modification.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/watch/expected/after-config-modification.css -------------------------------------------------------------------------------- /packages/bundler/tests/jest/watch/expected/before-config-modification.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/watch/expected/before-config-modification.css -------------------------------------------------------------------------------- /packages/bundler/tests/jest/watch/input/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/watch/input/index.html -------------------------------------------------------------------------------- /packages/bundler/tests/jest/watch/input/stylify.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/bundler/tests/jest/watch/input/stylify.config.js -------------------------------------------------------------------------------- /packages/stylify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/LICENSE -------------------------------------------------------------------------------- /packages/stylify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/README.md -------------------------------------------------------------------------------- /packages/stylify/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/package.json -------------------------------------------------------------------------------- /packages/stylify/playground/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/playground/index.html -------------------------------------------------------------------------------- /packages/stylify/playground/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/playground/index.ts -------------------------------------------------------------------------------- /packages/stylify/src/Compiler/CompilationResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/src/Compiler/CompilationResult.ts -------------------------------------------------------------------------------- /packages/stylify/src/Compiler/Compiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/src/Compiler/Compiler.ts -------------------------------------------------------------------------------- /packages/stylify/src/Compiler/CssRecord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/src/Compiler/CssRecord.ts -------------------------------------------------------------------------------- /packages/stylify/src/Compiler/CustomSelector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/src/Compiler/CustomSelector.ts -------------------------------------------------------------------------------- /packages/stylify/src/Compiler/MacroMatch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/src/Compiler/MacroMatch.ts -------------------------------------------------------------------------------- /packages/stylify/src/Compiler/MinifiedSelectorGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/src/Compiler/MinifiedSelectorGenerator.ts -------------------------------------------------------------------------------- /packages/stylify/src/Compiler/RegExpMatch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/src/Compiler/RegExpMatch.ts -------------------------------------------------------------------------------- /packages/stylify/src/Compiler/ScreensSorter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/src/Compiler/ScreensSorter.ts -------------------------------------------------------------------------------- /packages/stylify/src/Compiler/defaultPreset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/src/Compiler/defaultPreset.ts -------------------------------------------------------------------------------- /packages/stylify/src/Compiler/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/src/Compiler/index.ts -------------------------------------------------------------------------------- /packages/stylify/src/Configurator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/src/Configurator.ts -------------------------------------------------------------------------------- /packages/stylify/src/Hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/src/Hooks.ts -------------------------------------------------------------------------------- /packages/stylify/src/Runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/src/Runtime.ts -------------------------------------------------------------------------------- /packages/stylify/src/Utilities/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/src/Utilities/colors.ts -------------------------------------------------------------------------------- /packages/stylify/src/Utilities/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/src/Utilities/index.ts -------------------------------------------------------------------------------- /packages/stylify/src/Utilities/numbers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/src/Utilities/numbers.ts -------------------------------------------------------------------------------- /packages/stylify/src/Utilities/objects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/src/Utilities/objects.ts -------------------------------------------------------------------------------- /packages/stylify/src/Utilities/strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/src/Utilities/strings.ts -------------------------------------------------------------------------------- /packages/stylify/src/index.browser.iife.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/src/index.browser.iife.ts -------------------------------------------------------------------------------- /packages/stylify/src/index.browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/src/index.browser.ts -------------------------------------------------------------------------------- /packages/stylify/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/src/index.ts -------------------------------------------------------------------------------- /packages/stylify/tests/jest/aliases-escaping.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/aliases-escaping.test.ts -------------------------------------------------------------------------------- /packages/stylify/tests/jest/aliases-escaping/expected/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/aliases-escaping/expected/index.css -------------------------------------------------------------------------------- /packages/stylify/tests/jest/aliases-escaping/expected/mangled.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/aliases-escaping/expected/mangled.css -------------------------------------------------------------------------------- /packages/stylify/tests/jest/aliases-escaping/expected/mangled.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /packages/stylify/tests/jest/aliases-escaping/input/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/aliases-escaping/input/index.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/aliases-escaping/input/mangled.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/aliases-escaping/input/mangled.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/combined-pages.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/combined-pages.test.ts -------------------------------------------------------------------------------- /packages/stylify/tests/jest/combined-pages/expected/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/combined-pages/expected/about.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/combined-pages/expected/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/combined-pages/expected/index.css -------------------------------------------------------------------------------- /packages/stylify/tests/jest/combined-pages/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/combined-pages/expected/index.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/combined-pages/input/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/combined-pages/input/about.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/combined-pages/input/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/combined-pages/input/index.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/components.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/components.test.ts -------------------------------------------------------------------------------- /packages/stylify/tests/jest/components/expected/comment-components.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/components/expected/comment-components.css -------------------------------------------------------------------------------- /packages/stylify/tests/jest/components/expected/dynamic-components.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/components/expected/dynamic-components.css -------------------------------------------------------------------------------- /packages/stylify/tests/jest/components/expected/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/components/expected/index.css -------------------------------------------------------------------------------- /packages/stylify/tests/jest/components/expected/mangle-dynamic-components.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/components/expected/mangle-dynamic-components.css -------------------------------------------------------------------------------- /packages/stylify/tests/jest/components/expected/mangle-dynamic-components.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/components/expected/mangle-dynamic-components.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/components/expected/mangle-selectors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/components/expected/mangle-selectors.css -------------------------------------------------------------------------------- /packages/stylify/tests/jest/components/expected/mangle-selectors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/components/expected/mangle-selectors.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/components/expected/multiple-components.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/components/expected/multiple-components.css -------------------------------------------------------------------------------- /packages/stylify/tests/jest/components/expected/nested-syntax-mangled.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/components/expected/nested-syntax-mangled.css -------------------------------------------------------------------------------- /packages/stylify/tests/jest/components/expected/nested-syntax-mangled.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/components/expected/nested-syntax-mangled.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/components/expected/nested-syntax.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/components/expected/nested-syntax.css -------------------------------------------------------------------------------- /packages/stylify/tests/jest/components/input/comment-components.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/components/input/comment-components.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/components/input/dynamic-components.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/components/input/dynamic-components.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/components/input/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/components/input/index.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/components/input/mangle-dynamic-components.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/components/input/mangle-dynamic-components.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/components/input/mangle-selectors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/components/input/mangle-selectors.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/components/input/multiple-components.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/components/input/multiple-components.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/components/input/nested-syntax-mangled.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/components/input/nested-syntax-mangled.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/components/input/nested-syntax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/components/input/nested-syntax.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/content-options.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/content-options.test.ts -------------------------------------------------------------------------------- /packages/stylify/tests/jest/content-options/expected/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/content-options/expected/index.css -------------------------------------------------------------------------------- /packages/stylify/tests/jest/content-options/input/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/content-options/input/index.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/custom-selectors.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/custom-selectors.test.ts -------------------------------------------------------------------------------- /packages/stylify/tests/jest/custom-selectors/expected/duplicate-definition.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/custom-selectors/expected/duplicate-definition.css -------------------------------------------------------------------------------- /packages/stylify/tests/jest/custom-selectors/expected/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/custom-selectors/expected/index.css -------------------------------------------------------------------------------- /packages/stylify/tests/jest/custom-selectors/expected/random-order.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/custom-selectors/expected/random-order.css -------------------------------------------------------------------------------- /packages/stylify/tests/jest/custom-selectors/input/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/custom-selectors/input/index.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/hooks.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/hooks.test.ts -------------------------------------------------------------------------------- /packages/stylify/tests/jest/hooks/expected/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/hooks/expected/index.css -------------------------------------------------------------------------------- /packages/stylify/tests/jest/hooks/input/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/hooks/input/index.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/ignored-areas.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/ignored-areas.test.ts -------------------------------------------------------------------------------- /packages/stylify/tests/jest/ignored-areas/expected/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/ignored-areas/expected/index.css -------------------------------------------------------------------------------- /packages/stylify/tests/jest/ignored-areas/expected/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/ignored-areas/expected/index.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/ignored-areas/input/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/ignored-areas/input/index.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/keyframes.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/keyframes.test.ts -------------------------------------------------------------------------------- /packages/stylify/tests/jest/keyframes/expected/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/keyframes/expected/index.css -------------------------------------------------------------------------------- /packages/stylify/tests/jest/keyframes/input/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/keyframes/input/index.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/larger-page.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/larger-page.test.ts -------------------------------------------------------------------------------- /packages/stylify/tests/jest/larger-page/expected/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/larger-page/expected/index.css -------------------------------------------------------------------------------- /packages/stylify/tests/jest/larger-page/input/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/larger-page/input/index.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/macros.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/macros.test.ts -------------------------------------------------------------------------------- /packages/stylify/tests/jest/macros/expected/custom-macros.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/macros/expected/custom-macros.css -------------------------------------------------------------------------------- /packages/stylify/tests/jest/macros/expected/selectors-areas.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/macros/expected/selectors-areas.css -------------------------------------------------------------------------------- /packages/stylify/tests/jest/macros/expected/selectors-prefix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/macros/expected/selectors-prefix.css -------------------------------------------------------------------------------- /packages/stylify/tests/jest/macros/expected/single-letter-macros.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/macros/expected/single-letter-macros.css -------------------------------------------------------------------------------- /packages/stylify/tests/jest/macros/input/custom-macros.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/macros/input/custom-macros.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/macros/input/selectors-areas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/macros/input/selectors-areas.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/macros/input/selectors-prefix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/macros/input/selectors-prefix.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/macros/input/single-letter-macros.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/macros/input/single-letter-macros.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/macros/input/svelte-match-area.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/macros/input/svelte-match-area.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/multistep-compilation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/multistep-compilation.test.ts -------------------------------------------------------------------------------- /packages/stylify/tests/jest/multistep-compilation/expected/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/multistep-compilation/expected/index.css -------------------------------------------------------------------------------- /packages/stylify/tests/jest/screens.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/screens.test.ts -------------------------------------------------------------------------------- /packages/stylify/tests/jest/screens/expected/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/screens/expected/index.css -------------------------------------------------------------------------------- /packages/stylify/tests/jest/screens/expected/similar-screens.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/screens/expected/similar-screens.css -------------------------------------------------------------------------------- /packages/stylify/tests/jest/screens/input/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/screens/input/index.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/selectors-mangling.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/selectors-mangling.test.ts -------------------------------------------------------------------------------- /packages/stylify/tests/jest/selectors-mangling/expected/chained-classes-from-custom-selector.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/selectors-mangling/expected/chained-classes-from-custom-selector.css -------------------------------------------------------------------------------- /packages/stylify/tests/jest/selectors-mangling/expected/chained-classes-from-custom-selector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/selectors-mangling/expected/chained-classes-from-custom-selector.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/selectors-mangling/expected/components-and-custom-selectors-collision.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/selectors-mangling/expected/components-and-custom-selectors-collision.css -------------------------------------------------------------------------------- /packages/stylify/tests/jest/selectors-mangling/expected/components-and-custom-selectors-collision.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /packages/stylify/tests/jest/selectors-mangling/expected/escaped-match-area.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/selectors-mangling/expected/escaped-match-area.css -------------------------------------------------------------------------------- /packages/stylify/tests/jest/selectors-mangling/expected/escaped-match-area.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/selectors-mangling/expected/escaped-match-area.yaml -------------------------------------------------------------------------------- /packages/stylify/tests/jest/selectors-mangling/expected/identical-ignored-areas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/selectors-mangling/expected/identical-ignored-areas.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/selectors-mangling/expected/mangle-duplicate-selectors.css: -------------------------------------------------------------------------------- 1 | .a{justify-content:space-between} 2 | -------------------------------------------------------------------------------- /packages/stylify/tests/jest/selectors-mangling/expected/mangle-duplicate-selectors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/selectors-mangling/expected/mangle-duplicate-selectors.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/selectors-mangling/expected/mangle-single-letter-macros.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/selectors-mangling/expected/mangle-single-letter-macros.css -------------------------------------------------------------------------------- /packages/stylify/tests/jest/selectors-mangling/expected/mangle-single-letter-macros.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/selectors-mangling/expected/mangle-single-letter-macros.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/selectors-mangling/expected/mangle-with-special-characters.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/selectors-mangling/expected/mangle-with-special-characters.css -------------------------------------------------------------------------------- /packages/stylify/tests/jest/selectors-mangling/expected/mangle-with-special-characters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/selectors-mangling/expected/mangle-with-special-characters.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/selectors-mangling/expected/mangled-selectors-prefix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/selectors-mangling/expected/mangled-selectors-prefix.css -------------------------------------------------------------------------------- /packages/stylify/tests/jest/selectors-mangling/expected/mangled-selectors-prefix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/selectors-mangling/expected/mangled-selectors-prefix.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/selectors-mangling/expected/nested-selector-areas.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/selectors-mangling/expected/nested-selector-areas.css -------------------------------------------------------------------------------- /packages/stylify/tests/jest/selectors-mangling/expected/nested-selector-areas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/selectors-mangling/expected/nested-selector-areas.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/selectors-mangling/expected/selectors-areas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/selectors-mangling/expected/selectors-areas.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/selectors-mangling/expected/selectors-prefix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/selectors-mangling/expected/selectors-prefix.css -------------------------------------------------------------------------------- /packages/stylify/tests/jest/selectors-mangling/expected/selectors-prefix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/selectors-mangling/expected/selectors-prefix.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/selectors-mangling/expected/similar-areas-behind-each-other.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/selectors-mangling/expected/similar-areas-behind-each-other.css -------------------------------------------------------------------------------- /packages/stylify/tests/jest/selectors-mangling/expected/similar-areas-behind-each-other.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/selectors-mangling/expected/similar-areas-behind-each-other.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/selectors-mangling/expected/whitespace-removal.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | -------------------------------------------------------------------------------- /packages/stylify/tests/jest/selectors-mangling/input/chained-classes-from-custom-selector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/selectors-mangling/input/chained-classes-from-custom-selector.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/selectors-mangling/input/components-and-custom-selectors-collision.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/selectors-mangling/input/components-and-custom-selectors-collision.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/selectors-mangling/input/escaped-match-area.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/selectors-mangling/input/escaped-match-area.yaml -------------------------------------------------------------------------------- /packages/stylify/tests/jest/selectors-mangling/input/identical-ignored-areas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/selectors-mangling/input/identical-ignored-areas.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/selectors-mangling/input/mangle-duplicate-selectors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/selectors-mangling/input/mangle-duplicate-selectors.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/selectors-mangling/input/mangle-single-letter-macros.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/selectors-mangling/input/mangle-single-letter-macros.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/selectors-mangling/input/mangle-with-special-characters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/selectors-mangling/input/mangle-with-special-characters.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/selectors-mangling/input/mangled-selectors-prefix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/selectors-mangling/input/mangled-selectors-prefix.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/selectors-mangling/input/nested-selector-areas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/selectors-mangling/input/nested-selector-areas.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/selectors-mangling/input/selectors-areas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/selectors-mangling/input/selectors-areas.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/selectors-mangling/input/selectors-prefix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/selectors-mangling/input/selectors-prefix.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/selectors-mangling/input/similar-areas-behind-each-other.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/selectors-mangling/input/similar-areas-behind-each-other.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/selectors-mangling/input/whitespace-removal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/selectors-mangling/input/whitespace-removal.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/variables-and-helpers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/variables-and-helpers.test.ts -------------------------------------------------------------------------------- /packages/stylify/tests/jest/variables-and-helpers/expected/external-variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/variables-and-helpers/expected/external-variables.css -------------------------------------------------------------------------------- /packages/stylify/tests/jest/variables-and-helpers/expected/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/variables-and-helpers/expected/index.css -------------------------------------------------------------------------------- /packages/stylify/tests/jest/variables-and-helpers/expected/scoped-variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/variables-and-helpers/expected/scoped-variables.css -------------------------------------------------------------------------------- /packages/stylify/tests/jest/variables-and-helpers/expected/simple-vars.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/variables-and-helpers/expected/simple-vars.css -------------------------------------------------------------------------------- /packages/stylify/tests/jest/variables-and-helpers/input/external-variables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/variables-and-helpers/input/external-variables.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/variables-and-helpers/input/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/variables-and-helpers/input/index.html -------------------------------------------------------------------------------- /packages/stylify/tests/jest/variables-and-helpers/input/simple-vars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tests/jest/variables-and-helpers/input/simple-vars.html -------------------------------------------------------------------------------- /packages/stylify/tools/default-preset-generator/browser-properties-collector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tools/default-preset-generator/browser-properties-collector.js -------------------------------------------------------------------------------- /packages/stylify/tools/default-preset-generator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tools/default-preset-generator/index.js -------------------------------------------------------------------------------- /packages/stylify/tools/default-preset-generator/lists/chrome-properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tools/default-preset-generator/lists/chrome-properties.txt -------------------------------------------------------------------------------- /packages/stylify/tools/default-preset-generator/lists/edge-properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tools/default-preset-generator/lists/edge-properties.txt -------------------------------------------------------------------------------- /packages/stylify/tools/default-preset-generator/lists/mozila-properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tools/default-preset-generator/lists/mozila-properties.txt -------------------------------------------------------------------------------- /packages/stylify/tools/default-preset-generator/lists/opera-properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tools/default-preset-generator/lists/opera-properties.txt -------------------------------------------------------------------------------- /packages/stylify/tools/default-preset-generator/lists/safari-properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tools/default-preset-generator/lists/safari-properties.txt -------------------------------------------------------------------------------- /packages/stylify/tools/media-queries-extractor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tools/media-queries-extractor/index.js -------------------------------------------------------------------------------- /packages/stylify/tools/media-queries-extractor/sources/facebook.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/packages/stylify/tools/media-queries-extractor/sources/facebook.css -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /scripts/build-generate-stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/scripts/build-generate-stats.ts -------------------------------------------------------------------------------- /scripts/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/scripts/build.ts -------------------------------------------------------------------------------- /scripts/helpers/esbuild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/scripts/helpers/esbuild.ts -------------------------------------------------------------------------------- /scripts/helpers/index.ts: -------------------------------------------------------------------------------- 1 | export * from './esbuild'; 2 | -------------------------------------------------------------------------------- /scripts/helpers/output-stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/scripts/helpers/output-stats.ts -------------------------------------------------------------------------------- /stylify-intro-v2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/stylify-intro-v2.gif -------------------------------------------------------------------------------- /tests/TestUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/tests/TestUtils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stylify/packages/HEAD/tsconfig.json --------------------------------------------------------------------------------