├── .editorconfig ├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── LICENSE ├── package.json ├── readme.md ├── src └── index.ts ├── test ├── index.spec.js ├── mock-compiler.js ├── mock-fs.js └── mock-stat.js └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-webpack/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-webpack/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-webpack/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | *.swp 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | test/ 2 | .github/ 3 | .editorconfig 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-webpack/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-webpack/HEAD/LICENSE -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-webpack/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-webpack/HEAD/readme.md -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-webpack/HEAD/src/index.ts -------------------------------------------------------------------------------- /test/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-webpack/HEAD/test/index.spec.js -------------------------------------------------------------------------------- /test/mock-compiler.js: -------------------------------------------------------------------------------- 1 | module.exports = class { 2 | plugin() {} 3 | } 4 | -------------------------------------------------------------------------------- /test/mock-fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-webpack/HEAD/test/mock-fs.js -------------------------------------------------------------------------------- /test/mock-stat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-webpack/HEAD/test/mock-stat.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-webpack/HEAD/tsconfig.json --------------------------------------------------------------------------------