├── .github ├── dependabot.yml └── workflows │ ├── auto-merge.yml │ ├── ci.yml │ └── codeql-analysis.yml ├── .gitignore ├── .husky └── pre-commit ├── .prettierignore ├── .yarn └── releases │ └── yarn-4.0.2.cjs ├── .yarnrc.yml ├── CHANGELOG.md ├── README.md ├── __tests__ ├── context.test.ts ├── helpers │ ├── build.ts │ ├── index.ts │ ├── rollup.ts │ └── wait-for.ts ├── partials.test.ts ├── register-helpers.test.ts ├── reload.test.ts ├── resolve-from-root.test.ts └── tsconfig.json ├── package.json ├── prettier.config.cjs ├── src ├── context.ts ├── index.ts └── partials.ts ├── tsconfig.json └── yarn.lock /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlafroscia/vite-plugin-handlebars/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/auto-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlafroscia/vite-plugin-handlebars/HEAD/.github/workflows/auto-merge.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlafroscia/vite-plugin-handlebars/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlafroscia/vite-plugin-handlebars/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlafroscia/vite-plugin-handlebars/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | yarn lint-staged 5 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | # Output 2 | dist/ 3 | 4 | # Yarn 5 | .yarn/ -------------------------------------------------------------------------------- /.yarn/releases/yarn-4.0.2.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlafroscia/vite-plugin-handlebars/HEAD/.yarn/releases/yarn-4.0.2.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlafroscia/vite-plugin-handlebars/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlafroscia/vite-plugin-handlebars/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlafroscia/vite-plugin-handlebars/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/context.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlafroscia/vite-plugin-handlebars/HEAD/__tests__/context.test.ts -------------------------------------------------------------------------------- /__tests__/helpers/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlafroscia/vite-plugin-handlebars/HEAD/__tests__/helpers/build.ts -------------------------------------------------------------------------------- /__tests__/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlafroscia/vite-plugin-handlebars/HEAD/__tests__/helpers/index.ts -------------------------------------------------------------------------------- /__tests__/helpers/rollup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlafroscia/vite-plugin-handlebars/HEAD/__tests__/helpers/rollup.ts -------------------------------------------------------------------------------- /__tests__/helpers/wait-for.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlafroscia/vite-plugin-handlebars/HEAD/__tests__/helpers/wait-for.ts -------------------------------------------------------------------------------- /__tests__/partials.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlafroscia/vite-plugin-handlebars/HEAD/__tests__/partials.test.ts -------------------------------------------------------------------------------- /__tests__/register-helpers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlafroscia/vite-plugin-handlebars/HEAD/__tests__/register-helpers.test.ts -------------------------------------------------------------------------------- /__tests__/reload.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlafroscia/vite-plugin-handlebars/HEAD/__tests__/reload.test.ts -------------------------------------------------------------------------------- /__tests__/resolve-from-root.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlafroscia/vite-plugin-handlebars/HEAD/__tests__/resolve-from-root.test.ts -------------------------------------------------------------------------------- /__tests__/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlafroscia/vite-plugin-handlebars/HEAD/__tests__/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlafroscia/vite-plugin-handlebars/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlafroscia/vite-plugin-handlebars/HEAD/prettier.config.cjs -------------------------------------------------------------------------------- /src/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlafroscia/vite-plugin-handlebars/HEAD/src/context.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlafroscia/vite-plugin-handlebars/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/partials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlafroscia/vite-plugin-handlebars/HEAD/src/partials.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlafroscia/vite-plugin-handlebars/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexlafroscia/vite-plugin-handlebars/HEAD/yarn.lock --------------------------------------------------------------------------------