Skip to content

Commit 92aeca9

Browse files
Merge pull request #537 from /issues/466-removegrunt
goodbye grunt
2 parents 93525c7 + faad4b5 commit 92aeca9

File tree

4 files changed

+4
-51
lines changed

4 files changed

+4
-51
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ branches:
1818
only:
1919
- master
2020
- dev
21-
- issue/438-runAllTestsTravis
2221

2322
notifications:
2423
webhooks:

Gruntfile.js

Lines changed: 0 additions & 45 deletions
This file was deleted.

core/lib/object_factory.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
var patternEngines = require('./pattern_engines');
44
var path = require('path');
55
var extend = require('util')._extend;
6+
67
// patternPrefixMatcher is intended to match the leading maybe-underscore,
78
// zero or more digits, and maybe-dash at the beginning of a pattern file name we can hack them
89
// off and get at the good part.

package.json

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,7 @@
1616
"patternengine-node-mustache": "^1.0.0"
1717
},
1818
"devDependencies": {
19-
"grunt": "~1.0.1",
20-
"grunt-contrib-concat": "^1.0.1",
21-
"grunt-eslint": "^18.0.0",
22-
"grunt-tape": "^0.1.0",
19+
"eslint": "^3.5.0",
2320
"tap": "^7.1.2"
2421
},
2522
"keywords": [
@@ -45,7 +42,8 @@
4542
],
4643
"license": "MIT",
4744
"scripts": {
48-
"test": "node_modules/grunt/bin/grunt travis --verbose"
45+
"test": "eslint core/**/*.js && tap test/*_tests.js --reporter spec",
46+
"lint": "eslint core/**/*.js"
4947
},
5048
"engines": {
5149
"node": ">=4.0"

0 commit comments

Comments
 (0)