├── .eslintrc ├── .gitignore ├── .jshintignore ├── .jshintrc ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── Gruntfile.js ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── index.js ├── lib ├── brook.js ├── engine.js ├── reqwire.js └── utils.js ├── package.json └── test ├── assertions.json ├── async-resolve-from-view-engine.js ├── dustjs.js ├── fixtures ├── helpers │ ├── browser.js │ └── node.js ├── reqwire │ ├── init.js │ └── module.js └── templates │ ├── en_US │ ├── inc │ │ └── helper.dust │ └── master.dust │ ├── helper.dust │ ├── helper.js │ ├── inc │ ├── include.dust │ └── include.js │ ├── index.dust │ ├── index.js │ ├── iterator.dust │ ├── layouts │ ├── altmaster.dust │ ├── master.dust │ └── master.js │ ├── master.dust │ ├── master.js │ ├── nested │ ├── index.dust │ ├── index.js │ ├── partial1.dust │ ├── partial1.js │ ├── partial2.dust │ └── partial2.js │ └── whitespace.dust ├── race.js ├── reqwire.js └── utils.js /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "env": "node" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakenjs/adaro/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | test/fixtures/**/*.js -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakenjs/adaro/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakenjs/adaro/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakenjs/adaro/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakenjs/adaro/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakenjs/adaro/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakenjs/adaro/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakenjs/adaro/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakenjs/adaro/HEAD/SECURITY.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakenjs/adaro/HEAD/index.js -------------------------------------------------------------------------------- /lib/brook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakenjs/adaro/HEAD/lib/brook.js -------------------------------------------------------------------------------- /lib/engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakenjs/adaro/HEAD/lib/engine.js -------------------------------------------------------------------------------- /lib/reqwire.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakenjs/adaro/HEAD/lib/reqwire.js -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakenjs/adaro/HEAD/lib/utils.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakenjs/adaro/HEAD/package.json -------------------------------------------------------------------------------- /test/assertions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakenjs/adaro/HEAD/test/assertions.json -------------------------------------------------------------------------------- /test/async-resolve-from-view-engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakenjs/adaro/HEAD/test/async-resolve-from-view-engine.js -------------------------------------------------------------------------------- /test/dustjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakenjs/adaro/HEAD/test/dustjs.js -------------------------------------------------------------------------------- /test/fixtures/helpers/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakenjs/adaro/HEAD/test/fixtures/helpers/browser.js -------------------------------------------------------------------------------- /test/fixtures/helpers/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakenjs/adaro/HEAD/test/fixtures/helpers/node.js -------------------------------------------------------------------------------- /test/fixtures/reqwire/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakenjs/adaro/HEAD/test/fixtures/reqwire/init.js -------------------------------------------------------------------------------- /test/fixtures/reqwire/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakenjs/adaro/HEAD/test/fixtures/reqwire/module.js -------------------------------------------------------------------------------- /test/fixtures/templates/en_US/inc/helper.dust: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakenjs/adaro/HEAD/test/fixtures/templates/en_US/inc/helper.dust -------------------------------------------------------------------------------- /test/fixtures/templates/en_US/master.dust: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakenjs/adaro/HEAD/test/fixtures/templates/en_US/master.dust -------------------------------------------------------------------------------- /test/fixtures/templates/helper.dust: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakenjs/adaro/HEAD/test/fixtures/templates/helper.dust -------------------------------------------------------------------------------- /test/fixtures/templates/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakenjs/adaro/HEAD/test/fixtures/templates/helper.js -------------------------------------------------------------------------------- /test/fixtures/templates/inc/include.dust: -------------------------------------------------------------------------------- 1 |
howdy doodie
-------------------------------------------------------------------------------- /test/fixtures/templates/inc/include.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakenjs/adaro/HEAD/test/fixtures/templates/inc/include.js -------------------------------------------------------------------------------- /test/fixtures/templates/index.dust: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakenjs/adaro/HEAD/test/fixtures/templates/index.dust -------------------------------------------------------------------------------- /test/fixtures/templates/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakenjs/adaro/HEAD/test/fixtures/templates/index.js -------------------------------------------------------------------------------- /test/fixtures/templates/iterator.dust: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakenjs/adaro/HEAD/test/fixtures/templates/iterator.dust -------------------------------------------------------------------------------- /test/fixtures/templates/layouts/altmaster.dust: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakenjs/adaro/HEAD/test/fixtures/templates/layouts/altmaster.dust -------------------------------------------------------------------------------- /test/fixtures/templates/layouts/master.dust: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakenjs/adaro/HEAD/test/fixtures/templates/layouts/master.dust -------------------------------------------------------------------------------- /test/fixtures/templates/layouts/master.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakenjs/adaro/HEAD/test/fixtures/templates/layouts/master.js -------------------------------------------------------------------------------- /test/fixtures/templates/master.dust: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakenjs/adaro/HEAD/test/fixtures/templates/master.dust -------------------------------------------------------------------------------- /test/fixtures/templates/master.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakenjs/adaro/HEAD/test/fixtures/templates/master.js -------------------------------------------------------------------------------- /test/fixtures/templates/nested/index.dust: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakenjs/adaro/HEAD/test/fixtures/templates/nested/index.dust -------------------------------------------------------------------------------- /test/fixtures/templates/nested/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakenjs/adaro/HEAD/test/fixtures/templates/nested/index.js -------------------------------------------------------------------------------- /test/fixtures/templates/nested/partial1.dust: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakenjs/adaro/HEAD/test/fixtures/templates/nested/partial1.dust -------------------------------------------------------------------------------- /test/fixtures/templates/nested/partial1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krakenjs/adaro/HEAD/test/fixtures/templates/nested/partial1.js -------------------------------------------------------------------------------- /test/fixtures/templates/nested/partial2.dust: -------------------------------------------------------------------------------- 1 |