Skip to content

Commit 49cd107

Browse files
hashiccZedLi
andcommitted
chore: 🤖 use const instead of var
Co-authored-by: Zhihe Li <[email protected]>
1 parent f9ddf09 commit 49cd107

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

‎ui/admin/ember-cli-build.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const EmberApp = require('ember-cli/lib/broccoli/ember-app');
1010
module.exports = async function (defaults) {
1111
const { setConfig } = await import('@warp-drive/build-config');
1212
const { EMBER_ENV } = process.env;
13-
var config = require('./config/environment')(EMBER_ENV);
13+
const config = require('./config/environment')(EMBER_ENV);
1414

1515
const app = new EmberApp(defaults, {
1616
hinting: false,

‎ui/desktop/ember-cli-build.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const EmberApp = require('ember-cli/lib/broccoli/ember-app');
1010
module.exports = async function (defaults) {
1111
const { setConfig } = await import('@warp-drive/build-config');
1212
const { EMBER_ENV } = process.env;
13-
var config = require('./config/environment')(EMBER_ENV);
13+
const config = require('./config/environment')(EMBER_ENV);
1414

1515
const app = new EmberApp(defaults, {
1616
hinting: false,

0 commit comments

Comments
 (0)