Skip to content

Commit

Permalink
fix: Default condition should be last one (#173)
Browse files Browse the repository at this point in the history
* Default condition should be last one

* other packages too
  • Loading branch information
Janpot authored Jun 5, 2024
1 parent 476963e commit 2878890
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions packages/react-live-runner/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
"module": "dist/index.esm.js",
"unpkg": "dist/index.umd.js",
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"default": "./dist/index.modern.js",
"types": "./dist/index.d.ts"
"default": "./dist/index.modern.js"
},
"types": "dist/index.d.ts",
"sideEffects": false,
Expand Down
4 changes: 2 additions & 2 deletions packages/react-runner-codemirror/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
"module": "dist/index.esm.js",
"unpkg": "dist/index.umd.js",
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"default": "./dist/index.modern.js",
"types": "./dist/index.d.ts"
"default": "./dist/index.modern.js"
},
"types": "dist/index.d.ts",
"sideEffects": false,
Expand Down
4 changes: 2 additions & 2 deletions packages/react-runner/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
"module": "dist/index.esm.js",
"unpkg": "dist/index.umd.js",
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"default": "./dist/index.modern.js",
"types": "./dist/index.d.ts"
"default": "./dist/index.modern.js"
},
"types": "dist/index.d.ts",
"sideEffects": false,
Expand Down

0 comments on commit 2878890

Please sign in to comment.