Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated code to work with Grunt 1.0. #90

Open
wants to merge 18 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: node_js
node_js:
- "0.10"
- "4"
before_install:
- npm install -g grunt-cli
script: grunt
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ module.exports = function(grunt) {
helpers: 'test/fixtures/requirejs/spec/*Helper.js',
host: 'http://127.0.0.1:<%= connect.test.port %>/',
template: require('./'),
templateOptions: grunt.util._.extend({version: "vendor/require-2.1.8.js"}, defaultTemplateOptions)
templateOptions: grunt.util._.extend({version: "vendor/require-2.3.3.js"}, defaultTemplateOptions)
}
},
parse_test: {
Expand Down
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
RequireJS template for Jasmine unit tests [![Build Status](https://travis-ci.org/cloudchen/grunt-template-jasmine-requirejs.png?branch=master)](https://travis-ci.org/cloudchen/grunt-template-jasmine-requirejs)
RequireJS template for Jasmine unit tests [![Build Status](https://travis-ci.org/radum/grunt-template-jasmine-requirejs.png?branch=master)](https://travis-ci.org/radum/grunt-template-jasmine-requirejs)
-----------------------------------------

## Installation
Expand Down Expand Up @@ -247,6 +247,11 @@ var require = {
This automation can help to avoid unexpected dependency order issue

## Change Log

* v0.4.1 Clean template html code
* v0.4.0 Upgrade RequireJs to 2.3.5
* v0.3.1 Upgrade RequireJs to 2.3.3
* v0.3.0 Upgrade to Grunt 1.0
* v0.2.3 Fixed path issues [#77](https://github.com/cloudchen/grunt-template-jasmine-requirejs/pull/77)
* v0.2.2 Fixed regression which casued by [#65](https://github.com/cloudchen/grunt-template-jasmine-requirejs/pull/65)
* v0.2.1 Fixed [#65](https://github.com/cloudchen/grunt-template-jasmine-requirejs/pull/65)
Expand All @@ -256,5 +261,7 @@ This automation can help to avoid unexpected dependency order issue

### Authors / Maintainers

- RaduM (@radumicu) - Upgraded to work with Grunt v1, apart from that there is no other work done.

- Jarrod Overson (@jsoverson)
- Cloud Chen (@cloudchen)
Loading