Compare commits
59 Commits
grunt-0.3-
...
master
Author | SHA1 | Date | |
---|---|---|---|
|
7a1bf369ce | ||
|
a5c76f56e4 | ||
|
ffb72d7dd9 | ||
|
37326b9a58 | ||
|
38ee6e22d4 | ||
|
2a793822f4 | ||
|
1b64cccea0 | ||
|
8839411c2c | ||
|
ef494300fa | ||
|
4ec59db55c | ||
|
f7bd8b7c52 | ||
|
7b290ffe80 | ||
|
dc66a34f38 | ||
|
dfe5b8f22a | ||
|
0588336f6c | ||
|
4eaee630c9 | ||
|
666ff0053e | ||
|
30685afc19 | ||
|
efee77f83c | ||
|
4a4e1734bf | ||
|
2277764a38 | ||
|
1bd9475ad2 | ||
|
d8af514686 | ||
|
32b10d3fc8 | ||
|
87924a766f | ||
|
ffe9197837 | ||
|
3dcfe1348f | ||
|
3802fa500e | ||
|
9f4671ed41 | ||
|
44f5566772 | ||
|
2f3f08fa64 | ||
|
8fab2400f5 | ||
|
1f3715eaca | ||
|
d16c9f14e7 | ||
|
a2a57bbb75 | ||
|
73215fc73d | ||
|
38d9cab887 | ||
|
b3b0783855 | ||
|
ab2565473e | ||
|
f6d67bca77 | ||
|
56edaf6b95 | ||
|
c39f2c9c37 | ||
|
6aa2b5e8d1 | ||
|
e933f45e21 | ||
|
5b469cae5f | ||
|
ee162af004 | ||
|
fb9337ad16 | ||
|
77b6ec4d5d | ||
|
4430c8bf96 | ||
|
34b878aa51 | ||
|
1912ddbd37 | ||
|
5db6cf24ec | ||
|
cd8937fbf4 | ||
|
20a3b8aa0b | ||
|
fea4603fcd | ||
|
23ee0627fd | ||
|
a9a04260ff | ||
|
112efb4455 | ||
|
7e652956f5 |
2
.gitattributes
vendored
Normal file
2
.gitattributes
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# Automatically normalize line endings for all text-based files
|
||||||
|
* text=crlf
|
13
.jshintrc
Normal file
13
.jshintrc
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"curly": true,
|
||||||
|
"eqeqeq": true,
|
||||||
|
"immed": true,
|
||||||
|
"latedef": true,
|
||||||
|
"newcap": true,
|
||||||
|
"noarg": true,
|
||||||
|
"sub": true,
|
||||||
|
"undef": true,
|
||||||
|
"boss": true,
|
||||||
|
"eqnull": true,
|
||||||
|
"node": true
|
||||||
|
}
|
@ -1,3 +1,6 @@
|
|||||||
language: node_js
|
language: node_js
|
||||||
node_js:
|
node_js:
|
||||||
- 0.8
|
- "0.8"
|
||||||
|
- "0.10"
|
||||||
|
before_script:
|
||||||
|
- npm install -g grunt-cli
|
1
AUTHORS
1
AUTHORS
@ -2,3 +2,4 @@ Tim Branyen (http://tbranyen.com)
|
|||||||
Tyler Kellen (http://goingslowly.com/)
|
Tyler Kellen (http://goingslowly.com/)
|
||||||
Chris Talkington (http://christalkington.com/)
|
Chris Talkington (http://christalkington.com/)
|
||||||
Larry Davis (http://lazd.net/)
|
Larry Davis (http://lazd.net/)
|
||||||
|
Adrien Antoine (http://adriantoine.com/)
|
30
CHANGELOG
30
CHANGELOG
@ -1,8 +1,30 @@
|
|||||||
v0.3.2:
|
v0.5.1:
|
||||||
date: 2012-10-13
|
date: 2013-07-14
|
||||||
changes:
|
changes:
|
||||||
- Add prettify option
|
- Display filepath when fails to compile.
|
||||||
- Add amdWrapper option
|
v0.5.0:
|
||||||
|
date: 2013-03-06
|
||||||
|
changes:
|
||||||
|
- When `namespace` is false and `amd` is true, return templates directly from AMD wrapper.
|
||||||
|
- Rename `amdwrapper` option to `amd` to match grunt-contrib-handlebars.
|
||||||
|
v0.4.1:
|
||||||
|
date: 2013-02-15
|
||||||
|
changes:
|
||||||
|
- First official release for Grunt 0.4.0.
|
||||||
|
v0.4.1rc7:
|
||||||
|
date: 2012-01-29
|
||||||
|
changes:
|
||||||
|
- Correct line endings for lodash output on windows.
|
||||||
|
v0.4.0rc7:
|
||||||
|
date: 2013-01-23
|
||||||
|
changes:
|
||||||
|
- Updating grunt/gruntplugin dependencies to rc7.
|
||||||
|
- Changing in-development grunt/gruntplugin dependency versions from tilde version ranges to specific versions.
|
||||||
|
v0.4.0rc5:
|
||||||
|
date: 2013-01-09
|
||||||
|
changes:
|
||||||
|
- Updating to work with grunt v0.4.0rc5.
|
||||||
|
- Switching to this.files api.
|
||||||
v0.3.1:
|
v0.3.1:
|
||||||
date: 2012-10-12
|
date: 2012-10-12
|
||||||
changes:
|
changes:
|
||||||
|
1
CONTRIBUTING.md
Normal file
1
CONTRIBUTING.md
Normal file
@ -0,0 +1 @@
|
|||||||
|
Please see the [Contributing to grunt](http://gruntjs.com/contributing) guide for information on contributing to this project.
|
163
Gruntfile.js
Normal file
163
Gruntfile.js
Normal file
@ -0,0 +1,163 @@
|
|||||||
|
/*
|
||||||
|
* grunt-contrib-jst
|
||||||
|
* http://gruntjs.com/
|
||||||
|
*
|
||||||
|
* Copyright (c) 2013 Tim Branyen, contributors
|
||||||
|
* Licensed under the MIT license.
|
||||||
|
*/
|
||||||
|
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
module.exports = function(grunt) {
|
||||||
|
|
||||||
|
// Project configuration.
|
||||||
|
grunt.initConfig({
|
||||||
|
jshint: {
|
||||||
|
all: [
|
||||||
|
'Gruntfile.js',
|
||||||
|
'tasks/*.js',
|
||||||
|
'<%= nodeunit.tests %>'
|
||||||
|
],
|
||||||
|
options: {
|
||||||
|
jshintrc: '.jshintrc'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// Before generating any new files, remove any previously-created files.
|
||||||
|
clean: {
|
||||||
|
test: ['tmp']
|
||||||
|
},
|
||||||
|
|
||||||
|
// Configuration to be run (and then tested).
|
||||||
|
jst: {
|
||||||
|
compile: {
|
||||||
|
options: {
|
||||||
|
templateSettings: {
|
||||||
|
variable: 'obj'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
files: {
|
||||||
|
"tmp/jst.js": ["test/fixtures/template.html"]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
pretty_amd: {
|
||||||
|
options: {
|
||||||
|
templateSettings: {
|
||||||
|
variable: 'obj'
|
||||||
|
},
|
||||||
|
prettify: true,
|
||||||
|
amd: true
|
||||||
|
},
|
||||||
|
files: {
|
||||||
|
"tmp/pretty_amd.js": ["test/fixtures/template.html"]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
prettify: {
|
||||||
|
options: {
|
||||||
|
templateSettings: {
|
||||||
|
variable: 'obj'
|
||||||
|
},
|
||||||
|
prettify: true
|
||||||
|
},
|
||||||
|
files: {
|
||||||
|
"tmp/pretty.js": ["test/fixtures/template.html"]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
amd_wrapper: {
|
||||||
|
options: {
|
||||||
|
templateSettings: {
|
||||||
|
variable: 'obj'
|
||||||
|
},
|
||||||
|
amd:true
|
||||||
|
},
|
||||||
|
files: {
|
||||||
|
"tmp/amd_wrapper.js": ["test/fixtures/template.html"]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
amd_wrapper_no_ns: {
|
||||||
|
options: {
|
||||||
|
templateSettings: {
|
||||||
|
variable: 'obj'
|
||||||
|
},
|
||||||
|
amd:true,
|
||||||
|
namespace:false
|
||||||
|
},
|
||||||
|
files: {
|
||||||
|
"tmp/amd_wrapper_no_ns.js": ["test/fixtures/template.html"]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
uglyfile: {
|
||||||
|
options: {
|
||||||
|
templateSettings: {
|
||||||
|
variable: 'obj'
|
||||||
|
},
|
||||||
|
},
|
||||||
|
files: {
|
||||||
|
"tmp/uglyfile.js": ["test/fixtures/*bad-filename*"]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
ns_nested: {
|
||||||
|
options: {
|
||||||
|
templateSettings: {
|
||||||
|
variable: 'obj'
|
||||||
|
},
|
||||||
|
namespace: "MyApp.JST.Main"
|
||||||
|
},
|
||||||
|
files: {
|
||||||
|
"tmp/ns_nested.js": ["test/fixtures/template.html"]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
ns_nested_this: {
|
||||||
|
options: {
|
||||||
|
templateSettings: {
|
||||||
|
variable: 'obj'
|
||||||
|
},
|
||||||
|
namespace: "this.MyApp.JST.Main"
|
||||||
|
},
|
||||||
|
files: {
|
||||||
|
"tmp/ns_nested_this.js": ["test/fixtures/template.html"]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
process_content: {
|
||||||
|
options: {
|
||||||
|
templateSettings: {
|
||||||
|
variable: 'obj'
|
||||||
|
},
|
||||||
|
processContent: function (src) {
|
||||||
|
return src.replace(/(^\s+|\s+$)/gm, '');
|
||||||
|
}
|
||||||
|
},
|
||||||
|
files: {
|
||||||
|
"tmp/process_content.js": ["test/fixtures/indent_template.html"]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
local_scope: {
|
||||||
|
files: {
|
||||||
|
"tmp/local_scope.js": ["test/fixtures/template_local_scope.html"]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
// Unit tests.
|
||||||
|
nodeunit: {
|
||||||
|
tests: ['test/*_test.js']
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// Actually load this plugin's task(s).
|
||||||
|
grunt.loadTasks('tasks');
|
||||||
|
|
||||||
|
// These plugins provide necessary tasks.
|
||||||
|
grunt.loadNpmTasks('grunt-contrib-jshint');
|
||||||
|
grunt.loadNpmTasks('grunt-contrib-nodeunit');
|
||||||
|
grunt.loadNpmTasks('grunt-contrib-internal');
|
||||||
|
grunt.loadNpmTasks('grunt-contrib-clean');
|
||||||
|
|
||||||
|
// Whenever the "test" task is run, first clean the "tmp" dir, then run this
|
||||||
|
// plugin's task(s), then test the result.
|
||||||
|
grunt.registerTask('test', ['clean', 'jst', 'nodeunit']);
|
||||||
|
|
||||||
|
// By default, lint and run all tests.
|
||||||
|
grunt.registerTask('default', ['jshint', 'test', 'build-contrib']);
|
||||||
|
|
||||||
|
};
|
@ -1,4 +1,4 @@
|
|||||||
Copyright (c) 2012 Tim Branyen, contributors
|
Copyright (c) 2013 Tim Branyen, contributors
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person
|
Permission is hereby granted, free of charge, to any person
|
||||||
obtaining a copy of this software and associated documentation
|
obtaining a copy of this software and associated documentation
|
||||||
|
192
README.md
192
README.md
@ -1,88 +1,55 @@
|
|||||||
# grunt-contrib-jst [![Build Status](https://secure.travis-ci.org/gruntjs/grunt-contrib-jst.png?branch=master)](http://travis-ci.org/gruntjs/grunt-contrib-jst)
|
# grunt-contrib-jst v0.5.1 [![Build Status](https://travis-ci.org/gruntjs/grunt-contrib-jst.png?branch=master)](https://travis-ci.org/gruntjs/grunt-contrib-jst)
|
||||||
|
|
||||||
|
> Precompile Underscore templates to JST file.
|
||||||
|
|
||||||
|
|
||||||
> Compile underscore templates to JST file.
|
|
||||||
|
|
||||||
## Getting Started
|
## Getting Started
|
||||||
Install this grunt plugin next to your project's [grunt.js gruntfile][getting_started] with: `npm install grunt-contrib-jst`
|
This plugin requires Grunt `~0.4.0`
|
||||||
|
|
||||||
Then add this line to your project's `grunt.js` gruntfile:
|
If you haven't used [Grunt](http://gruntjs.com/) before, be sure to check out the [Getting Started](http://gruntjs.com/getting-started) guide, as it explains how to create a [Gruntfile](http://gruntjs.com/sample-gruntfile) as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
|
||||||
|
|
||||||
```javascript
|
```shell
|
||||||
|
npm install grunt-contrib-jst --save-dev
|
||||||
|
```
|
||||||
|
|
||||||
|
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
|
||||||
|
|
||||||
|
```js
|
||||||
grunt.loadNpmTasks('grunt-contrib-jst');
|
grunt.loadNpmTasks('grunt-contrib-jst');
|
||||||
```
|
```
|
||||||
|
|
||||||
[grunt]: https://github.com/gruntjs/grunt
|
*This plugin was designed to work with Grunt 0.4.x. If you're still using grunt v0.3.x it's strongly recommended that [you upgrade](http://gruntjs.com/upgrading-from-0.3-to-0.4), but in case you can't please use [v0.3.1](https://github.com/gruntjs/grunt-contrib-jst/tree/grunt-0.3-stable).*
|
||||||
[getting_started]: https://github.com/gruntjs/grunt/blob/master/docs/getting_started.md
|
|
||||||
|
|
||||||
### Overview
|
|
||||||
|
|
||||||
This task compiles Underscore compatible templates into functions that can be concatenated and minified with existing source files.
|
|
||||||
|
|
||||||
Inside your `grunt.js` file, add a section named `jst`. This section specifies the files to compile and the options passed to [underscore.template](http://underscorejs.org/#template).
|
## Jst task
|
||||||
|
_Run this task with the `grunt jst` command._
|
||||||
|
|
||||||
#### Parameters
|
Task targets, files and options may be specified according to the grunt [Configuring tasks](http://gruntjs.com/configuring-tasks) guide.
|
||||||
|
|
||||||
##### files ```object```
|
_This plugin uses [the Lo-Dash library](http://lodash.com/) to generate JavaScript template functions. Some developers generate template functions dynamically during development. If you are doing so, please be aware that the functions generated by this plugin may differ from those created at run-time. For instance, [the Underscore.js library](http://underscorejs.org/) will throw an exception if templates reference undefined top-level values, while Lo-Dash will silently insert an empty string in their place._
|
||||||
|
### Options
|
||||||
|
|
||||||
This defines what files this task will process and should contain key:value pairs.
|
#### separator
|
||||||
|
Type: `String`
|
||||||
|
Default: linefeed + linefeed
|
||||||
|
|
||||||
The key (destination) should be an unique filepath (supports [grunt.template](https://github.com/gruntjs/grunt/blob/master/docs/api_template.md)) and the value (source) should be a filepath or an array of filepaths (supports [minimatch](https://github.com/isaacs/minimatch)).
|
Concatenated files will be joined on this string.
|
||||||
|
|
||||||
Note: Values are precompiled to the namespaced JST array in the order passed.
|
#### namespace
|
||||||
|
Type: `String`
|
||||||
|
Default: 'JST'
|
||||||
|
|
||||||
##### options ```object```
|
The namespace in which the precompiled templates will be assigned. Use dot notation (e.g. App.Templates) for nested namespaces or false for no namespace wrapping. When false with amd option set true, templates will be returned directly from the AMD wrapper.
|
||||||
|
|
||||||
This controls how this task (and its helpers) operate and should contain key:value pairs, see options below.
|
#### processName
|
||||||
|
Type: `function`
|
||||||
#### Options
|
Default: null
|
||||||
|
|
||||||
##### namespace ```string```
|
|
||||||
|
|
||||||
The namespace in which the precompiled templates will be asssigned (default is JST). *Use dot notation (e.g. App.Templates) for nested namespaces.*
|
|
||||||
|
|
||||||
Example:
|
|
||||||
``` javascript
|
|
||||||
options: {
|
|
||||||
namespace: 'JST'
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
##### prettify ```boolean```
|
|
||||||
|
|
||||||
When doing a quick once-over of your compiled template file, it's nice to see
|
|
||||||
an easy-to-read format that has one line per template. This will accomplish
|
|
||||||
that.
|
|
||||||
|
|
||||||
Example:
|
|
||||||
```javascript
|
|
||||||
options: {
|
|
||||||
prettify: true
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
##### amdWrapper ```boolean```
|
|
||||||
|
|
||||||
With Require.js and a pre-compiled template.js you want the templates to be
|
|
||||||
wrapped in a define. This will wrap the output in:
|
|
||||||
``` javascript
|
|
||||||
define(function() {
|
|
||||||
//Templates
|
|
||||||
return this["NAMESPACE"];
|
|
||||||
});
|
|
||||||
```
|
|
||||||
|
|
||||||
Example:
|
|
||||||
``` javascript
|
|
||||||
options: {
|
|
||||||
amdWrapper: true
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
##### processName ```function```
|
|
||||||
|
|
||||||
This option accepts a function which takes one argument (the template filepath) and returns a string which will be used as the key for the precompiled template object. The example below stores all templates on the default JST namespace in capital letters.
|
This option accepts a function which takes one argument (the template filepath) and returns a string which will be used as the key for the precompiled template object. The example below stores all templates on the default JST namespace in capital letters.
|
||||||
|
|
||||||
``` javascript
|
```js
|
||||||
options: {
|
options: {
|
||||||
processName: function(filename) {
|
processName: function(filename) {
|
||||||
return filename.toUpperCase();
|
return filename.toUpperCase();
|
||||||
@ -90,13 +57,13 @@ options: {
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
##### templateSettings ```object```
|
#### templateSettings
|
||||||
|
Type: `Object`
|
||||||
|
Default: null
|
||||||
|
|
||||||
The settings passed to underscore when compiling templates.
|
The settings passed to underscore when compiling templates.
|
||||||
|
|
||||||
#### Config Examples
|
```js
|
||||||
|
|
||||||
``` javascript
|
|
||||||
jst: {
|
jst: {
|
||||||
compile: {
|
compile: {
|
||||||
options: {
|
options: {
|
||||||
@ -111,6 +78,91 @@ jst: {
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
--
|
#### prettify
|
||||||
|
Type: `boolean`
|
||||||
|
Default: false
|
||||||
|
|
||||||
*Task submitted by [Tim Branyen](http://github.com/tbranyen).*
|
When doing a quick once-over of your compiled template file, it's nice to see
|
||||||
|
an easy-to-read format that has one line per template. This will accomplish
|
||||||
|
that.
|
||||||
|
|
||||||
|
```js
|
||||||
|
options: {
|
||||||
|
prettify: true
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
#### amd
|
||||||
|
Type: `boolean`
|
||||||
|
Default: false
|
||||||
|
|
||||||
|
Wraps the output file with an AMD define function and returns the compiled template namespace unless namespace has been explicitly set to false in which case the template function will be returned directly.
|
||||||
|
|
||||||
|
```js
|
||||||
|
define(function() {
|
||||||
|
//...//
|
||||||
|
return this['[template namespace]'];
|
||||||
|
});
|
||||||
|
```
|
||||||
|
|
||||||
|
Example:
|
||||||
|
```js
|
||||||
|
options: {
|
||||||
|
amd: true
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
#### processContent
|
||||||
|
Type: `function`
|
||||||
|
|
||||||
|
This option accepts a function which takes one argument (the file content) and
|
||||||
|
returns a string which will be used as template string.
|
||||||
|
The example below strips whitespace characters from the beginning and the end of
|
||||||
|
each line.
|
||||||
|
|
||||||
|
```js
|
||||||
|
options: {
|
||||||
|
processContent: function(src) {
|
||||||
|
return src.replace(/(^\s+|\s+$)/gm, '');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
### Usage Examples
|
||||||
|
|
||||||
|
```js
|
||||||
|
jst: {
|
||||||
|
compile: {
|
||||||
|
options: {
|
||||||
|
templateSettings: {
|
||||||
|
interpolate : /\{\{(.+?)\}\}/g
|
||||||
|
}
|
||||||
|
},
|
||||||
|
files: {
|
||||||
|
"path/to/compiled/templates.js": ["path/to/source/**/*.html"]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
Note that the `interpolate: /\{\{(.+?)\}\}/g` setting above is simply an example of overwriting lodash's default interpolation. If you want to parse templates with the default `_.template` behavior (i.e. using `<div><%= this.id %></div>`), there's no need to overwrite `templateSettings.interpolate`.
|
||||||
|
|
||||||
|
|
||||||
|
## Release History
|
||||||
|
|
||||||
|
* 2013-07-14 v0.5.1 Display filepath when fails to compile.
|
||||||
|
* 2013-03-06 v0.5.0 When `namespace` is false and `amd` is true, return templates directly from AMD wrapper. Rename `amdwrapper` option to `amd` to match grunt-contrib-handlebars.
|
||||||
|
* 2013-02-15 v0.4.1 First official release for Grunt 0.4.0.
|
||||||
|
* 2012-01-29 v0.4.1rc7 Correct line endings for lodash output on windows.
|
||||||
|
* 2013-01-23 v0.4.0rc7 Updating grunt/gruntplugin dependencies to rc7. Changing in-development grunt/gruntplugin dependency versions from tilde version ranges to specific versions.
|
||||||
|
* 2013-01-09 v0.4.0rc5 Updating to work with grunt v0.4.0rc5. Switching to this.files api.
|
||||||
|
* 2012-10-12 v0.3.1 Rename grunt-contrib-lib dep to grunt-lib-contrib.
|
||||||
|
* 2012-08-23 v0.3.0 Options no longer accepted from global config key.
|
||||||
|
* 2012-08-16 v0.2.3 Support for nested namespaces.
|
||||||
|
* 2012-08-12 v0.2.2 Added processName functionality & escaping single quotes in filenames.
|
||||||
|
* 2012-08-10 v0.2.0 Refactored from grunt-contrib into individual repo.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
Task submitted by [Tim Branyen](http://tbranyen.com)
|
||||||
|
|
||||||
|
*This file was generated on Sat Oct 19 2013 14:22:27.*
|
||||||
|
17
docs/jst-examples.md
Normal file
17
docs/jst-examples.md
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
# Usage Examples
|
||||||
|
|
||||||
|
```js
|
||||||
|
jst: {
|
||||||
|
compile: {
|
||||||
|
options: {
|
||||||
|
templateSettings: {
|
||||||
|
interpolate : /\{\{(.+?)\}\}/g
|
||||||
|
}
|
||||||
|
},
|
||||||
|
files: {
|
||||||
|
"path/to/compiled/templates.js": ["path/to/source/**/*.html"]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
Note that the `interpolate: /\{\{(.+?)\}\}/g` setting above is simply an example of overwriting lodash's default interpolation. If you want to parse templates with the default `_.template` behavior (i.e. using `<div><%= this.id %></div>`), there's no need to overwrite `templateSettings.interpolate`.
|
98
docs/jst-options.md
Normal file
98
docs/jst-options.md
Normal file
@ -0,0 +1,98 @@
|
|||||||
|
# Options
|
||||||
|
|
||||||
|
## separator
|
||||||
|
Type: `String`
|
||||||
|
Default: linefeed + linefeed
|
||||||
|
|
||||||
|
Concatenated files will be joined on this string.
|
||||||
|
|
||||||
|
## namespace
|
||||||
|
Type: `String`
|
||||||
|
Default: 'JST'
|
||||||
|
|
||||||
|
The namespace in which the precompiled templates will be assigned. Use dot notation (e.g. App.Templates) for nested namespaces or false for no namespace wrapping. When false with amd option set true, templates will be returned directly from the AMD wrapper.
|
||||||
|
|
||||||
|
## processName
|
||||||
|
Type: `function`
|
||||||
|
Default: null
|
||||||
|
|
||||||
|
This option accepts a function which takes one argument (the template filepath) and returns a string which will be used as the key for the precompiled template object. The example below stores all templates on the default JST namespace in capital letters.
|
||||||
|
|
||||||
|
```js
|
||||||
|
options: {
|
||||||
|
processName: function(filename) {
|
||||||
|
return filename.toUpperCase();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
## templateSettings
|
||||||
|
Type: `Object`
|
||||||
|
Default: null
|
||||||
|
|
||||||
|
The settings passed to underscore when compiling templates.
|
||||||
|
|
||||||
|
```js
|
||||||
|
jst: {
|
||||||
|
compile: {
|
||||||
|
options: {
|
||||||
|
templateSettings: {
|
||||||
|
interpolate : /\{\{(.+?)\}\}/g
|
||||||
|
}
|
||||||
|
},
|
||||||
|
files: {
|
||||||
|
"path/to/compiled/templates.js": ["path/to/source/**/*.html"]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
## prettify
|
||||||
|
Type: `boolean`
|
||||||
|
Default: false
|
||||||
|
|
||||||
|
When doing a quick once-over of your compiled template file, it's nice to see
|
||||||
|
an easy-to-read format that has one line per template. This will accomplish
|
||||||
|
that.
|
||||||
|
|
||||||
|
```js
|
||||||
|
options: {
|
||||||
|
prettify: true
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
## amd
|
||||||
|
Type: `boolean`
|
||||||
|
Default: false
|
||||||
|
|
||||||
|
Wraps the output file with an AMD define function and returns the compiled template namespace unless namespace has been explicitly set to false in which case the template function will be returned directly.
|
||||||
|
|
||||||
|
```js
|
||||||
|
define(function() {
|
||||||
|
//...//
|
||||||
|
return this['[template namespace]'];
|
||||||
|
});
|
||||||
|
```
|
||||||
|
|
||||||
|
Example:
|
||||||
|
```js
|
||||||
|
options: {
|
||||||
|
amd: true
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
## processContent
|
||||||
|
Type: `function`
|
||||||
|
|
||||||
|
This option accepts a function which takes one argument (the file content) and
|
||||||
|
returns a string which will be used as template string.
|
||||||
|
The example below strips whitespace characters from the beginning and the end of
|
||||||
|
each line.
|
||||||
|
|
||||||
|
```js
|
||||||
|
options: {
|
||||||
|
processContent: function(src) {
|
||||||
|
return src.replace(/(^\s+|\s+$)/gm, '');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
3
docs/jst-overview.md
Normal file
3
docs/jst-overview.md
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
Task targets, files and options may be specified according to the grunt [Configuring tasks](http://gruntjs.com/configuring-tasks) guide.
|
||||||
|
|
||||||
|
_This plugin uses [the Lo-Dash library](http://lodash.com/) to generate JavaScript template functions. Some developers generate template functions dynamically during development. If you are doing so, please be aware that the functions generated by this plugin may differ from those created at run-time. For instance, [the Underscore.js library](http://underscorejs.org/) will throw an exception if templates reference undefined top-level values, while Lo-Dash will silently insert an empty string in their place._
|
@ -1,87 +0,0 @@
|
|||||||
##### files ```object```
|
|
||||||
|
|
||||||
This defines what files this task will process and should contain key:value pairs.
|
|
||||||
|
|
||||||
The key (destination) should be an unique filepath (supports [grunt.template](https://github.com/gruntjs/grunt/blob/master/docs/api_template.md)) and the value (source) should be a filepath or an array of filepaths (supports [minimatch](https://github.com/isaacs/minimatch)).
|
|
||||||
|
|
||||||
Note: Values are precompiled to the namespaced JST array in the order passed.
|
|
||||||
|
|
||||||
##### options ```object```
|
|
||||||
|
|
||||||
This controls how this task (and its helpers) operate and should contain key:value pairs, see options below.
|
|
||||||
|
|
||||||
#### Options
|
|
||||||
|
|
||||||
##### namespace ```string```
|
|
||||||
|
|
||||||
The namespace in which the precompiled templates will be asssigned (default is JST). *Use dot notation (e.g. App.Templates) for nested namespaces.*
|
|
||||||
|
|
||||||
Example:
|
|
||||||
```js
|
|
||||||
options: {
|
|
||||||
namespace: 'JST'
|
|
||||||
}
|
|
||||||
```
|
|
||||||
##### prettify ```boolean```
|
|
||||||
|
|
||||||
When doing a quick once-over of your compiled template file, it's nice to see
|
|
||||||
an easy-to-read format that has one line per template. This will accomplish
|
|
||||||
that.
|
|
||||||
|
|
||||||
Example:
|
|
||||||
```javascript
|
|
||||||
options: {
|
|
||||||
prettify: true
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
##### amdWrapper ```boolean```
|
|
||||||
|
|
||||||
With Require.js and a pre-compiled template.js you want the templates to be
|
|
||||||
wrapped in a define. This will wrap the output in:
|
|
||||||
``` javascript
|
|
||||||
define(function() {
|
|
||||||
//Templates
|
|
||||||
return this["NAMESPACE"];
|
|
||||||
});
|
|
||||||
```
|
|
||||||
|
|
||||||
Example:
|
|
||||||
``` javascript
|
|
||||||
options: {
|
|
||||||
amdWrapper: true
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
##### processName ```function```
|
|
||||||
|
|
||||||
This option accepts a function which takes one argument (the template filepath) and returns a string which will be used as the key for the precompiled template object. The example below stores all templates on the default JST namespace in capital letters.
|
|
||||||
|
|
||||||
```js
|
|
||||||
options: {
|
|
||||||
processName: function(filename) {
|
|
||||||
return filename.toUpperCase();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
##### templateSettings ```object```
|
|
||||||
|
|
||||||
The settings passed to underscore when compiling templates.
|
|
||||||
|
|
||||||
#### Config Examples
|
|
||||||
|
|
||||||
```js
|
|
||||||
jst: {
|
|
||||||
compile: {
|
|
||||||
options: {
|
|
||||||
templateSettings: {
|
|
||||||
interpolate : /\{\{(.+?)\}\}/g
|
|
||||||
}
|
|
||||||
},
|
|
||||||
files: {
|
|
||||||
"path/to/compiled/templates.js": ["path/to/source/**/*.html"]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
```
|
|
@ -1 +1 @@
|
|||||||
This task compiles Underscore compatible templates into functions that can be concatenated and minified with existing source files.
|
*This plugin was designed to work with Grunt 0.4.x. If you're still using grunt v0.3.x it's strongly recommended that [you upgrade](http://gruntjs.com/upgrading-from-0.3-to-0.4), but in case you can't please use [v0.3.1](https://github.com/gruntjs/grunt-contrib-jst/tree/grunt-0.3-stable).*
|
||||||
|
114
grunt.js
114
grunt.js
@ -1,114 +0,0 @@
|
|||||||
/*
|
|
||||||
* grunt-contrib-jst
|
|
||||||
* http://gruntjs.com/
|
|
||||||
*
|
|
||||||
* Copyright (c) 2012 Tim Branyen, contributors
|
|
||||||
* Licensed under the MIT license.
|
|
||||||
*/
|
|
||||||
|
|
||||||
module.exports = function(grunt) {
|
|
||||||
'use strict';
|
|
||||||
|
|
||||||
// Project configuration.
|
|
||||||
grunt.initConfig({
|
|
||||||
lint: {
|
|
||||||
all: ['grunt.js', 'tasks/*.js', '<config:nodeunit.tasks>']
|
|
||||||
},
|
|
||||||
|
|
||||||
jshint: {
|
|
||||||
options: {
|
|
||||||
curly: true,
|
|
||||||
eqeqeq: true,
|
|
||||||
immed: true,
|
|
||||||
latedef: true,
|
|
||||||
newcap: true,
|
|
||||||
noarg: true,
|
|
||||||
sub: true,
|
|
||||||
undef: true,
|
|
||||||
boss: true,
|
|
||||||
eqnull: true,
|
|
||||||
node: true,
|
|
||||||
es5: true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
// Before generating any new files, remove any previously-created files.
|
|
||||||
clean: {
|
|
||||||
test: ['tmp']
|
|
||||||
},
|
|
||||||
|
|
||||||
// Configuration to be run (and then tested).
|
|
||||||
jst: {
|
|
||||||
compile: {
|
|
||||||
files: {
|
|
||||||
"tmp/jst.js": ["test/fixtures/template.html"]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
pretty_amd: {
|
|
||||||
options: {
|
|
||||||
prettify: true,
|
|
||||||
amdWrapper: true
|
|
||||||
},
|
|
||||||
files: {
|
|
||||||
"tmp/pretty_amd.js": ["test/fixtures/template.html"]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
prettify: {
|
|
||||||
options: {
|
|
||||||
prettify: true
|
|
||||||
},
|
|
||||||
files: {
|
|
||||||
"tmp/pretty.js": ["test/fixtures/template.html"]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
amd_wrapper: {
|
|
||||||
options: {
|
|
||||||
amdWrapper:true
|
|
||||||
},
|
|
||||||
files: {
|
|
||||||
"tmp/amd_wrapper.js": ["test/fixtures/template.html"]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
uglyfile: {
|
|
||||||
files: {
|
|
||||||
"tmp/uglyfile.js": ["test/fixtures/*bad-filename*"]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
ns_nested: {
|
|
||||||
options: {
|
|
||||||
namespace: "MyApp.JST.Main"
|
|
||||||
},
|
|
||||||
files: {
|
|
||||||
"tmp/ns_nested.js": ["test/fixtures/template.html"]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
ns_nested_this: {
|
|
||||||
options: {
|
|
||||||
namespace: "this.MyApp.JST.Main"
|
|
||||||
},
|
|
||||||
files: {
|
|
||||||
"tmp/ns_nested_this.js": ["test/fixtures/template.html"]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
// Unit tests.
|
|
||||||
nodeunit: {
|
|
||||||
tasks: ['test/*_test.js']
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
// Actually load this plugin's task(s).
|
|
||||||
grunt.loadTasks('tasks');
|
|
||||||
|
|
||||||
// The clean plugin helps in testing.
|
|
||||||
grunt.loadNpmTasks('grunt-contrib-clean');
|
|
||||||
|
|
||||||
// Whenever the "test" task is run, first clean the "tmp" dir, then run this
|
|
||||||
// plugin's task(s), then test the result.
|
|
||||||
grunt.renameTask('test', 'nodeunit');
|
|
||||||
grunt.registerTask('test', 'clean jst nodeunit');
|
|
||||||
|
|
||||||
// By default, lint and run all tests.
|
|
||||||
grunt.registerTask('default', 'lint test');
|
|
||||||
};
|
|
21
package.json
21
package.json
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "grunt-contrib-jst",
|
"name": "grunt-contrib-jst",
|
||||||
"description": "Precompile Underscore templates to JST file.",
|
"description": "Precompile Underscore templates to JST file.",
|
||||||
"version": "0.3.2",
|
"version": "0.5.1",
|
||||||
"homepage": "https://github.com/gruntjs/grunt-contrib-jst",
|
"homepage": "https://github.com/gruntjs/grunt-contrib-jst",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Grunt Team",
|
"name": "Grunt Team",
|
||||||
@ -20,7 +20,6 @@
|
|||||||
"url": "https://github.com/gruntjs/grunt-contrib-jst/blob/master/LICENSE-MIT"
|
"url": "https://github.com/gruntjs/grunt-contrib-jst/blob/master/LICENSE-MIT"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"main": "grunt.js",
|
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">= 0.8.0"
|
"node": ">= 0.8.0"
|
||||||
},
|
},
|
||||||
@ -28,14 +27,24 @@
|
|||||||
"test": "grunt test"
|
"test": "grunt test"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"underscore": "~1.3.3",
|
"lodash": "~1.0.0",
|
||||||
"grunt-lib-contrib": "~0.3.0"
|
"grunt-lib-contrib": "~0.5.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"grunt": "~0.3.15",
|
"grunt-contrib-jshint": "~0.6.0",
|
||||||
"grunt-contrib-clean": "~0.3.0"
|
"grunt-contrib-nodeunit": "~0.2.0",
|
||||||
|
"grunt-contrib-clean": "~0.4.1",
|
||||||
|
"grunt-contrib-internal": "~0.4.5",
|
||||||
|
"grunt": "~0.4.0"
|
||||||
|
},
|
||||||
|
"peerDependencies": {
|
||||||
|
"grunt": "~0.4.0"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"gruntplugin"
|
"gruntplugin"
|
||||||
|
],
|
||||||
|
"files": [
|
||||||
|
"tasks",
|
||||||
|
"LICENSE-MIT"
|
||||||
]
|
]
|
||||||
}
|
}
|
88
tasks/jst.js
88
tasks/jst.js
@ -2,72 +2,94 @@
|
|||||||
* grunt-contrib-jst
|
* grunt-contrib-jst
|
||||||
* http://gruntjs.com/
|
* http://gruntjs.com/
|
||||||
*
|
*
|
||||||
* Copyright (c) 2012 Tim Branyen, contributors
|
* Copyright (c) 2013 Tim Branyen, contributors
|
||||||
* Licensed under the MIT license.
|
* Licensed under the MIT license.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
module.exports = function(grunt) {
|
'use strict';
|
||||||
"use strict";
|
|
||||||
|
|
||||||
var _ = require("underscore");
|
module.exports = function(grunt) {
|
||||||
var helpers = require('grunt-lib-contrib').init(grunt);
|
|
||||||
|
var _ = require('lodash');
|
||||||
|
|
||||||
// filename conversion for templates
|
// filename conversion for templates
|
||||||
var defaultProcessName = function(name) { return name; };
|
var defaultProcessName = function(name) { return name; };
|
||||||
|
|
||||||
grunt.registerMultiTask("jst", "Compile underscore templates to JST file", function() {
|
grunt.registerMultiTask('jst', 'Compile underscore templates to JST file', function() {
|
||||||
|
var lf = grunt.util.linefeed;
|
||||||
var helpers = require("grunt-lib-contrib").init(grunt);
|
var helpers = require('grunt-lib-contrib').init(grunt);
|
||||||
var options = helpers.options(this, {namespace: "JST", templateSettings: {}});
|
var options = this.options({
|
||||||
|
namespace: 'JST',
|
||||||
|
templateSettings: {},
|
||||||
|
processContent: function (src) { return src; },
|
||||||
|
separator: lf + lf,
|
||||||
|
template: _.template
|
||||||
|
});
|
||||||
|
|
||||||
// assign filename transformation functions
|
// assign filename transformation functions
|
||||||
var processName = options.processName || defaultProcessName;
|
var processName = options.processName || defaultProcessName;
|
||||||
|
|
||||||
grunt.verbose.writeflags(options, "Options");
|
var nsInfo;
|
||||||
|
if (options.namespace !== false) {
|
||||||
|
nsInfo = helpers.getNamespaceDeclaration(options.namespace);
|
||||||
|
}
|
||||||
|
|
||||||
// TODO: ditch this when grunt v0.4 is released
|
this.files.forEach(function(f) {
|
||||||
this.files = this.files || helpers.normalizeMultiTaskFiles(this.data, this.target);
|
var output = f.src.filter(function(filepath) {
|
||||||
|
// Warn on and remove invalid source files (if nonull was set).
|
||||||
var compiled, srcFiles, src, filename;
|
if (!grunt.file.exists(filepath)) {
|
||||||
var output = [];
|
grunt.log.warn('Source file "' + filepath + '" not found.');
|
||||||
var nsInfo = helpers.getNamespaceDeclaration(options.namespace);
|
return false;
|
||||||
|
} else {
|
||||||
this.files.forEach(function(files) {
|
return true;
|
||||||
srcFiles = grunt.file.expandFiles(files.src);
|
}
|
||||||
srcFiles.forEach(function(file) {
|
})
|
||||||
src = grunt.file.read(file);
|
.map(function(filepath) {
|
||||||
|
var src = options.processContent(grunt.file.read(filepath));
|
||||||
|
var compiled, filename;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
compiled = _.template(src, false, options.templateSettings).source;
|
compiled = options.template(src, false, options.templateSettings).source;
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
grunt.log.error(e);
|
grunt.log.error(e);
|
||||||
grunt.fail.warn("JST failed to compile.");
|
grunt.fail.warn('JST "' + filepath + '" failed to compile.');
|
||||||
}
|
}
|
||||||
|
|
||||||
if (options.prettify) {
|
if (options.prettify) {
|
||||||
compiled = compiled.replace(/\n+/g, '');
|
compiled = compiled.replace(new RegExp('\n', 'g'), '');
|
||||||
}
|
}
|
||||||
filename = processName(file);
|
filename = processName(filepath);
|
||||||
output.push(nsInfo.namespace+"["+JSON.stringify(filename)+"] = "+compiled+";");
|
|
||||||
|
if (options.amd && options.namespace === false) {
|
||||||
|
return 'return ' + compiled;
|
||||||
|
}
|
||||||
|
return nsInfo.namespace+'['+JSON.stringify(filename)+'] = '+compiled+';';
|
||||||
});
|
});
|
||||||
|
|
||||||
if(output.length > 0) {
|
if (output.length < 1) {
|
||||||
|
grunt.log.warn('Destination not written because compiled files were empty.');
|
||||||
|
} else {
|
||||||
|
if (options.namespace !== false) {
|
||||||
output.unshift(nsInfo.declaration);
|
output.unshift(nsInfo.declaration);
|
||||||
if (options.amdWrapper) {
|
}
|
||||||
|
if (options.amd) {
|
||||||
if (options.prettify) {
|
if (options.prettify) {
|
||||||
output.forEach(function(line, index) {
|
output.forEach(function(line, index) {
|
||||||
output[index] = " " + line;
|
output[index] = " " + line;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
output.unshift("define(function(){");
|
output.unshift("define(function(){");
|
||||||
output.push(" return " + nsInfo.namespace + ";\n});");
|
if (options.namespace !== false) {
|
||||||
|
// Namespace has not been explicitly set to false; the AMD
|
||||||
|
// wrapper will return the object containing the template.
|
||||||
|
output.push(" return " + nsInfo.namespace + ";");
|
||||||
}
|
}
|
||||||
grunt.file.write(files.dest, output.join("\n\n"));
|
output.push("});");
|
||||||
grunt.log.writeln("File '" + files.dest + "' created.");
|
}
|
||||||
|
grunt.file.write(f.dest, output.join(grunt.util.normalizelf(options.separator)));
|
||||||
|
grunt.log.writeln('File "' + f.dest + '" created.');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
};
|
};
|
||||||
|
@ -2,15 +2,14 @@ define(function(){
|
|||||||
|
|
||||||
this["JST"] = this["JST"] || {};
|
this["JST"] = this["JST"] || {};
|
||||||
|
|
||||||
this["JST"]["test/fixtures/template.html"] = function(obj){
|
this["JST"]["test/fixtures/template.html"] = function(obj) {
|
||||||
var __p='';var print=function(){__p+=Array.prototype.join.call(arguments, '')};
|
var __t, __p = '', __e = _.escape;
|
||||||
with(obj||{}){
|
__p += '<head><title>' +
|
||||||
__p+='<head><title>'+
|
((__t = ( obj.title )) == null ? '' : __t) +
|
||||||
( title )+
|
|
||||||
'</title></head>';
|
'</title></head>';
|
||||||
}
|
return __p
|
||||||
return __p;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
return this["JST"];
|
return this["JST"];
|
||||||
|
|
||||||
});
|
});
|
11
test/expected/amd_wrapper_no_ns.js
Normal file
11
test/expected/amd_wrapper_no_ns.js
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
define(function(){
|
||||||
|
|
||||||
|
return function(obj) {
|
||||||
|
var __t, __p = '', __e = _.escape;
|
||||||
|
__p += '<head><title>' +
|
||||||
|
((__t = ( obj.title )) == null ? '' : __t) +
|
||||||
|
'</title></head>';
|
||||||
|
return __p
|
||||||
|
}
|
||||||
|
|
||||||
|
});
|
@ -1,11 +1,9 @@
|
|||||||
this["JST"] = this["JST"] || {};
|
this["JST"] = this["JST"] || {};
|
||||||
|
|
||||||
this["JST"]["test/fixtures/template.html"] = function(obj){
|
this["JST"]["test/fixtures/template.html"] = function(obj) {
|
||||||
var __p='';var print=function(){__p+=Array.prototype.join.call(arguments, '')};
|
var __t, __p = '', __e = _.escape;
|
||||||
with(obj||{}){
|
__p += '<head><title>' +
|
||||||
__p+='<head><title>'+
|
((__t = ( obj.title )) == null ? '' : __t) +
|
||||||
( title )+
|
|
||||||
'</title></head>';
|
'</title></head>';
|
||||||
}
|
return __p
|
||||||
return __p;
|
|
||||||
};
|
};
|
13
test/expected/local_scope.js
Normal file
13
test/expected/local_scope.js
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
this["JST"] = this["JST"] || {};
|
||||||
|
|
||||||
|
this["JST"]["test/fixtures/template_local_scope.html"] = function(obj) {
|
||||||
|
obj || (obj = {});
|
||||||
|
var __t, __p = '', __e = _.escape;
|
||||||
|
with (obj) {
|
||||||
|
__p += '<head><title>' +
|
||||||
|
((__t = ( title )) == null ? '' : __t) +
|
||||||
|
'</title></head>';
|
||||||
|
|
||||||
|
}
|
||||||
|
return __p
|
||||||
|
};
|
@ -2,12 +2,10 @@ this["MyApp"] = this["MyApp"] || {};
|
|||||||
this["MyApp"]["JST"] = this["MyApp"]["JST"] || {};
|
this["MyApp"]["JST"] = this["MyApp"]["JST"] || {};
|
||||||
this["MyApp"]["JST"]["Main"] = this["MyApp"]["JST"]["Main"] || {};
|
this["MyApp"]["JST"]["Main"] = this["MyApp"]["JST"]["Main"] || {};
|
||||||
|
|
||||||
this["MyApp"]["JST"]["Main"]["test/fixtures/template.html"] = function(obj){
|
this["MyApp"]["JST"]["Main"]["test/fixtures/template.html"] = function(obj) {
|
||||||
var __p='';var print=function(){__p+=Array.prototype.join.call(arguments, '')};
|
var __t, __p = '', __e = _.escape;
|
||||||
with(obj||{}){
|
__p += '<head><title>' +
|
||||||
__p+='<head><title>'+
|
((__t = ( obj.title )) == null ? '' : __t) +
|
||||||
( title )+
|
|
||||||
'</title></head>';
|
'</title></head>';
|
||||||
}
|
return __p
|
||||||
return __p;
|
|
||||||
};
|
};
|
@ -1,3 +1,3 @@
|
|||||||
this["JST"] = this["JST"] || {};
|
this["JST"] = this["JST"] || {};
|
||||||
|
|
||||||
this["JST"]["test/fixtures/template.html"] = function(obj){var __p='';var print=function(){__p+=Array.prototype.join.call(arguments, '')};with(obj||{}){__p+='<head><title>'+( title )+'</title></head>';}return __p;};
|
this["JST"]["test/fixtures/template.html"] = function(obj) {var __t, __p = '', __e = _.escape;__p += '<head><title>' +((__t = ( obj.title )) == null ? '' : __t) +'</title></head>';return __p};
|
@ -2,7 +2,8 @@ define(function(){
|
|||||||
|
|
||||||
this["JST"] = this["JST"] || {};
|
this["JST"] = this["JST"] || {};
|
||||||
|
|
||||||
this["JST"]["test/fixtures/template.html"] = function(obj){var __p='';var print=function(){__p+=Array.prototype.join.call(arguments, '')};with(obj||{}){__p+='<head><title>'+( title )+'</title></head>';}return __p;};
|
this["JST"]["test/fixtures/template.html"] = function(obj) {var __t, __p = '', __e = _.escape;__p += '<head><title>' +((__t = ( obj.title )) == null ? '' : __t) +'</title></head>';return __p};
|
||||||
|
|
||||||
return this["JST"];
|
return this["JST"];
|
||||||
|
|
||||||
});
|
});
|
9
test/expected/process_content.js
Normal file
9
test/expected/process_content.js
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
this["JST"] = this["JST"] || {};
|
||||||
|
|
||||||
|
this["JST"]["test/fixtures/indent_template.html"] = function(obj) {
|
||||||
|
var __t, __p = '', __e = _.escape;
|
||||||
|
__p += '<div>\n<div>\n<div>\n' +
|
||||||
|
((__t = ( obj.name )) == null ? '' : __t) +
|
||||||
|
'\n</div>\n</div>\n</div>';
|
||||||
|
return __p
|
||||||
|
};
|
@ -1,9 +1,7 @@
|
|||||||
this["JST"] = this["JST"] || {};
|
this["JST"] = this["JST"] || {};
|
||||||
|
|
||||||
this["JST"]["test/fixtures/it's-a-bad-filename.html"] = function(obj){
|
this["JST"]["test/fixtures/it's-a-bad-filename.html"] = function(obj) {
|
||||||
var __p='';var print=function(){__p+=Array.prototype.join.call(arguments, '')};
|
var __t, __p = '', __e = _.escape;
|
||||||
with(obj||{}){
|
__p += 'never name your file like this.';
|
||||||
__p+='never name your file like this.';
|
return __p
|
||||||
}
|
|
||||||
return __p;
|
|
||||||
};
|
};
|
7
test/fixtures/indent_template.html
vendored
Normal file
7
test/fixtures/indent_template.html
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
<div>
|
||||||
|
<%= obj.name %>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
2
test/fixtures/template.html
vendored
2
test/fixtures/template.html
vendored
@ -1 +1 @@
|
|||||||
<head><title><%= title %></title></head>
|
<head><title><%= obj.title %></title></head>
|
1
test/fixtures/template_local_scope.html
vendored
Normal file
1
test/fixtures/template_local_scope.html
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
<head><title><%= title %></title></head>
|
@ -6,7 +6,7 @@ exports['jst'] = {
|
|||||||
|
|
||||||
var expect, result;
|
var expect, result;
|
||||||
|
|
||||||
test.expect(7);
|
test.expect(10);
|
||||||
|
|
||||||
expect = grunt.file.read("test/expected/jst.js");
|
expect = grunt.file.read("test/expected/jst.js");
|
||||||
result = grunt.file.read("tmp/jst.js");
|
result = grunt.file.read("tmp/jst.js");
|
||||||
@ -32,10 +32,22 @@ exports['jst'] = {
|
|||||||
result = grunt.file.read("tmp/amd_wrapper.js");
|
result = grunt.file.read("tmp/amd_wrapper.js");
|
||||||
test.equal(expect, result, "should wrap the template with define for AMD pattern");
|
test.equal(expect, result, "should wrap the template with define for AMD pattern");
|
||||||
|
|
||||||
|
expect = grunt.file.read("test/expected/amd_wrapper_no_ns.js");
|
||||||
|
result = grunt.file.read("tmp/amd_wrapper_no_ns.js");
|
||||||
|
test.equal(expect, result, "should wrap the template with define for AMD pattern and return the function itself with no namespace");
|
||||||
|
|
||||||
expect = grunt.file.read("test/expected/pretty_amd.js");
|
expect = grunt.file.read("test/expected/pretty_amd.js");
|
||||||
result = grunt.file.read("tmp/pretty_amd.js");
|
result = grunt.file.read("tmp/pretty_amd.js");
|
||||||
test.equal(expect, result, "should make the AMD wrapper output pretty");
|
test.equal(expect, result, "should make the AMD wrapper output pretty");
|
||||||
|
|
||||||
|
expect = grunt.file.read("test/expected/process_content.js");
|
||||||
|
result = grunt.file.read("tmp/process_content.js");
|
||||||
|
test.equal(expect, result, "should convert file content");
|
||||||
|
|
||||||
|
expect = grunt.file.read("test/expected/local_scope.js");
|
||||||
|
result = grunt.file.read("tmp/local_scope.js");
|
||||||
|
test.equal(expect, result, "should add `with` block when templateSettings.variable is undefined");
|
||||||
|
|
||||||
test.done();
|
test.done();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user