├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml ├── ionic-issue-bot.yml └── workflows │ ├── build.yml │ ├── main.yml │ ├── publish-npm.yml │ ├── release-dev.yml │ ├── release-orchestrator.yml │ └── release-production.yml ├── .gitignore ├── .nvmrc ├── CONTRIBUTING.md ├── LICENSE ├── package.json ├── readme.md ├── rollup.config.mjs ├── src ├── declarations.ts ├── diagnostics.ts ├── index.ts └── util.ts ├── test ├── build.spec.ts ├── fixtures │ ├── sass │ │ ├── test-a.sass │ │ ├── test-b.sass │ │ ├── test-c.sass │ │ └── variables.sass │ └── scss │ │ ├── test-a.scss │ │ ├── test-b.scss │ │ ├── test-c.scss │ │ └── variables.scss ├── jest.preprocessor.js └── utils.spec.ts └── tsconfig.json /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/sass/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/sass/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/sass/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/sass/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/sass/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/sass/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/ionic-issue-bot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/sass/HEAD/.github/ionic-issue-bot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/sass/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/sass/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/publish-npm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/sass/HEAD/.github/workflows/publish-npm.yml -------------------------------------------------------------------------------- /.github/workflows/release-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/sass/HEAD/.github/workflows/release-dev.yml -------------------------------------------------------------------------------- /.github/workflows/release-orchestrator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/sass/HEAD/.github/workflows/release-orchestrator.yml -------------------------------------------------------------------------------- /.github/workflows/release-production.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/sass/HEAD/.github/workflows/release-production.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/sass/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v22.14.0 -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/sass/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/sass/HEAD/LICENSE -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/sass/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/sass/HEAD/readme.md -------------------------------------------------------------------------------- /rollup.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/sass/HEAD/rollup.config.mjs -------------------------------------------------------------------------------- /src/declarations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/sass/HEAD/src/declarations.ts -------------------------------------------------------------------------------- /src/diagnostics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/sass/HEAD/src/diagnostics.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/sass/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/sass/HEAD/src/util.ts -------------------------------------------------------------------------------- /test/build.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/sass/HEAD/test/build.spec.ts -------------------------------------------------------------------------------- /test/fixtures/sass/test-a.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/sass/HEAD/test/fixtures/sass/test-a.sass -------------------------------------------------------------------------------- /test/fixtures/sass/test-b.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/sass/HEAD/test/fixtures/sass/test-b.sass -------------------------------------------------------------------------------- /test/fixtures/sass/test-c.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/sass/HEAD/test/fixtures/sass/test-c.sass -------------------------------------------------------------------------------- /test/fixtures/sass/variables.sass: -------------------------------------------------------------------------------- 1 | $color: red 2 | -------------------------------------------------------------------------------- /test/fixtures/scss/test-a.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/sass/HEAD/test/fixtures/scss/test-a.scss -------------------------------------------------------------------------------- /test/fixtures/scss/test-b.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/sass/HEAD/test/fixtures/scss/test-b.scss -------------------------------------------------------------------------------- /test/fixtures/scss/test-c.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/sass/HEAD/test/fixtures/scss/test-c.scss -------------------------------------------------------------------------------- /test/fixtures/scss/variables.scss: -------------------------------------------------------------------------------- 1 | $color: red; -------------------------------------------------------------------------------- /test/jest.preprocessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/sass/HEAD/test/jest.preprocessor.js -------------------------------------------------------------------------------- /test/utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/sass/HEAD/test/utils.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stenciljs/sass/HEAD/tsconfig.json --------------------------------------------------------------------------------