Skip to content

Commit c22c828

Browse files
author
Andreas Freimuth
committed
Name variables lowercase
1 parent 2b49e11 commit c22c828

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bin/encore.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ context.runtimeConfig = runtimeConfig;
2424
process.argv.splice(2, 1);
2525

2626
// remove arguments not supported by webpack/-dev-server
27-
const EncoreOnlyArguments = new Set(['--keep-public-path']);
28-
process.argv = process.argv.filter(arg => !EncoreOnlyArguments.has(arg));
27+
const encoreOnlyArguments = new Set(['--keep-public-path']);
28+
process.argv = process.argv.filter(arg => !encoreOnlyArguments.has(arg));
2929

3030
if (!runtimeConfig.isValidCommand) {
3131
if (runtimeConfig.command) {

0 commit comments

Comments
 (0)