-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from Dignifiedquire/update
Update to Grunt 0.4.0 and Cucumber 0.3.0
- Loading branch information
Showing
9 changed files
with
252 additions
and
163 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"curly": true, | ||
"eqeqeq": true, | ||
"immed": true, | ||
"latedef": true, | ||
"newcap": true, | ||
"noarg": true, | ||
"sub": true, | ||
"undef": true, | ||
"boss": true, | ||
"eqnull": true, | ||
"node": true, | ||
"es5": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Changelog | ||
|
||
|
||
## v 0.2.0 | ||
|
||
* Update to Grunt `0.4.0`. | ||
* Update to CucumberJS `0.3.0`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
module.exports = function (grunt) { | ||
'use strict'; | ||
|
||
grunt.initConfig({ | ||
jshint: { | ||
files: ['grunt.js', 'tasks/*.js'], | ||
options: { | ||
jshintrc: '.jshintrc' | ||
} | ||
}, | ||
cucumberjs: { | ||
files: 'features', | ||
options: { | ||
steps: 'features/step_definitions', | ||
format: 'pretty' | ||
} | ||
} | ||
}); | ||
|
||
grunt.loadNpmTasks('grunt-contrib-jshint'); | ||
|
||
grunt.loadTasks('tasks'); | ||
|
||
grunt.registerTask('default', ['jshint', 'cucumberjs']); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,43 @@ | ||
{ | ||
"name" : "grunt-cucumber", | ||
"description" : "Grunt task for running Cucumber.js", | ||
"version" : "0.1.1", | ||
"homepage" : "https://github.com/s9tpepper/grunt-cucumber-js", | ||
"author" : { | ||
"name" : "Omar Gonzalez", | ||
"email" : "[email protected]", | ||
"url" : "http://omar.likesflex.com" | ||
}, | ||
"repository" : { | ||
"type" : "git", | ||
"url" : "git://github.com/s9tpepper/grunt-cucumber-js.git" | ||
}, | ||
"bugs" : { | ||
"url" : "https://github.com/s9tpepper/grunt-cucumber-js/issues" | ||
}, | ||
"licenses" : [ | ||
{ | ||
"type" : "MIT", | ||
"url" : "https://github.com/s9tpepper/grunt-cucumber-js/blob/master/LICENSE-MIT" | ||
} | ||
], | ||
"main" : "grunt.js", | ||
"bin" : "bin/grunt-cucumber", | ||
"engines" : { | ||
"node" : "*" | ||
}, | ||
"scripts" : { | ||
}, | ||
"dependencies" : { | ||
}, | ||
"devDependencies" : { | ||
"grunt" : "~0.3.9", | ||
"cucumber": "~0.2.19" | ||
}, | ||
"keywords" : [ | ||
"gruntplugin", | ||
"grunt", | ||
"plugins", | ||
"builds", | ||
"ci" | ||
] | ||
} | ||
"name": "grunt-cucumber", | ||
"description": "Grunt task for running Cucumber.js", | ||
"version": "0.2.0", | ||
"homepage": "https://github.com/s9tpepper/grunt-cucumber-js", | ||
"author": { | ||
"name": "Omar Gonzalez", | ||
"email": "[email protected]", | ||
"url": "http://omar.likesflex.com" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/s9tpepper/grunt-cucumber-js.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/s9tpepper/grunt-cucumber-js/issues" | ||
}, | ||
"licenses": [ | ||
{ | ||
"type": "MIT", | ||
"url": "https://github.com/s9tpepper/grunt-cucumber-js/blob/master/LICENSE-MIT" | ||
} | ||
], | ||
"main": "Gruntfile.js", | ||
"engines": { | ||
"node": "*" | ||
}, | ||
"scripts": {}, | ||
"dependencies": { | ||
"cucumber": "~0.3.0" | ||
}, | ||
"devDependencies": { | ||
"grunt": "~0.4.0", | ||
"grunt-contrib-jshint": "~0.2.0" | ||
}, | ||
"keywords": [ | ||
"gruntplugin", | ||
"grunt", | ||
"plugins", | ||
"builds", | ||
"ci" | ||
] | ||
} |
Oops, something went wrong.