Skip to content
This repository was archived by the owner on Jun 9, 2022. It is now read-only.

Commit d13f925

Browse files
Simplify NPM/Grunt/Buster/Travis test workflow, and align with other FT projects
1 parent 83c850d commit d13f925

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

.travis.yml

+2-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
1-
before_script:
2-
- npm install -g grunt-cli
3-
- npm install -g buster
4-
51
script:
6-
- "grunt buster"
2+
- "npm test"
73

84
language: node_js
95

106
node_js:
11-
- "0.10"
7+
- "0.10"

Gruntfile.js renamed to GruntFile.js

+1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,5 @@ module.exports = function(grunt) {
1111
}
1212
});
1313
grunt.loadNpmTasks('grunt-buster');
14+
grunt.registerTask('test', ['buster:test']);
1415
};

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"url": "[email protected]:ftlabs/ftcolumnflow.git"
1313
},
1414
"scripts": {
15-
"test": "node_modules/.bin/buster-test"
15+
"test": "./node_modules/.bin/grunt test"
1616
},
1717
"keywords": [
1818
"css column",

0 commit comments

Comments
 (0)