Skip to content

Commit

Permalink
chore(*): Release-1.18.3
Browse files Browse the repository at this point in the history
  • Loading branch information
youluna committed Sep 30, 2019
1 parent 3affc06 commit b68cbf9
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 6 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Change Log

## [1.18.3](https://github.com/alibaba-fusion/next/compare/1.18.2...1.18.3) (2019-09-30)


### Bug Fixes

* **Icon:** correct eye/eye-close's width ([19b7d04](https://github.com/alibaba-fusion/next/commit/19b7d04))
* **NumberPicker:** corner config ([db5929f](https://github.com/alibaba-fusion/next/commit/db5929f))
* **NumberPicker:** fix display valueunder controlled. fix [#1163](https://github.com/alibaba-fusion/next/issues/1163) ([7207532](https://github.com/alibaba-fusion/next/commit/7207532))
* **NumberPicker:** up down key ([6edc9a6](https://github.com/alibaba-fusion/next/commit/6edc9a6))
* **Progress:** backgroundColor is invalid ([#1180](https://github.com/alibaba-fusion/next/issues/1180)) ([b4ee796](https://github.com/alibaba-fusion/next/commit/b4ee796))
* **Typescript:** add field ([01fdcd2](https://github.com/alibaba-fusion/next/commit/01fdcd2))




## [1.18.2](https://github.com/alibaba-fusion/next/compare/1.18.1...1.18.2) (2019-09-26)


Expand Down
12 changes: 11 additions & 1 deletion LATESTLOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Latest Log

## [1.18.2](https://github.com/alibaba-fusion/next/compare/1.18.1...1.18.2) (2019-09-26)
## [1.18.3](https://github.com/alibaba-fusion/next/compare/1.18.2...1.18.3) (2019-09-30)


### Bug Fixes

* **Icon:** correct eye/eye-close's width ([19b7d04](https://github.com/alibaba-fusion/next/commit/19b7d04))
* **NumberPicker:** corner config ([db5929f](https://github.com/alibaba-fusion/next/commit/db5929f))
* **NumberPicker:** fix display valueunder controlled. fix [#1163](https://github.com/alibaba-fusion/next/issues/1163) ([7207532](https://github.com/alibaba-fusion/next/commit/7207532))
* **NumberPicker:** up down key ([6edc9a6](https://github.com/alibaba-fusion/next/commit/6edc9a6))
* **Progress:** backgroundColor is invalid ([#1180](https://github.com/alibaba-fusion/next/issues/1180)) ([b4ee796](https://github.com/alibaba-fusion/next/commit/b4ee796))
* **Typescript:** add field ([01fdcd2](https://github.com/alibaba-fusion/next/commit/01fdcd2))


2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
var next = require('./lib/index.js');

next.version = '1.18.2';
next.version = '1.18.3';

module.exports = next;
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@alifd/next",
"version": "1.18.2",
"version": "1.18.3",
"description": "A configurable component library for web built on React.",
"keywords": [
"fusion",
Expand Down
6 changes: 3 additions & 3 deletions scripts/build/export-api-schema.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@ export default ${apiInfo.name};
});

// hack Field / Shell / Typography
entries.push(`export { default as Field } from './field';`);
entries.push(`export { default as Shell } from './shell';`);
entries.push(`export { default as Typography } from './typography';`);
entries.push(`export { default as Field } from './field';
export { default as Notification } from './notification';
export { default as Shell } from './shell';`);

fs.writeFileSync(entriesPath, entries.join(''));
};

0 comments on commit b68cbf9

Please sign in to comment.