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
4 changes: 2 additions & 2 deletions packages/mobx-react-lite/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,13 +69,13 @@
"scripts": {
"lint": "eslint src/**/* --ext .js,.ts,.tsx",
"build": "node ../../scripts/build.js mobxReactLite",
"build:test": "npm run build --target test",
"build:test": "npm run build -- --target test",
"build:cjs": "tsc --project tsconfig.build.cjs.json",
"build:es": "tsc --project tsconfig.build.es.json",
"test": "jest",
"test:size": "import-size --report . observer useLocalObservable",
"test:types": "tsc --noEmit",
"test:check": "npm run test:types",
"prepublishOnly": "cd ../mobx && npm run build --target publish && cd ../mobx-react-lite && npm run build --target publish && npm run build:cjs && npm run build:es"
"prepublishOnly": "cd ../mobx && npm run build -- --target publish && cd ../mobx-react-lite && npm run build -- --target publish && npm run build:cjs && npm run build:es"
}
}
6 changes: 3 additions & 3 deletions packages/mobx-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,11 @@
"scripts": {
"lint": "eslint src/**/* --ext .js,.ts,.tsx",
"build": "node ../../scripts/build.js mobxReact",
"build:test": "npm run build --target test",
"build:test": "npm run build -- --target test",
"test": "jest",
"test:size": "npm run import-size --report . observer",
"test:size": "import-size --report . observer",
"test:types": "tsc --noEmit",
"test:check": "npm run test:types",
"prepublishOnly": "npm run build --target publish"
"prepublishOnly": "npm run build -- --target publish"
}
}
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

## 6.15.2

### Patch Changes

- [`52ddce0f179a461b85e578554e35e94bf76edf3c`](https://github.com/mobxjs/mobx/commit/52ddce0f179a461b85e578554e35e94bf76edf3c) [#4642](https://github.com/mobxjs/mobx/pull/4642) Thanks [@kubk](https://github.com/kubk)! - Restore npm release build target forwarding so published tarballs include the standalone ESM development and production bundles.

## 6.15.1

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/mobx/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mobx",
"version": "6.15.1",
"version": "6.15.2",
"description": "Simple, scalable state management.",
"source": "src/mobx.ts",
"main": "dist/index.js",
Expand Down Expand Up @@ -64,7 +64,7 @@
"test": "jest --config jest.projects.js",
"lint": "eslint src/**/*",
"build": "node ../../scripts/build.js mobx",
"build:test": "npm run build --target test",
"build:test": "npm run build -- --target test",
"perf": "scripts/perf.sh",
"perf-legacy": "node --expose-gc ./__tests__/perf/index.js legacy",
"perf-proxy": "node --expose-gc ./__tests__/perf/index.js proxy",
Expand All @@ -75,6 +75,6 @@
"test:coverage": "yarn test -i --coverage",
"test:size": "yarn import-size --report . observable computed autorun action",
"test:check": "yarn test:types",
"prepublishOnly": "node ./scripts/prepublish.js && npm run build --target publish"
"prepublishOnly": "node ./scripts/prepublish.js && npm run build -- --target publish"
}
}
Loading