Skip to content

Commit 1694290

Browse files
committed
fix(build): enforce strict mode
fixes aurelia/app-ux-showcase#16
1 parent ab292f1 commit 1694290

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

lib/build/utils.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
'use strict';
12
const path = require('path');
23
const crypto = require('crypto');
34

lib/resolve/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
let core = require('./lib/core');
1+
var core = require('./lib/core');
22
exports = module.exports = require('./lib/async');
33
exports.core = core;
44
exports.isCore = function(x) { return core[x]; };

0 commit comments

Comments
 (0)