Skip to content

Commit

Permalink
Removed a dependency, switched to babel proposal
Browse files Browse the repository at this point in the history
For ESDoc, switch to babel proposal syntax, the es7 plugin was causing a
problem that I couldn't fix myself.
  • Loading branch information
Anson Wayman authored and Anson Wayman committed Mar 10, 2017
1 parent 3e72a10 commit 1e16771
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
8 changes: 5 additions & 3 deletions esdoc.json
Expand Up @@ -2,7 +2,9 @@
"source": "./src",
"destination": "./docs",
"excludes": ["node_modules"],
"plugins": [{
"name": "esdoc-es7-plugin"
}]
"experimentalProposal": {
"classProperties": true,
"objectRestSpread": true
},
"plugins": []
}
3 changes: 1 addition & 2 deletions package.json
Expand Up @@ -52,8 +52,7 @@
"babel-preset-stage-0": "^6.1.18",
"chai": "^3.4.1",
"chai-as-promised": "^6.0.0",
"esdoc": "^0.5.1",
"esdoc-es7-plugin": "0.0.3",
"esdoc": "^0.5.2",
"esdoc-node": "^1.0.1",
"eslint": "^3.12.1",
"eslint-config-airbnb": "^13.0.0",
Expand Down

0 comments on commit 1e16771

Please sign in to comment.