blobcat

Results 1 comments of blobcat

I believe replacing the fs.readFileSync and require.resolve stubs by adding this code right before the export should fix the issue: ```javascript if (fs.readFileSync) { grammar.moduleInclude = fs.readFileSync(require.resolve("../include/module.js")); grammar.actionInclude = fs.readFileSync(require.resolve("../include/action.js"));...