Skip to content

Commit

Permalink
chore: fix incorrect module point
Browse files Browse the repository at this point in the history
  • Loading branch information
JounQin committed Oct 18, 2021
1 parent 519fbe5 commit ee797b4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
],
"scripts": {
"build": "run-p build:*",
"build:r": "r -f esm,es2015",
"build:r": "r -f es2015",
"build:ts": "tsc -b",
"clean": "rimraf packages/*/{lib,*.tsbuildinfo} node_modules/@1stg/eslint-config/node_modules",
"lint": "run-p lint:*",
Expand Down
5 changes: 2 additions & 3 deletions packages/eslint-mdx/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,8 @@
"engines": {
"node": ">=10.0.0"
},
"main": "lib",
"module": "lib/esm",
"es2015": "lib/es2015",
"main": "lib/index.js",
"module": "lib/index.es2015.mjs",
"types": "lib",
"files": [
"lib",
Expand Down
5 changes: 2 additions & 3 deletions packages/eslint-plugin-mdx/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,8 @@
"engines": {
"node": ">=10.0.0"
},
"main": "lib",
"module": "lib/esm",
"es2015": "lib/es2015",
"main": "lib/index.js",
"module": "lib/index.es2015.mjs",
"types": "lib",
"files": [
"lib",
Expand Down

0 comments on commit ee797b4

Please sign in to comment.