├── .clintonrc.json ├── .editorconfig ├── .github ├── contributing.md ├── funding.yml └── workflows │ └── nodejs.yml ├── .gitignore ├── .huskyrc ├── .npmignore ├── .nycrc ├── ava.config.js ├── changelog.md ├── lib └── index.js ├── license ├── package.json ├── readme.md ├── test ├── fixtures │ ├── basic.expected.html │ └── basic.html └── test-core.js └── xo.config.js /.clintonrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posthtml/posthtml-plugin-boilerplate/HEAD/.clintonrc.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posthtml/posthtml-plugin-boilerplate/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posthtml/posthtml-plugin-boilerplate/HEAD/.github/contributing.md -------------------------------------------------------------------------------- /.github/funding.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posthtml/posthtml-plugin-boilerplate/HEAD/.github/funding.yml -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posthtml/posthtml-plugin-boilerplate/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | .nyc_output 4 | npm-debug.log -------------------------------------------------------------------------------- /.huskyrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posthtml/posthtml-plugin-boilerplate/HEAD/.huskyrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posthtml/posthtml-plugin-boilerplate/HEAD/.npmignore -------------------------------------------------------------------------------- /.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posthtml/posthtml-plugin-boilerplate/HEAD/.nycrc -------------------------------------------------------------------------------- /ava.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posthtml/posthtml-plugin-boilerplate/HEAD/ava.config.js -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posthtml/posthtml-plugin-boilerplate/HEAD/lib/index.js -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posthtml/posthtml-plugin-boilerplate/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posthtml/posthtml-plugin-boilerplate/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posthtml/posthtml-plugin-boilerplate/HEAD/readme.md -------------------------------------------------------------------------------- /test/fixtures/basic.expected.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/fixtures/basic.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/test-core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posthtml/posthtml-plugin-boilerplate/HEAD/test/test-core.js -------------------------------------------------------------------------------- /xo.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posthtml/posthtml-plugin-boilerplate/HEAD/xo.config.js --------------------------------------------------------------------------------