Skip to content

Commit

Permalink
Merge pull request #14 from EasyAsABC123/feature-travis_ci
Browse files Browse the repository at this point in the history
Add Travis CI Support
  • Loading branch information
EasyAsABC123 authored Mar 2, 2017
2 parents 29c5343 + dee3dc1 commit 63bd1b3
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 4 deletions.
22 changes: 22 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
language: node_js
node_js:
- "node"
- "6.1"
- "6.0"
- "5.11"
- "5.10"
- "5.9"
- "5.8"
- "5.7"
- "5.6"
- "5.5"
- "5.4"
- "5.3"
- "5.2"
- "5.1"
- "5.0"
- "4.4"
- "4.3"
- "4.2"
- "4.1"
- "4.0"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ yarn add grunt-standard --dev

- You have the latest version of `grunt` in your project's `package.json`'s `devDependencies`.
- You have added the npm task to your project's `Gruntfile.js`.
- You are running the latest version of `node`.
- You are running `node >= 4`.

```javascript
grunt.loadNpmTasks('grunt-standard')
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "grunt-standard",
"version": "3.0.2",
"version": "3.0.3",
"description": "Grunt Plugin for JavaScript Standard Style Linting and Formatting",
"main": "Gruntfile.js",
"repository": {
Expand Down Expand Up @@ -30,7 +30,7 @@
"grunt": "^1.0.1"
},
"engines": {
"node": ">=0.10.0"
"node": ">=4.0"
},
"homepage": "https://github.com/EasyAsABC123/grunt-standard",
"standard": {
Expand All @@ -42,6 +42,6 @@
"outdated": "npm outdated --depth 0",
"postshrinkwrap": "grunt validate-shrinkwrap --force",
"shrinkwrap": "npm-shrinkwrap --dev",
"test": "standard"
"test": "grunt"
}
}

0 comments on commit 63bd1b3

Please sign in to comment.