├── .eslintignore ├── .github └── workflows │ └── test.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.js ├── LICENSE ├── README.md ├── eslint.config.js ├── package.json ├── rollup.config.js ├── src └── index.js └── test ├── config.js ├── fixtures ├── component.riot ├── index.js └── lazy.riot ├── index.js └── webpack.config.js /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riot/webpack-loader/HEAD/.eslintignore -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riot/webpack-loader/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riot/webpack-loader/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | test/fixtures/* 2 | dist/* 3 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- 1 | export { default } from '@riotjs/prettier-config' 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riot/webpack-loader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riot/webpack-loader/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riot/webpack-loader/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riot/webpack-loader/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riot/webpack-loader/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riot/webpack-loader/HEAD/src/index.js -------------------------------------------------------------------------------- /test/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riot/webpack-loader/HEAD/test/config.js -------------------------------------------------------------------------------- /test/fixtures/component.riot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riot/webpack-loader/HEAD/test/fixtures/component.riot -------------------------------------------------------------------------------- /test/fixtures/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riot/webpack-loader/HEAD/test/fixtures/index.js -------------------------------------------------------------------------------- /test/fixtures/lazy.riot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riot/webpack-loader/HEAD/test/fixtures/lazy.riot -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riot/webpack-loader/HEAD/test/index.js -------------------------------------------------------------------------------- /test/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riot/webpack-loader/HEAD/test/webpack.config.js --------------------------------------------------------------------------------