Skip to content

Commit a84292f

Browse files
committed
removing nodeunit!
1 parent 8cfb912 commit a84292f

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

Gruntfile.js

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@ module.exports = function (grunt) {
1616
dest: './core/lib/patternlab.js'
1717
}
1818
},
19-
nodeunit: {
20-
all: ['test/*_tests.js']
21-
},
2219
tape: {
2320
options: {
2421
pretty: false,
@@ -37,13 +34,12 @@ module.exports = function (grunt) {
3734
// load all grunt tasks
3835
grunt.loadNpmTasks('grunt-contrib-concat');
3936
grunt.loadNpmTasks('grunt-eslint');
40-
grunt.loadNpmTasks('grunt-contrib-nodeunit');
4137
grunt.loadNpmTasks('grunt-tape');
4238

4339
//travis CI task
44-
grunt.registerTask('travis', ['nodeunit', 'tape', 'eslint']);
40+
grunt.registerTask('travis', ['tape', 'eslint']);
4541

4642
//to be run prior to releasing a version
47-
grunt.registerTask('build', ['nodeunit', 'tape', 'eslint', 'concat']);
43+
grunt.registerTask('build', ['tape', 'eslint', 'concat']);
4844

4945
};

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
"devDependencies": {
1919
"grunt": "~1.0.1",
2020
"grunt-contrib-concat": "^1.0.1",
21-
"grunt-contrib-nodeunit": "^1.0.0",
2221
"grunt-eslint": "^18.0.0",
2322
"grunt-tape": "^0.1.0",
2423
"tap": "^7.1.2"

0 commit comments

Comments
 (0)