Browse Source
This commit adds support for '.js' files to be passed to the '-c', '--config' or '--extra-options-file' options on the CLI, allowing the developer to do some extra work before the parser is generated (if they wish), or dynamically set options based on the enviroment.master
6 changed files with 49 additions and 34 deletions
@ -1,7 +0,0 @@ |
|||
{ |
|||
"header": "/* eslint-disable */", |
|||
"dependencies": { |
|||
"ast": "./ast", |
|||
"util": "../util" |
|||
} |
|||
} |
@ -0,0 +1,14 @@ |
|||
"use strict"; |
|||
|
|||
module.exports = { |
|||
|
|||
header: "/* eslint-disable */", |
|||
|
|||
dependencies: { |
|||
|
|||
ast: "./ast", |
|||
util: "../util" |
|||
|
|||
}, |
|||
|
|||
}; |
Loading…
Reference in new issue