Skip to content

Commit

Permalink
fix: default condition should be last one (#304)
Browse files Browse the repository at this point in the history
  • Loading branch information
voliva committed Jul 12, 2023
1 parent 625c9cc commit fb57cdb
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
16 changes: 8 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
"import": "./dist/core.es2019.mjs",
"require": "./dist/index.cjs"
},
"default": "./dist/core.es2017.js",
"types": "./dist/index.d.ts"
"types": "./dist/index.d.ts",
"default": "./dist/core.es2017.js"
},
"./package.json": "./package.json"
},
Expand Down Expand Up @@ -51,7 +51,7 @@
"Victor Oliva (https://github.com/voliva)"
],
"dependencies": {
"@rx-state/core": "0.1.3",
"@rx-state/core": "0.1.4",
"use-sync-external-store": "^1.0.0"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/dom/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
"import": "./dist/dom.es2019.mjs",
"require": "./dist/index.cjs"
},
"default": "./dist/dom.es2017.js",
"types": "./dist/index.d.ts"
"types": "./dist/index.d.ts",
"default": "./dist/dom.es2017.js"
},
"./package.json": "./package.json"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
"import": "./dist/utils.es2019.mjs",
"require": "./dist/index.cjs"
},
"default": "./dist/utils.es2017.js",
"types": "./dist/index.d.ts"
"types": "./dist/index.d.ts",
"default": "./dist/utils.es2017.js"
},
"./package.json": "./package.json"
},
Expand Down

0 comments on commit fb57cdb

Please sign in to comment.