Skip to content

Commit

Permalink
fix: add missing 'use strict's
Browse files Browse the repository at this point in the history
  • Loading branch information
vvo committed Aug 4, 2015
1 parent dc7c2f9 commit 397294e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions example/app.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use strict';

require('./style.css');

var instantsearch = require('../');
Expand Down
2 changes: 2 additions & 0 deletions test/InstantSearch.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use strict';

var test = require('tape');

test('InstantSearch', function(t) {
Expand Down
2 changes: 2 additions & 0 deletions webpack.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use strict';

module.exports = {
entry: './index.js',
output: {
Expand Down
2 changes: 2 additions & 0 deletions webpack.example.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use strict';

module.exports = {
entry: './example/app.js',
devtool: 'source-map',
Expand Down

0 comments on commit 397294e

Please sign in to comment.