├── .babelrc ├── .editorconfig ├── .eslintrc.yml ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── coffeelint.json ├── package.json ├── src ├── cache.js ├── index.js └── render.js └── test ├── config └── paths.coffee ├── fixtures ├── bad-locals.ejs ├── bad-locals.js ├── bad-syntax.ejs ├── bad-syntax.js ├── context.ejs ├── context.js ├── delimiter.ejs ├── delimiter.js ├── include-partial.ejs ├── include.ejs ├── include.js ├── resource-query.ejs ├── resource-query.js ├── simple.ejs └── simple.js ├── helpers ├── compile.coffee ├── config.coffee └── error.coffee ├── index.coffee └── mocha.opts /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmath/ejs-html-loader/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmath/ejs-html-loader/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmath/ejs-html-loader/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmath/ejs-html-loader/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmath/ejs-html-loader/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmath/ejs-html-loader/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmath/ejs-html-loader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmath/ejs-html-loader/HEAD/README.md -------------------------------------------------------------------------------- /coffeelint.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@mcmath/coffeelint-config" 3 | } 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmath/ejs-html-loader/HEAD/package.json -------------------------------------------------------------------------------- /src/cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmath/ejs-html-loader/HEAD/src/cache.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmath/ejs-html-loader/HEAD/src/index.js -------------------------------------------------------------------------------- /src/render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmath/ejs-html-loader/HEAD/src/render.js -------------------------------------------------------------------------------- /test/config/paths.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmath/ejs-html-loader/HEAD/test/config/paths.coffee -------------------------------------------------------------------------------- /test/fixtures/bad-locals.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmath/ejs-html-loader/HEAD/test/fixtures/bad-locals.ejs -------------------------------------------------------------------------------- /test/fixtures/bad-locals.js: -------------------------------------------------------------------------------- 1 | require('./bad-locals.ejs'); 2 | -------------------------------------------------------------------------------- /test/fixtures/bad-syntax.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmath/ejs-html-loader/HEAD/test/fixtures/bad-syntax.ejs -------------------------------------------------------------------------------- /test/fixtures/bad-syntax.js: -------------------------------------------------------------------------------- 1 | require('./bad-syntax.ejs'); 2 | -------------------------------------------------------------------------------- /test/fixtures/context.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmath/ejs-html-loader/HEAD/test/fixtures/context.ejs -------------------------------------------------------------------------------- /test/fixtures/context.js: -------------------------------------------------------------------------------- 1 | require('./context.ejs'); 2 | -------------------------------------------------------------------------------- /test/fixtures/delimiter.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcmath/ejs-html-loader/HEAD/test/fixtures/delimiter.ejs -------------------------------------------------------------------------------- /test/fixtures/delimiter.js: -------------------------------------------------------------------------------- 1 | require('./delimiter.ejs'); 2 | -------------------------------------------------------------------------------- /test/fixtures/include-partial.ejs: -------------------------------------------------------------------------------- 1 |