Compare commits
25 Commits
master
...
merge-mast
Author | SHA1 | Date | |
---|---|---|---|
|
10f13508aa | ||
|
719a961fb5 | ||
|
285f3ec285 | ||
|
806ddbe0c0 | ||
|
adb8c048de | ||
|
c8bf51f6e5 | ||
|
8491220004 | ||
|
10a06938b9 | ||
|
400eba0fa1 | ||
|
a71859bdf3 | ||
|
dba65df851 | ||
|
0b22db3937 | ||
|
d06dc07fd3 | ||
|
a860ce1eb9 | ||
|
514e7782a6 | ||
|
53cfd8107e | ||
|
f50f1a76cc | ||
|
671b3d069c | ||
|
eea4f84f69 | ||
|
5de2bd1e4d | ||
|
3aedc01de3 | ||
|
8a8cdd6b04 | ||
|
3576c6f107 | ||
|
1b68927794 | ||
|
ba4ba32360 |
3
.gitattributes
vendored
3
.gitattributes
vendored
@ -1,2 +1 @@
|
||||
# Automatically normalize line endings for all text-based files
|
||||
* text=crlf
|
||||
* text=auto
|
||||
|
@ -1,13 +1,14 @@
|
||||
{
|
||||
"boss": true,
|
||||
"curly": true,
|
||||
"eqeqeq": true,
|
||||
"eqnull": true,
|
||||
"immed": true,
|
||||
"latedef": true,
|
||||
"newcap": true,
|
||||
"noarg": true,
|
||||
"node": true,
|
||||
"sub": true,
|
||||
"undef": true,
|
||||
"boss": true,
|
||||
"eqnull": true,
|
||||
"node": true
|
||||
"unused": true
|
||||
}
|
17
.travis.yml
17
.travis.yml
@ -1,6 +1,17 @@
|
||||
sudo: false
|
||||
|
||||
language: node_js
|
||||
|
||||
node_js:
|
||||
- "0.8"
|
||||
- "0.10"
|
||||
before_script:
|
||||
- npm install -g grunt-cli
|
||||
- "0.12"
|
||||
- "4"
|
||||
- "5"
|
||||
- "iojs"
|
||||
|
||||
matrix:
|
||||
fast_finish: true
|
||||
|
||||
cache:
|
||||
directories:
|
||||
- node_modules
|
||||
|
10
CHANGELOG
10
CHANGELOG
@ -1,3 +1,13 @@
|
||||
v1.0.0:
|
||||
date: 2016-03-04
|
||||
changes:
|
||||
- Bug fixes and dependency updates.
|
||||
- Remove peerDeps and other fixes.
|
||||
v0.6.0:
|
||||
date: 2014-02-28
|
||||
changes:
|
||||
- Bug fixes and dependency updates.
|
||||
- Adds color log.
|
||||
v0.5.1:
|
||||
date: 2013-07-14
|
||||
changes:
|
||||
|
32
Gruntfile.js
32
Gruntfile.js
@ -2,7 +2,7 @@
|
||||
* grunt-contrib-jst
|
||||
* http://gruntjs.com/
|
||||
*
|
||||
* Copyright (c) 2013 Tim Branyen, contributors
|
||||
* Copyright (c) 2016 Tim Branyen, contributors
|
||||
* Licensed under the MIT license.
|
||||
*/
|
||||
|
||||
@ -37,7 +37,7 @@ module.exports = function(grunt) {
|
||||
}
|
||||
},
|
||||
files: {
|
||||
"tmp/jst.js": ["test/fixtures/template.html"]
|
||||
'tmp/jst.js': ['test/fixtures/template.html']
|
||||
}
|
||||
},
|
||||
pretty_amd: {
|
||||
@ -49,7 +49,7 @@ module.exports = function(grunt) {
|
||||
amd: true
|
||||
},
|
||||
files: {
|
||||
"tmp/pretty_amd.js": ["test/fixtures/template.html"]
|
||||
'tmp/pretty_amd.js': ['test/fixtures/template.html']
|
||||
}
|
||||
},
|
||||
prettify: {
|
||||
@ -60,7 +60,7 @@ module.exports = function(grunt) {
|
||||
prettify: true
|
||||
},
|
||||
files: {
|
||||
"tmp/pretty.js": ["test/fixtures/template.html"]
|
||||
'tmp/pretty.js': ['test/fixtures/template.html']
|
||||
}
|
||||
},
|
||||
amd_wrapper: {
|
||||
@ -71,7 +71,7 @@ module.exports = function(grunt) {
|
||||
amd:true
|
||||
},
|
||||
files: {
|
||||
"tmp/amd_wrapper.js": ["test/fixtures/template.html"]
|
||||
'tmp/amd_wrapper.js': ['test/fixtures/template.html']
|
||||
}
|
||||
},
|
||||
amd_wrapper_no_ns: {
|
||||
@ -79,21 +79,21 @@ module.exports = function(grunt) {
|
||||
templateSettings: {
|
||||
variable: 'obj'
|
||||
},
|
||||
amd:true,
|
||||
namespace:false
|
||||
amd: true,
|
||||
namespace: false
|
||||
},
|
||||
files: {
|
||||
"tmp/amd_wrapper_no_ns.js": ["test/fixtures/template.html"]
|
||||
'tmp/amd_wrapper_no_ns.js': ['test/fixtures/template.html']
|
||||
}
|
||||
},
|
||||
uglyfile: {
|
||||
options: {
|
||||
templateSettings: {
|
||||
variable: 'obj'
|
||||
},
|
||||
}
|
||||
},
|
||||
files: {
|
||||
"tmp/uglyfile.js": ["test/fixtures/*bad-filename*"]
|
||||
'tmp/uglyfile.js': ['test/fixtures/*bad-filename*']
|
||||
}
|
||||
},
|
||||
ns_nested: {
|
||||
@ -101,10 +101,10 @@ module.exports = function(grunt) {
|
||||
templateSettings: {
|
||||
variable: 'obj'
|
||||
},
|
||||
namespace: "MyApp.JST.Main"
|
||||
namespace: 'MyApp.JST.Main'
|
||||
},
|
||||
files: {
|
||||
"tmp/ns_nested.js": ["test/fixtures/template.html"]
|
||||
'tmp/ns_nested.js': ['test/fixtures/template.html']
|
||||
}
|
||||
},
|
||||
ns_nested_this: {
|
||||
@ -112,10 +112,10 @@ module.exports = function(grunt) {
|
||||
templateSettings: {
|
||||
variable: 'obj'
|
||||
},
|
||||
namespace: "this.MyApp.JST.Main"
|
||||
namespace: 'this.MyApp.JST.Main'
|
||||
},
|
||||
files: {
|
||||
"tmp/ns_nested_this.js": ["test/fixtures/template.html"]
|
||||
'tmp/ns_nested_this.js': ['test/fixtures/template.html']
|
||||
}
|
||||
},
|
||||
process_content: {
|
||||
@ -128,12 +128,12 @@ module.exports = function(grunt) {
|
||||
}
|
||||
},
|
||||
files: {
|
||||
"tmp/process_content.js": ["test/fixtures/indent_template.html"]
|
||||
'tmp/process_content.js': ['test/fixtures/indent_template.html']
|
||||
}
|
||||
},
|
||||
local_scope: {
|
||||
files: {
|
||||
"tmp/local_scope.js": ["test/fixtures/template_local_scope.html"]
|
||||
'tmp/local_scope.js': ['test/fixtures/template_local_scope.html']
|
||||
}
|
||||
}
|
||||
},
|
||||
|
@ -1,4 +1,4 @@
|
||||
Copyright (c) 2013 Tim Branyen, contributors
|
||||
Copyright (c) 2016 Tim Branyen, contributors
|
||||
|
||||
Permission is hereby granted, free of charge, to any person
|
||||
obtaining a copy of this software and associated documentation
|
||||
|
35
README.md
35
README.md
@ -1,11 +1,10 @@
|
||||
# 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)
|
||||
# grunt-contrib-jst v1.0.0 [![Build Status: Linux](https://travis-ci.org/gruntjs/grunt-contrib-jst.svg?branch=master)](https://travis-ci.org/gruntjs/grunt-contrib-jst) [![Build Status: Windows](https://ci.appveyor.com/api/projects/status/mxt7687c8r7bn7ab/branch/master?svg=true)](https://ci.appveyor.com/project/gruntjs/grunt-contrib-jst/branch/master)
|
||||
|
||||
> Precompile Underscore templates to JST file.
|
||||
> Precompile Underscore templates to JST file
|
||||
|
||||
|
||||
|
||||
## Getting Started
|
||||
This plugin requires Grunt `~0.4.0`
|
||||
|
||||
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:
|
||||
|
||||
@ -39,27 +38,27 @@ Concatenated files will be joined on this string.
|
||||
|
||||
#### namespace
|
||||
Type: `String`
|
||||
Default: 'JST'
|
||||
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
|
||||
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();
|
||||
processName: function(filepath) {
|
||||
return filepath.toUpperCase();
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
#### templateSettings
|
||||
Type: `Object`
|
||||
Default: null
|
||||
Default: `null`
|
||||
|
||||
The settings passed to underscore when compiling templates.
|
||||
|
||||
@ -68,11 +67,11 @@ jst: {
|
||||
compile: {
|
||||
options: {
|
||||
templateSettings: {
|
||||
interpolate : /\{\{(.+?)\}\}/g
|
||||
interpolate: /\{\{(.+?)\}\}/g
|
||||
}
|
||||
},
|
||||
files: {
|
||||
"path/to/compiled/templates.js": ["path/to/source/**/*.html"]
|
||||
'path/to/compiled/templates.js': ['path/to/source/**/*.html']
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -80,7 +79,7 @@ jst: {
|
||||
|
||||
#### prettify
|
||||
Type: `boolean`
|
||||
Default: false
|
||||
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
|
||||
@ -94,14 +93,14 @@ options: {
|
||||
|
||||
#### amd
|
||||
Type: `boolean`
|
||||
Default: false
|
||||
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]'];
|
||||
//...//
|
||||
return this['[template namespace]'];
|
||||
});
|
||||
```
|
||||
|
||||
@ -135,11 +134,11 @@ jst: {
|
||||
compile: {
|
||||
options: {
|
||||
templateSettings: {
|
||||
interpolate : /\{\{(.+?)\}\}/g
|
||||
interpolate: /\{\{(.+?)\}\}/g
|
||||
}
|
||||
},
|
||||
files: {
|
||||
"path/to/compiled/templates.js": ["path/to/source/**/*.html"]
|
||||
'path/to/compiled/templates.js': ['path/to/source/**/*.html']
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -149,6 +148,8 @@ Note that the `interpolate: /\{\{(.+?)\}\}/g` setting above is simply an example
|
||||
|
||||
## Release History
|
||||
|
||||
* 2016-03-04 v1.0.0 Bug fixes and dependency updates. Remove peerDeps and other fixes.
|
||||
* 2014-02-28 v0.6.0 Bug fixes and dependency updates. Adds color log.
|
||||
* 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.
|
||||
@ -165,4 +166,4 @@ Note that the `interpolate: /\{\{(.+?)\}\}/g` setting above is simply an example
|
||||
|
||||
Task submitted by [Tim Branyen](http://tbranyen.com)
|
||||
|
||||
*This file was generated on Sat Oct 19 2013 14:22:27.*
|
||||
*This file was generated on Thu Apr 14 2016 09:40:42.*
|
||||
|
37
appveyor.yml
Normal file
37
appveyor.yml
Normal file
@ -0,0 +1,37 @@
|
||||
clone_depth: 10
|
||||
|
||||
version: "{build}"
|
||||
|
||||
# What combinations to test
|
||||
environment:
|
||||
matrix:
|
||||
- nodejs_version: "0.10"
|
||||
platform: x86
|
||||
- nodejs_version: "0.12"
|
||||
platform: x86
|
||||
- nodejs_version: "4"
|
||||
platform: x64
|
||||
- nodejs_version: "4"
|
||||
platform: x86
|
||||
- nodejs_version: "5"
|
||||
platform: x86
|
||||
|
||||
install:
|
||||
- ps: Install-Product node $env:nodejs_version $env:platform
|
||||
- npm install
|
||||
|
||||
test_script:
|
||||
# Output useful info for debugging
|
||||
- node --version && npm --version
|
||||
# We test multiple Windows shells because of prior stdout buffering issues
|
||||
# filed against Grunt. https://github.com/joyent/node/issues/3584
|
||||
- ps: "npm test # PowerShell" # Pass comment to PS for easier debugging
|
||||
- cmd: npm test
|
||||
|
||||
build: off
|
||||
|
||||
matrix:
|
||||
fast_finish: true
|
||||
|
||||
cache:
|
||||
- node_modules -> package.json
|
@ -5,11 +5,11 @@ jst: {
|
||||
compile: {
|
||||
options: {
|
||||
templateSettings: {
|
||||
interpolate : /\{\{(.+?)\}\}/g
|
||||
interpolate: /\{\{(.+?)\}\}/g
|
||||
}
|
||||
},
|
||||
files: {
|
||||
"path/to/compiled/templates.js": ["path/to/source/**/*.html"]
|
||||
'path/to/compiled/templates.js': ['path/to/source/**/*.html']
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -8,27 +8,27 @@ Concatenated files will be joined on this string.
|
||||
|
||||
## namespace
|
||||
Type: `String`
|
||||
Default: 'JST'
|
||||
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
|
||||
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();
|
||||
processName: function(filepath) {
|
||||
return filepath.toUpperCase();
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
## templateSettings
|
||||
Type: `Object`
|
||||
Default: null
|
||||
Default: `null`
|
||||
|
||||
The settings passed to underscore when compiling templates.
|
||||
|
||||
@ -37,11 +37,11 @@ jst: {
|
||||
compile: {
|
||||
options: {
|
||||
templateSettings: {
|
||||
interpolate : /\{\{(.+?)\}\}/g
|
||||
interpolate: /\{\{(.+?)\}\}/g
|
||||
}
|
||||
},
|
||||
files: {
|
||||
"path/to/compiled/templates.js": ["path/to/source/**/*.html"]
|
||||
'path/to/compiled/templates.js': ['path/to/source/**/*.html']
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -49,7 +49,7 @@ jst: {
|
||||
|
||||
## prettify
|
||||
Type: `boolean`
|
||||
Default: false
|
||||
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
|
||||
@ -63,14 +63,14 @@ options: {
|
||||
|
||||
## amd
|
||||
Type: `boolean`
|
||||
Default: false
|
||||
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]'];
|
||||
//...//
|
||||
return this['[template namespace]'];
|
||||
});
|
||||
```
|
||||
|
||||
|
46
package.json
46
package.json
@ -1,50 +1,36 @@
|
||||
{
|
||||
"name": "grunt-contrib-jst",
|
||||
"description": "Precompile Underscore templates to JST file.",
|
||||
"version": "0.5.1",
|
||||
"homepage": "https://github.com/gruntjs/grunt-contrib-jst",
|
||||
"description": "Precompile Underscore templates to JST file",
|
||||
"version": "1.0.0",
|
||||
"author": {
|
||||
"name": "Grunt Team",
|
||||
"url": "http://gruntjs.com/"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/gruntjs/grunt-contrib-jst.git"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/gruntjs/grunt-contrib-jst/issues"
|
||||
},
|
||||
"licenses": [
|
||||
{
|
||||
"type": "MIT",
|
||||
"url": "https://github.com/gruntjs/grunt-contrib-jst/blob/master/LICENSE-MIT"
|
||||
}
|
||||
],
|
||||
"repository": "gruntjs/grunt-contrib-jst",
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">= 0.8.0"
|
||||
"node": ">=0.10.0"
|
||||
},
|
||||
"main": "tasks/jst.js",
|
||||
"scripts": {
|
||||
"test": "grunt test"
|
||||
},
|
||||
"dependencies": {
|
||||
"lodash": "~1.0.0",
|
||||
"grunt-lib-contrib": "~0.5.1"
|
||||
"chalk": "^1.0.0",
|
||||
"lodash": "^2.4.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"grunt-contrib-jshint": "~0.6.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"
|
||||
"grunt": "^1.0.0",
|
||||
"grunt-contrib-clean": "^1.0.0",
|
||||
"grunt-contrib-internal": "^1.1.0",
|
||||
"grunt-contrib-jshint": "^1.0.0",
|
||||
"grunt-contrib-nodeunit": "^1.0.0"
|
||||
},
|
||||
"keywords": [
|
||||
"gruntplugin"
|
||||
],
|
||||
"files": [
|
||||
"tasks",
|
||||
"LICENSE-MIT"
|
||||
]
|
||||
"tasks"
|
||||
],
|
||||
"appveyor_id": "mxt7687c8r7bn7ab"
|
||||
}
|
33
tasks/jst.js
33
tasks/jst.js
@ -2,27 +2,28 @@
|
||||
* grunt-contrib-jst
|
||||
* http://gruntjs.com/
|
||||
*
|
||||
* Copyright (c) 2013 Tim Branyen, contributors
|
||||
* Copyright (c) 2016 Tim Branyen, contributors
|
||||
* Licensed under the MIT license.
|
||||
*/
|
||||
|
||||
'use strict';
|
||||
|
||||
var _ = require('lodash');
|
||||
var chalk = require('chalk');
|
||||
|
||||
module.exports = function(grunt) {
|
||||
|
||||
var _ = require('lodash');
|
||||
|
||||
// filename conversion for templates
|
||||
var defaultProcessName = function(name) { return name; };
|
||||
|
||||
grunt.registerMultiTask('jst', 'Compile underscore templates to JST file', function() {
|
||||
var lf = grunt.util.linefeed;
|
||||
var helpers = require('grunt-lib-contrib').init(grunt);
|
||||
var lib = require('./lib/jst');
|
||||
var options = this.options({
|
||||
namespace: 'JST',
|
||||
templateSettings: {},
|
||||
processContent: function (src) { return src; },
|
||||
separator: lf + lf
|
||||
separator: lf + lf,
|
||||
template: _.template
|
||||
});
|
||||
|
||||
// assign filename transformation functions
|
||||
@ -30,14 +31,14 @@ module.exports = function(grunt) {
|
||||
|
||||
var nsInfo;
|
||||
if (options.namespace !== false) {
|
||||
nsInfo = helpers.getNamespaceDeclaration(options.namespace);
|
||||
nsInfo = lib.getNamespaceDeclaration(options.namespace);
|
||||
}
|
||||
|
||||
this.files.forEach(function(f) {
|
||||
var output = f.src.filter(function(filepath) {
|
||||
// Warn on and remove invalid source files (if nonull was set).
|
||||
if (!grunt.file.exists(filepath)) {
|
||||
grunt.log.warn('Source file "' + filepath + '" not found.');
|
||||
grunt.log.warn('Source file ' + chalk.cyan(filepath) + ' not found.');
|
||||
return false;
|
||||
} else {
|
||||
return true;
|
||||
@ -48,14 +49,14 @@ module.exports = function(grunt) {
|
||||
var compiled, filename;
|
||||
|
||||
try {
|
||||
compiled = _.template(src, false, options.templateSettings).source;
|
||||
compiled = options.template(src, false, options.templateSettings).source;
|
||||
} catch (e) {
|
||||
grunt.log.error(e);
|
||||
grunt.fail.warn('JST "' + filepath + '" failed to compile.');
|
||||
grunt.fail.warn('JST ' + chalk.cyan(filepath) + ' failed to compile.');
|
||||
}
|
||||
|
||||
if (options.prettify) {
|
||||
compiled = compiled.replace(new RegExp('\n', 'g'), '');
|
||||
compiled = compiled.replace(/\n/g, '');
|
||||
}
|
||||
filename = processName(filepath);
|
||||
|
||||
@ -74,19 +75,19 @@ module.exports = function(grunt) {
|
||||
if (options.amd) {
|
||||
if (options.prettify) {
|
||||
output.forEach(function(line, index) {
|
||||
output[index] = " " + line;
|
||||
output[index] = ' ' + line;
|
||||
});
|
||||
}
|
||||
output.unshift("define(function(){");
|
||||
output.unshift('define(function(){');
|
||||
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 + ";");
|
||||
output.push(' return ' + nsInfo.namespace + ';');
|
||||
}
|
||||
output.push("});");
|
||||
output.push('});');
|
||||
}
|
||||
grunt.file.write(f.dest, output.join(grunt.util.normalizelf(options.separator)));
|
||||
grunt.log.writeln('File "' + f.dest + '" created.');
|
||||
grunt.log.writeln('File ' + chalk.cyan(f.dest) + ' created.');
|
||||
}
|
||||
});
|
||||
|
||||
|
20
tasks/lib/jst.js
Normal file
20
tasks/lib/jst.js
Normal file
@ -0,0 +1,20 @@
|
||||
'use strict';
|
||||
|
||||
exports.getNamespaceDeclaration = function(ns) {
|
||||
var output = [];
|
||||
var curPath = 'this';
|
||||
if (ns !== 'this') {
|
||||
var nsParts = ns.split('.');
|
||||
nsParts.forEach(function(curPart) {
|
||||
if (curPart !== 'this') {
|
||||
curPath += '[' + JSON.stringify(curPart) + ']';
|
||||
output.push(curPath + ' = ' + curPath + ' || {};');
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
return {
|
||||
namespace: curPath,
|
||||
declaration: output.join('\n')
|
||||
};
|
||||
};
|
@ -1,52 +1,61 @@
|
||||
'use strict';
|
||||
|
||||
var grunt = require('grunt');
|
||||
|
||||
exports['jst'] = {
|
||||
function readFile(file) {
|
||||
var contents = grunt.file.read(file);
|
||||
if (process.platform === 'win32') {
|
||||
contents = contents.replace(/\r\n/g, '\n');
|
||||
}
|
||||
return contents;
|
||||
}
|
||||
|
||||
exports.jst = {
|
||||
main: function(test) {
|
||||
'use strict';
|
||||
|
||||
var expect, result;
|
||||
|
||||
test.expect(10);
|
||||
|
||||
expect = grunt.file.read("test/expected/jst.js");
|
||||
result = grunt.file.read("tmp/jst.js");
|
||||
test.equal(expect, result, "should compile underscore templates into JST");
|
||||
expect = readFile('test/expected/jst.js');
|
||||
result = readFile('tmp/jst.js');
|
||||
test.equal(expect, result, 'should compile underscore templates into JST');
|
||||
|
||||
expect = grunt.file.read("test/expected/uglyfile.js");
|
||||
result = grunt.file.read("tmp/uglyfile.js");
|
||||
test.equal(expect, result, "should escape single quotes in filenames");
|
||||
expect = readFile('test/expected/uglyfile.js');
|
||||
result = readFile('tmp/uglyfile.js');
|
||||
test.equal(expect, result, 'should escape single quotes in filenames');
|
||||
|
||||
expect = grunt.file.read("test/expected/ns_nested.js");
|
||||
result = grunt.file.read("tmp/ns_nested.js");
|
||||
test.equal(expect, result, "should define parts of nested namespaces");
|
||||
expect = readFile('test/expected/ns_nested.js');
|
||||
result = readFile('tmp/ns_nested.js');
|
||||
test.equal(expect, result, 'should define parts of nested namespaces');
|
||||
|
||||
expect = grunt.file.read("test/expected/ns_nested.js"); // same as previous test
|
||||
result = grunt.file.read("tmp/ns_nested_this.js");
|
||||
test.equal(expect, result, "should define parts of nested namespaces, ignoring this.");
|
||||
expect = readFile('test/expected/ns_nested.js'); // same as previous test
|
||||
result = readFile('tmp/ns_nested_this.js');
|
||||
test.equal(expect, result, 'should define parts of nested namespaces, ignoring this.');
|
||||
|
||||
expect = grunt.file.read("test/expected/pretty.js");
|
||||
result = grunt.file.read("tmp/pretty.js");
|
||||
test.equal(expect, result, "should make the output be 1 line per template, making the output less ugly");
|
||||
expect = readFile('test/expected/pretty.js');
|
||||
result = readFile('tmp/pretty.js');
|
||||
test.equal(expect, result, 'should make the output be 1 line per template, making the output less ugly');
|
||||
|
||||
expect = grunt.file.read("test/expected/amd_wrapper.js");
|
||||
result = grunt.file.read("tmp/amd_wrapper.js");
|
||||
test.equal(expect, result, "should wrap the template with define for AMD pattern");
|
||||
expect = readFile('test/expected/amd_wrapper.js');
|
||||
result = readFile('tmp/amd_wrapper.js');
|
||||
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 = readFile('test/expected/amd_wrapper_no_ns.js');
|
||||
result = readFile('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");
|
||||
result = grunt.file.read("tmp/pretty_amd.js");
|
||||
test.equal(expect, result, "should make the AMD wrapper output pretty");
|
||||
expect = readFile('test/expected/pretty_amd.js');
|
||||
result = readFile('tmp/pretty_amd.js');
|
||||
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 = readFile('test/expected/process_content.js');
|
||||
result = readFile('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");
|
||||
expect = readFile('test/expected/local_scope.js');
|
||||
result = readFile('tmp/local_scope.js');
|
||||
test.equal(expect, result, 'should add `with` block when templateSettings.variable is undefined');
|
||||
|
||||
test.done();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user