Skip to content

Commit

Permalink
revert: comment-parser doesn't include cjs export, so pinning for now
Browse files Browse the repository at this point in the history
Refs: 3c0626c
  • Loading branch information
homer0 committed Aug 2, 2021
1 parent 1b5a888 commit f5d44a3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"access": "public"
},
"dependencies": {
"comment-parser": "^1.2.3",
"comment-parser": "1.1.5",
"prettier": "^2.3.2",
"ramda": "0.27.1"
},
Expand Down
2 changes: 1 addition & 1 deletion src/fns/getParsers.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const R = require('ramda');
const { parse: commentParser } = require('comment-parser/lib/index.cjs');
const { parse: commentParser } = require('comment-parser/lib');
const babelParser = require('prettier/parser-babel');
const flowParser = require('prettier/parser-flow');
const tsParser = require('prettier/parser-typescript');
Expand Down

0 comments on commit f5d44a3

Please sign in to comment.