Skip to content

Commit

Permalink
fix: rename es module filename
Browse files Browse the repository at this point in the history
  • Loading branch information
TGuoW committed Nov 9, 2021
1 parent dae6dc5 commit 1821d4e
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 18 deletions.
4 changes: 2 additions & 2 deletions packages/basic-modules/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
"license": "MIT",
"types": "dist/basic-modules/src/index.d.ts",
"main": "dist/index.js",
"module": "dist/index.mjs",
"module": "dist/index.esm.js",
"browser": {
"./dist/index.js": "./dist/index.js",
"./dist/index.mjs": "./dist/index.mjs"
"./dist/index.esm.js": "./dist/index.esm.js"
},
"directories": {
"lib": "dist",
Expand Down
4 changes: 2 additions & 2 deletions packages/code-highlight/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
"license": "MIT",
"types": "dist/code-highlight/src/index.d.ts",
"main": "dist/index.js",
"module": "dist/index.mjs",
"module": "dist/index.esm.js",
"browser": {
"./dist/index.js": "./dist/index.js",
"./dist/index.mjs": "./dist/index.mjs"
"./dist/index.esm.js": "./dist/index.esm.js"
},
"directories": {
"lib": "dist",
Expand Down
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
"license": "MIT",
"types": "dist/core/src/index.d.ts",
"main": "dist/index.js",
"module": "dist/index.mjs",
"module": "dist/index.esm.js",
"browser": {
"./dist/index.js": "./dist/index.js",
"./dist/index.mjs": "./dist/index.mjs"
"./dist/index.esm.js": "./dist/index.esm.js"
},
"directories": {
"lib": "dist",
Expand Down
4 changes: 2 additions & 2 deletions packages/editor-for-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
"license": "MIT",
"types": "dist/editor-for-react/src/index.d.ts",
"main": "dist/index.js",
"module": "dist/index.mjs",
"module": "dist/index.esm.js",
"browser": {
"./dist/index.js": "./dist/index.js",
"./dist/index.mjs": "./dist/index.mjs"
"./dist/index.esm.js": "./dist/index.esm.js"
},
"directories": {
"lib": "dist",
Expand Down
4 changes: 2 additions & 2 deletions packages/editor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
"license": "MIT",
"types": "dist/editor/src/index.d.ts",
"main": "dist/index.js",
"module": "dist/index.mjs",
"module": "dist/index.esm.js",
"browser": {
"./dist/index.js": "./dist/index.js",
"./dist/index.mjs": "./dist/index.mjs"
"./dist/index.esm.js": "./dist/index.esm.js"
},
"directories": {
"lib": "dist",
Expand Down
4 changes: 2 additions & 2 deletions packages/list-module/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
"license": "MIT",
"types": "dist/list-module/src/index.d.ts",
"main": "dist/index.js",
"module": "dist/index.mjs",
"module": "dist/index.esm.js",
"browser": {
"./dist/index.js": "./dist/index.js",
"./dist/index.mjs": "./dist/index.mjs"
"./dist/index.esm.js": "./dist/index.esm.js"
},
"directories": {
"lib": "dist",
Expand Down
4 changes: 2 additions & 2 deletions packages/table-module/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
"license": "MIT",
"types": "dist/table-module/src/index.d.ts",
"main": "dist/index.js",
"module": "dist/index.mjs",
"module": "dist/index.esm.js",
"browser": {
"./dist/index.js": "./dist/index.js",
"./dist/index.mjs": "./dist/index.mjs"
"./dist/index.esm.js": "./dist/index.esm.js"
},
"directories": {
"lib": "dist",
Expand Down
4 changes: 2 additions & 2 deletions packages/upload-image-module/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
"license": "MIT",
"types": "dist/upload-image-module/src/index.d.ts",
"main": "dist/index.js",
"module": "dist/index.mjs",
"module": "dist/index.esm.js",
"browser": {
"./dist/index.js": "./dist/index.js",
"./dist/index.mjs": "./dist/index.mjs"
"./dist/index.esm.js": "./dist/index.esm.js"
},
"directories": {
"lib": "dist",
Expand Down
4 changes: 2 additions & 2 deletions packages/video-module/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
"license": "MIT",
"types": "dist/video-module/src/index.d.ts",
"main": "dist/index.js",
"module": "dist/index.mjs",
"module": "dist/index.esm.js",
"browser": {
"./dist/index.js": "./dist/index.js",
"./dist/index.mjs": "./dist/index.mjs"
"./dist/index.esm.js": "./dist/index.esm.js"
},
"directories": {
"lib": "dist",
Expand Down

0 comments on commit 1821d4e

Please sign in to comment.