Skip to content

Commit

Permalink
Merge pull request #1 from maiermic/hotfix/fix-build-errors
Browse files Browse the repository at this point in the history
fix build errors
  • Loading branch information
corzani authored Nov 17, 2016
2 parents ef7bedf + a83d7b5 commit ac98d9f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/templates/lib/antlr4-core/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module.exports = {
// Only one parser and lexer are needed using this example
parsers: require('../../dist/grammars/JSONParser'),
lexers: require('../../dist/grammars/JSONLexer') ,
parsers: require('../../dist/JSONParser'),
lexers: require('../../dist/JSONLexer') ,
lib: require('../../node_modules/antlr4')
};
2 changes: 1 addition & 1 deletion app/templates/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ module.exports = {
],
resolve: {
alias: {
'antlr4/index': '../../node_modules/antlr4/index.js'
'antlr4/index': '../node_modules/antlr4/index.js'
},
modulesDirectories: [
'./node_modules'
Expand Down

0 comments on commit ac98d9f

Please sign in to comment.