├── .github └── workflows │ └── main.yml ├── .gitignore ├── .npmrc ├── LICENSE ├── package.json ├── readme.md ├── rollup.config.js ├── src ├── declarations.ts ├── diagnostics.ts ├── index.ts └── util.ts ├── test ├── index.spec.ts ├── jest.preprocessor.js └── utils.spec.ts ├── tsconfig.json └── tslint.json /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencil-community/stencil-postcss/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | *.swp 4 | .DS_Store 5 | coverage/ -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencil-community/stencil-postcss/HEAD/LICENSE -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencil-community/stencil-postcss/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencil-community/stencil-postcss/HEAD/readme.md -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencil-community/stencil-postcss/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/declarations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencil-community/stencil-postcss/HEAD/src/declarations.ts -------------------------------------------------------------------------------- /src/diagnostics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencil-community/stencil-postcss/HEAD/src/diagnostics.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencil-community/stencil-postcss/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencil-community/stencil-postcss/HEAD/src/util.ts -------------------------------------------------------------------------------- /test/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencil-community/stencil-postcss/HEAD/test/index.spec.ts -------------------------------------------------------------------------------- /test/jest.preprocessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencil-community/stencil-postcss/HEAD/test/jest.preprocessor.js -------------------------------------------------------------------------------- /test/utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencil-community/stencil-postcss/HEAD/test/utils.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stencil-community/stencil-postcss/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "tslint-ionic-rules" 3 | } 4 | --------------------------------------------------------------------------------