Skip to content

Commit 24e1608

Browse files
committed
removed gulp all together, just use npm test
1 parent 5da74c3 commit 24e1608

File tree

3 files changed

+5
-16
lines changed

3 files changed

+5
-16
lines changed

gulpfile.js

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

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "Get the MAC addresses (hardware addresses) of the hosts network interfaces.",
55
"main": "index.js",
66
"scripts": {
7-
"test": "node test.js"
7+
"test": "jshint *.js && node test.js"
88
},
99
"repository": {
1010
"type": "git",
@@ -24,7 +24,6 @@
2424
},
2525
"homepage": "https://github.com/scravy/node-macaddress",
2626
"devDependencies": {
27-
"gulp": "^3.1.0",
28-
"gulp-jshint": "^1.4.0"
27+
"jshint": "^2.8.0"
2928
}
3029
}

test.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
/* jshint node: true */
2+
'use strict';
3+
14
var macaddress = require('./index');
25

36
var sync = macaddress.one(function (err, mac) {

0 commit comments

Comments
 (0)