comment-parser 1.2.2 → 1.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +2 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,3 +1,5 @@
1
+ # v1.2.3
2
+ - publishing missing fix: point package's main to .cjs file
1
3
  # v1.2.2
2
4
  - re-export ./util on the top-level for compatibility with older Node
3
5
  - point package's main to .cjs file
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "comment-parser",
3
- "version": "1.2.2",
3
+ "version": "1.2.3",
4
4
  "description": "Generic JSDoc-like comment parser",
5
5
  "type": "module",
6
- "main": "lib/index.js",
6
+ "main": "lib/index.cjs",
7
7
  "exports": {
8
8
  ".": {
9
9
  "import": "./es6/index.js",