Skip to content
This repository has been archived by the owner on Dec 31, 2020. It is now read-only.

Commit

Permalink
Version release
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Oct 17, 2020
1 parent 570e8d5 commit 4b77937
Show file tree
Hide file tree
Showing 4 changed files with 115 additions and 117 deletions.
5 changes: 0 additions & 5 deletions .changeset/light-avocados-smile.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/mean-penguins-rest.md

This file was deleted.

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

## 3.0.1

### Patch Changes

- [`570e8d5`](https://github.com/mobxjs/mobx-react-lite/commit/570e8d594bac415cf9a6c6771080fec043161d0b) [#328](https://github.com/mobxjs/mobx-react-lite/pull/328) Thanks [@mweststrate](https://github.com/mweststrate)! - If observable data changed between mount and useEffect, the render reaction would incorrectly be disposed causing incorrect suspension of upstream computed values

* [`1d6f0a8`](https://github.com/mobxjs/mobx-react-lite/commit/1d6f0a8dd0ff34d7e7cc71946ed670c31193572d) [#326](https://github.com/mobxjs/mobx-react-lite/pull/326) Thanks [@FredyC](https://github.com/FredyC)! - No important changes, just checking new setup for releases.

> Prior 3.0.0 see GitHub releases for changelog
214 changes: 107 additions & 107 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,110 +1,110 @@
{
"name": "mobx-react-lite",
"version": "3.0.0",
"description": "Lightweight React bindings for MobX based on React 16.8+ and Hooks",
"main": "lib/index.js",
"unpkg": "dist/mobxreactlite.umd.production.min.js",
"jsdelivr": "dist/mobxreactlite.umd.production.min.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"react-native": "es/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/mobxjs/mobx-react-lite.git"
},
"files": [
"dist/",
"lib/",
"es/",
"batching*"
],
"scripts": {
"prettier": "prettier --write \"./{src,test}/*.{js,ts,tsx}\"",
"lint": "eslint . --ext .js,.ts,.tsx",
"validate": "tsc --noEmit",
"test": "jest --watch",
"test:ci": "jest -i --coverage",
"size": "size-limit",
"coverage": "jest --coverage",
"prebuild": "rimraf dist lib es",
"build": "yarn build:commonjs && yarn build:es && yarn build:umd",
"build:commonjs": "tsc --project tsconfig.build.cjs.json",
"build:es": "tsc --project tsconfig.build.es.json",
"build:umd": "tsdx build --name mobxReactLite --format=umd --tsconfig tsconfig.build.es.json",
"release": "yarn build && yarn changeset publish"
},
"author": "Daniel K.",
"license": "MIT",
"bugs": {
"url": "https://github.com/mobxjs/mobx-react-lite/issues"
},
"homepage": "https://mobx.js.org",
"peerDependencies": {
"mobx": "^6.0.0",
"react": "^16.8.0"
},
"peerDependenciesMeta": {
"react-dom": {
"optional": true
"name": "mobx-react-lite",
"version": "3.0.1",
"description": "Lightweight React bindings for MobX based on React 16.8+ and Hooks",
"main": "lib/index.js",
"unpkg": "dist/mobxreactlite.umd.production.min.js",
"jsdelivr": "dist/mobxreactlite.umd.production.min.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"react-native": "es/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/mobxjs/mobx-react-lite.git"
},
"react-native": {
"optional": true
}
},
"devDependencies": {
"@babel/core": "7.8.4",
"@babel/preset-env": "7.8.4",
"@changesets/changelog-github": "^0.2.7",
"@changesets/cli": "^2.11.0",
"@size-limit/preset-small-lib": "2.1.6",
"@size-limit/time": "2.1.6",
"@testing-library/jest-dom": "4.1.2",
"@testing-library/react": "9.3.0",
"@testing-library/react-hooks": "1.1.0",
"@types/jest": "24.0.19",
"@types/node": "12.7.12",
"@types/react": "16.9.6",
"@types/react-dom": "16.9.2",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"coveralls": "3.0.7",
"eslint": "^6.1.0",
"eslint-plugin-react": "^7.18.3",
"husky": "3.0.9",
"jest": "24.9.0",
"jest-environment-jsdom": "24.9.0",
"jest-mock-console": "1.0.0",
"mobx": "^6.0.0-rc.7",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"prompts": "^2.3.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-test-renderer": "16.10.2",
"rimraf": "3.0.0",
"semver": "^7.2.2",
"shelljs": "^0.8.3",
"shx": "0.3.2",
"ts-jest": "24.1.0",
"tsdx": "0.12.3",
"typescript": "3.6.4"
},
"keywords": [
"mobx",
"mobservable",
"react-component",
"react",
"reactjs",
"reactive",
"hooks",
"observer",
"useLocalObservable"
],
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {}
"files": [
"dist/",
"lib/",
"es/",
"batching*"
],
"scripts": {
"prettier": "prettier --write \"./{src,test}/*.{js,ts,tsx}\"",
"lint": "eslint . --ext .js,.ts,.tsx",
"validate": "tsc --noEmit",
"test": "jest --watch",
"test:ci": "jest -i --coverage",
"size": "size-limit",
"coverage": "jest --coverage",
"prebuild": "rimraf dist lib es",
"build": "yarn build:commonjs && yarn build:es && yarn build:umd",
"build:commonjs": "tsc --project tsconfig.build.cjs.json",
"build:es": "tsc --project tsconfig.build.es.json",
"build:umd": "tsdx build --name mobxReactLite --format=umd --tsconfig tsconfig.build.es.json",
"release": "yarn build && yarn changeset publish"
},
"author": "Daniel K.",
"license": "MIT",
"bugs": {
"url": "https://github.com/mobxjs/mobx-react-lite/issues"
},
"homepage": "https://mobx.js.org",
"peerDependencies": {
"mobx": "^6.0.0",
"react": "^16.8.0"
},
"peerDependenciesMeta": {
"react-dom": {
"optional": true
},
"react-native": {
"optional": true
}
},
"devDependencies": {
"@babel/core": "7.8.4",
"@babel/preset-env": "7.8.4",
"@changesets/changelog-github": "^0.2.7",
"@changesets/cli": "^2.11.0",
"@size-limit/preset-small-lib": "2.1.6",
"@size-limit/time": "2.1.6",
"@testing-library/jest-dom": "4.1.2",
"@testing-library/react": "9.3.0",
"@testing-library/react-hooks": "1.1.0",
"@types/jest": "24.0.19",
"@types/node": "12.7.12",
"@types/react": "16.9.6",
"@types/react-dom": "16.9.2",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"coveralls": "3.0.7",
"eslint": "^6.1.0",
"eslint-plugin-react": "^7.18.3",
"husky": "3.0.9",
"jest": "24.9.0",
"jest-environment-jsdom": "24.9.0",
"jest-mock-console": "1.0.0",
"mobx": "^6.0.0-rc.7",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"prompts": "^2.3.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-test-renderer": "16.10.2",
"rimraf": "3.0.0",
"semver": "^7.2.2",
"shelljs": "^0.8.3",
"shx": "0.3.2",
"ts-jest": "24.1.0",
"tsdx": "0.12.3",
"typescript": "3.6.4"
},
"keywords": [
"mobx",
"mobservable",
"react-component",
"react",
"reactjs",
"reactive",
"hooks",
"observer",
"useLocalObservable"
],
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {}
}

0 comments on commit 4b77937

Please sign in to comment.