babel-eslint => @babel/eslint-parser and remove babel-core and webpack-bundle-analyzer and yarn-upgrade-all config

remove babel-core and webpack-bundle-analyzer and yarn-upgrade-all config
This commit is contained in:
Matthieu MOREL
2021-07-29 21:48:46 +02:00
committed by GitHub
parent f7295a7a79
commit 42d8bbfce2
17 changed files with 62401 additions and 1998 deletions

View File

@@ -1,6 +1,6 @@
const { Generator } = require('jison')
const { getOptions } = require('loader-utils')
const { Generator } = require('jison');
const { getOptions } = require('loader-utils');
module.exports = function jisonLoader (source) {
return new Generator(source, getOptions(this)).generate()
}
module.exports = function jisonLoader(source) {
return new Generator(source, getOptions(this)).generate();
};