-
Notifications
You must be signed in to change notification settings - Fork 200
Closed
Description
It looks like commit c796ac2 has broken the loading of our esdoc config:
.esdoc:2
"source": "./src/js",
^
SyntaxError: Unexpected token :
at exports.runInThisContext (vm.js:73:16)
at Module._compile (module.js:443:25)
at Object.Module._extensions..js (module.js:478:10)
at Module.load (module.js:355:32)
at Function.Module._load (module.js:310:12)
at Module.require (module.js:365:17)
at require (module.js:384:17)
Current config:
{
"source": "./src/js",
"excludes": ["jspm.config.js"],
"destination": "./docs",
"title": "...",
"unexportIdentifier": true,
"coverage": false,
"plugins": [
{"name": "esdoc-es7-plugin"},
{"name": "esdoc-importpath-plugin",
"option": {
"replaces": [
{"from": "^src/", "to": "/"}
]
}
}
]
}