diff --git a/CHANGELOG.md b/CHANGELOG.md index 29dc8a2..7c5b4ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +## [2.0.3](https://github.com/areslabs/alita/compare/2.0.2...2.0.3) (2019-12-18) + + +### Bug Fixes + +* **alita:** 修复 export {} from './A' 搜集信息时候的语法错误 ([1fbcb5b](https://github.com/areslabs/alita/commit/1fbcb5b)) + + +### Features + +* **alita:** remove __source props in production ! ([aedef74](https://github.com/areslabs/alita/commit/aedef74)) +* **alita:** 一个文件支持多个组件 ([48052a8](https://github.com/areslabs/alita/commit/48052a8)) +* **alita:** 添加alita转化出错的 友好提示信息 ([4a7ff8b](https://github.com/areslabs/alita/commit/4a7ff8b)) + + + ## [2.0.2](https://github.com/areslabs/alita/compare/2.0.1...2.0.2) (2019-12-16) diff --git a/package.json b/package.json index 0a91082..cc115a8 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,7 @@ "weixin", "redux" ], - "version": "2.0.2", + "version": "2.0.3", "description": "首个ReactNative转微信小程序引擎", "main": "./lib/index.js", "scripts": { @@ -28,8 +28,8 @@ "fix": "eslint . --fix", "compiler": "babel src --out-dir lib --extensions \".js,.ts\"", "link": "npm run compiler && sudo npm link", - "pub-beta": "rm -fr lib && npm run compiler && npm publish --tag=beta", - "pub": "rm -fr lib && npm run compiler && npm publish", + "pub-beta": "rm -fr lib && npm run compiler && npm publish --tag=beta --registry http://registry.npmjs.org", + "pub": "rm -fr lib && npm run compiler && npm publish --registry http://registry.npmjs.org", "start": "npm run compiler && node ./lib/index", "doc": "gitbook build ./docs ../docsTmp && git checkout gh-pages && cp -r ../docsTmp/* ./ && rm -fr ../docsTmp", "doc:serve": "gitbook serve ./docs",