Skip to content

Commit 65c18ec

Browse files
committed
fix for one file name contains another file name
1 parent 54fa195 commit 65c18ec

3 files changed

Lines changed: 7 additions & 6 deletions

File tree

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node-version-assets",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "version your static assets",
55
"main": "index.js",
66
"scripts": {
@@ -22,9 +22,10 @@
2222
"url": "https://github.com/techjacker/node-version-assets"
2323
},
2424
"github": "https://github.com/techjacker/node-version-assets",
25-
"engines": [
26-
"node >= 4"
27-
],
25+
"engineStrict" : true,
26+
"engines": {
27+
"node": ">=4"
28+
},
2829
"bugs": {
2930
"url": "https://github.com/techjacker/node-version-assets/issues"
3031
},
@@ -54,7 +55,6 @@
5455
"underscore": "~1.8.3"
5556
},
5657
"devDependencies": {
57-
"async": "~1.5.0",
5858
"curry": "~1.2.0",
5959
"tap": "~2.2.0"
6060
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
function (err, v) {
22
results[x.index] = v;
33
callback(err);
4-
}
4+
}

test/main.test.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,7 @@ test('Main.run(): matching file names', function(t) {
194194
jsDir + 'login-bundle.js',
195195
jsDir + 'bundle.js'
196196
],
197+
silence: true,
197198
grepFiles: []
198199
});
199200

0 commit comments

Comments
 (0)