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

Diff for: index.js

+2
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');

Diff for: lib/Config.js

+2
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

Diff for: webpack.config.js

+3-1
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)