Remove jisonloader

This commit is contained in:
Sidharth Vinod 2022-09-01 00:12:20 +05:30
parent 965df4fdf4
commit 1206ec43ac
No known key found for this signature in database
GPG key ID: FB5CCD378D3907CD
2 changed files with 0 additions and 15 deletions

View file

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

View file

@ -1,9 +0,0 @@
const { Generator } = require('jison');
module.exports = {
process(source, filename, config, transformOptions) {
return new Generator(source, {
'token-stack': true,
}).generate();
},
};