├── .gitignore ├── .jshintrc ├── .npmignore ├── .travis.yml ├── Gruntfile.js ├── LICENSE-MIT ├── README.md ├── bin └── grunt-jade ├── example └── templates │ ├── _layout.jade │ ├── deep_path │ └── deep_path.jade │ ├── include.jade │ ├── locals.jade │ ├── locals_function.jade │ ├── test-3.jade │ ├── test-extends.jade │ ├── test.jade │ ├── test2.jade │ └── test_4.jade ├── package.json ├── support ├── amd-runtime.template ├── amd.template ├── global-runtime.template ├── global.template ├── node-runtime.template ├── node.template └── taskDefinitions.js ├── tasks ├── jade.js └── lib │ └── helpers.js └── test ├── amd_debug_test.js ├── amd_deps_test.js ├── amd_test.js ├── base_path_test.js ├── custom_extension_test.js ├── debug_test.js ├── fixtures ├── amd │ ├── helloworld_expected.js │ └── runtime_expected.js ├── amd_debug │ ├── helloworld_expected.js │ └── runtime_expected.js ├── amd_deps │ ├── helloworld_expected.js │ └── runtime_expected.js ├── base_path │ ├── helloworld_expected.js │ └── runtime_expected.js ├── custom_extension │ └── helloworld_expected.xml ├── debug │ ├── helloworld_expected.js │ └── runtime_expected.js ├── global │ ├── helloworld_expected.js │ └── runtime_expected.js ├── helloworld.jade ├── html │ └── helloworld_expected.html ├── locals │ └── variable_expected.html ├── locals_function │ └── variable_expected.html ├── locals_template │ └── variable_expected.html ├── no_options │ ├── helloworld_expected.js │ └── runtime_expected.js ├── no_runtime │ └── helloworld_expected.js ├── no_wrap │ ├── helloworld_expected.js │ └── runtime_expected.js ├── node │ ├── helloworld_expected.js │ └── runtime_expected.js └── variable.jade ├── global_test.js ├── html_test.js ├── locals_function_test.js ├── locals_template_test.js ├── locals_test.js ├── no_options_test.js ├── no_runtime_test.js ├── no_wrap_test.js └── node_test.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | *.log 3 | tmp/ 4 | .idea/ 5 | example/output/ 6 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phated/grunt-jade/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | example/output/ 3 | tmp/ -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phated/grunt-jade/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phated/grunt-jade/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phated/grunt-jade/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phated/grunt-jade/HEAD/README.md -------------------------------------------------------------------------------- /bin/grunt-jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phated/grunt-jade/HEAD/bin/grunt-jade -------------------------------------------------------------------------------- /example/templates/_layout.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phated/grunt-jade/HEAD/example/templates/_layout.jade -------------------------------------------------------------------------------- /example/templates/deep_path/deep_path.jade: -------------------------------------------------------------------------------- 1 | h1 Hello Deep Path -------------------------------------------------------------------------------- /example/templates/include.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phated/grunt-jade/HEAD/example/templates/include.jade -------------------------------------------------------------------------------- /example/templates/locals.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phated/grunt-jade/HEAD/example/templates/locals.jade -------------------------------------------------------------------------------- /example/templates/locals_function.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phated/grunt-jade/HEAD/example/templates/locals_function.jade -------------------------------------------------------------------------------- /example/templates/test-3.jade: -------------------------------------------------------------------------------- 1 | h1 test -------------------------------------------------------------------------------- /example/templates/test-extends.jade: -------------------------------------------------------------------------------- 1 | extends _layout 2 | 3 | block main 4 | p Hi 5 | -------------------------------------------------------------------------------- /example/templates/test.jade: -------------------------------------------------------------------------------- 1 | h1 test -------------------------------------------------------------------------------- /example/templates/test2.jade: -------------------------------------------------------------------------------- 1 | h1 test -------------------------------------------------------------------------------- /example/templates/test_4.jade: -------------------------------------------------------------------------------- 1 | h1 test -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phated/grunt-jade/HEAD/package.json -------------------------------------------------------------------------------- /support/amd-runtime.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phated/grunt-jade/HEAD/support/amd-runtime.template -------------------------------------------------------------------------------- /support/amd.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phated/grunt-jade/HEAD/support/amd.template -------------------------------------------------------------------------------- /support/global-runtime.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phated/grunt-jade/HEAD/support/global-runtime.template -------------------------------------------------------------------------------- /support/global.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phated/grunt-jade/HEAD/support/global.template -------------------------------------------------------------------------------- /support/node-runtime.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phated/grunt-jade/HEAD/support/node-runtime.template -------------------------------------------------------------------------------- /support/node.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phated/grunt-jade/HEAD/support/node.template -------------------------------------------------------------------------------- /support/taskDefinitions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phated/grunt-jade/HEAD/support/taskDefinitions.js -------------------------------------------------------------------------------- /tasks/jade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phated/grunt-jade/HEAD/tasks/jade.js -------------------------------------------------------------------------------- /tasks/lib/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phated/grunt-jade/HEAD/tasks/lib/helpers.js -------------------------------------------------------------------------------- /test/amd_debug_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phated/grunt-jade/HEAD/test/amd_debug_test.js -------------------------------------------------------------------------------- /test/amd_deps_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phated/grunt-jade/HEAD/test/amd_deps_test.js -------------------------------------------------------------------------------- /test/amd_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phated/grunt-jade/HEAD/test/amd_test.js -------------------------------------------------------------------------------- /test/base_path_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phated/grunt-jade/HEAD/test/base_path_test.js -------------------------------------------------------------------------------- /test/custom_extension_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phated/grunt-jade/HEAD/test/custom_extension_test.js -------------------------------------------------------------------------------- /test/debug_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phated/grunt-jade/HEAD/test/debug_test.js -------------------------------------------------------------------------------- /test/fixtures/amd/helloworld_expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phated/grunt-jade/HEAD/test/fixtures/amd/helloworld_expected.js -------------------------------------------------------------------------------- /test/fixtures/amd/runtime_expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phated/grunt-jade/HEAD/test/fixtures/amd/runtime_expected.js -------------------------------------------------------------------------------- /test/fixtures/amd_debug/helloworld_expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phated/grunt-jade/HEAD/test/fixtures/amd_debug/helloworld_expected.js -------------------------------------------------------------------------------- /test/fixtures/amd_debug/runtime_expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phated/grunt-jade/HEAD/test/fixtures/amd_debug/runtime_expected.js -------------------------------------------------------------------------------- /test/fixtures/amd_deps/helloworld_expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phated/grunt-jade/HEAD/test/fixtures/amd_deps/helloworld_expected.js -------------------------------------------------------------------------------- /test/fixtures/amd_deps/runtime_expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phated/grunt-jade/HEAD/test/fixtures/amd_deps/runtime_expected.js -------------------------------------------------------------------------------- /test/fixtures/base_path/helloworld_expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phated/grunt-jade/HEAD/test/fixtures/base_path/helloworld_expected.js -------------------------------------------------------------------------------- /test/fixtures/base_path/runtime_expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phated/grunt-jade/HEAD/test/fixtures/base_path/runtime_expected.js -------------------------------------------------------------------------------- /test/fixtures/custom_extension/helloworld_expected.xml: -------------------------------------------------------------------------------- 1 |