Skip to content
This repository was archived by the owner on Apr 6, 2021. It is now read-only.

Commit b7f0a91

Browse files
authored
Merge pull request #40 from cmdcolin/webpack_fix
Fix webpack config unexpected identifier error
2 parents 27cd6a4 + 02e27f8 commit b7f0a91

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

webpack.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const PATHS = {
1818
build: path.join(__dirname, 'build')
1919
};
2020

21-
const VERSION = () => {
21+
const VERSION = (() => {
2222
var v;
2323

2424
try {
@@ -29,7 +29,7 @@ const VERSION = () => {
2929
}
3030

3131
return v;
32-
}();
32+
})();
3333

3434
// Used to configure Babel (see: `.babelrc` file)
3535
process.env.BABEL_ENV = TARGET;

0 commit comments

Comments
 (0)