Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions .changeset/node-export-condition.md

This file was deleted.

6 changes: 6 additions & 0 deletions packages/mobx-react-lite/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# mobx-react-lite

## 5.0.3

### Patch Changes

- [`6f002b8e543ca39d3ee23681e28848d7f1724fae`](https://github.com/mobxjs/mobx/commit/6f002b8e543ca39d3ee23681e28848d7f1724fae) [#4696](https://github.com/mobxjs/mobx/pull/4696) Thanks [@gesposito](https://github.com/gesposito)! - perf: add a `node` export condition that routes Node and Bun to the existing `dist/index.js` entry, which picks the prebaked development or production CJS build once at require time. `import`ing mobx in Node no longer executes the env-agnostic `dist/mobx.mjs` with per-call `NODE_ENV` checks, and mixing `import` and `require` in one Node app now yields a single mobx instance.

## 5.0.2

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/mobx-react-lite/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mobx-react-lite",
"version": "5.0.2",
"version": "5.0.3",
"description": "Lightweight React bindings for MobX based on function components and Hooks",
"source": "src/index.ts",
"type": "commonjs",
Expand Down Expand Up @@ -62,7 +62,7 @@
"react": "^18 || ^19"
},
"devDependencies": {
"mobx": "^7.0.2"
"mobx": "^7.0.3"
},
"keywords": [
"mobx",
Expand Down
9 changes: 9 additions & 0 deletions packages/mobx-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# mobx-react

## 10.0.2

### Patch Changes

- [`6f002b8e543ca39d3ee23681e28848d7f1724fae`](https://github.com/mobxjs/mobx/commit/6f002b8e543ca39d3ee23681e28848d7f1724fae) [#4696](https://github.com/mobxjs/mobx/pull/4696) Thanks [@gesposito](https://github.com/gesposito)! - perf: add a `node` export condition that routes Node and Bun to the existing `dist/index.js` entry, which picks the prebaked development or production CJS build once at require time. `import`ing mobx in Node no longer executes the env-agnostic `dist/mobx.mjs` with per-call `NODE_ENV` checks, and mixing `import` and `require` in one Node app now yields a single mobx instance.

- Updated dependencies [[`6f002b8e543ca39d3ee23681e28848d7f1724fae`](https://github.com/mobxjs/mobx/commit/6f002b8e543ca39d3ee23681e28848d7f1724fae)]:
- mobx-react-lite@5.0.3

## 10.0.1

### Patch Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/mobx-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mobx-react",
"version": "10.0.1",
"version": "10.0.2",
"description": "React bindings for MobX. Create fully reactive components.",
"source": "src/index.ts",
"type": "commonjs",
Expand Down Expand Up @@ -59,15 +59,15 @@
},
"homepage": "https://mobx.js.org",
"dependencies": {
"mobx-react-lite": "^5.0.2"
"mobx-react-lite": "^5.0.3"
},
"peerDependencies": {
"mobx": "^7.0.0",
"react": "^18 || ^19"
},
"devDependencies": {
"mobx": "^7.0.2",
"mobx-react-lite": "^5.0.2"
"mobx": "^7.0.3",
"mobx-react-lite": "^5.0.3"
},
"keywords": [
"mobx",
Expand Down
6 changes: 6 additions & 0 deletions packages/mobx/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# mobx

## 7.0.3

### Patch Changes

- [`6f002b8e543ca39d3ee23681e28848d7f1724fae`](https://github.com/mobxjs/mobx/commit/6f002b8e543ca39d3ee23681e28848d7f1724fae) [#4696](https://github.com/mobxjs/mobx/pull/4696) Thanks [@gesposito](https://github.com/gesposito)! - perf: add a `node` export condition that routes Node and Bun to the existing `dist/index.js` entry, which picks the prebaked development or production CJS build once at require time. `import`ing mobx in Node no longer executes the env-agnostic `dist/mobx.mjs` with per-call `NODE_ENV` checks, and mixing `import` and `require` in one Node app now yields a single mobx instance.

## 7.0.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/mobx/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mobx",
"version": "7.0.2",
"version": "7.0.3",
"description": "Simple, scalable state management.",
"source": "src/mobx.ts",
"type": "commonjs",
Expand Down