Skip to content

Commit 603c53d

Browse files
committed
Execute all code in strict mode.
1 parent fd80706 commit 603c53d

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

index.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
'use strict';
2+
13
var precinct = require('precinct');
24
var path = require('path');
35
var fs = require('fs');

lib/Config.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
'use strict';
2+
13
var path = require('path');
24
var debug = require('debug')('tree');
35

webpack.config.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1+
'use strict';
2+
13
module.exports = {
24
entry: './index.js',
35
resolve: {
46
alias: {
57
F: './node_modules/filing-cabinet'
68
}
79
}
8-
};
10+
};

0 commit comments

Comments
 (0)