├── .editorconfig ├── .github └── workflows │ └── test.yml ├── .gitignore ├── .gogenrc.js ├── .npmignore ├── CHANGELOG.md ├── README.md ├── cli.js ├── package.json ├── pnpm-lock.yaml └── template ├── .github └── workflows │ └── test.yml ├── .t.editorconfig ├── .t.gitignore ├── .t.npmignore ├── CHANGELOG.md ├── LICENSE.t ├── README.t.md ├── index.t.js ├── index.test.t.js └── package.t.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postcss/postcss-plugin-boilerplate/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postcss/postcss-plugin-boilerplate/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | 3 | coverage/ 4 | -------------------------------------------------------------------------------- /.gogenrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postcss/postcss-plugin-boilerplate/HEAD/.gogenrc.js -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | pnpm-lock.yaml 2 | 3 | .editorconfig 4 | .github/ 5 | coverage/ 6 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postcss/postcss-plugin-boilerplate/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postcss/postcss-plugin-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postcss/postcss-plugin-boilerplate/HEAD/cli.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postcss/postcss-plugin-boilerplate/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postcss/postcss-plugin-boilerplate/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /template/.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postcss/postcss-plugin-boilerplate/HEAD/template/.github/workflows/test.yml -------------------------------------------------------------------------------- /template/.t.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postcss/postcss-plugin-boilerplate/HEAD/template/.t.editorconfig -------------------------------------------------------------------------------- /template/.t.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postcss/postcss-plugin-boilerplate/HEAD/template/.t.gitignore -------------------------------------------------------------------------------- /template/.t.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postcss/postcss-plugin-boilerplate/HEAD/template/.t.npmignore -------------------------------------------------------------------------------- /template/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postcss/postcss-plugin-boilerplate/HEAD/template/CHANGELOG.md -------------------------------------------------------------------------------- /template/LICENSE.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postcss/postcss-plugin-boilerplate/HEAD/template/LICENSE.t -------------------------------------------------------------------------------- /template/README.t.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postcss/postcss-plugin-boilerplate/HEAD/template/README.t.md -------------------------------------------------------------------------------- /template/index.t.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postcss/postcss-plugin-boilerplate/HEAD/template/index.t.js -------------------------------------------------------------------------------- /template/index.test.t.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postcss/postcss-plugin-boilerplate/HEAD/template/index.test.t.js -------------------------------------------------------------------------------- /template/package.t.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/postcss/postcss-plugin-boilerplate/HEAD/template/package.t.json --------------------------------------------------------------------------------