Skip to content

Commit

Permalink
chore(*): Release-1.27.29
Browse files Browse the repository at this point in the history
  • Loading branch information
泊淞 committed Nov 12, 2024
1 parent 9d4f0f7 commit de047ec
Show file tree
Hide file tree
Showing 5 changed files with 47 additions and 52 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Change Log

## [1.27.29](https://github.com/alibaba-fusion/next/compare/1.27.28...1.27.29) (2024-11-12)


### Bug Fixes

* **Slider:** correct typo and improve types definition ([9d4f0f7](https://github.com/alibaba-fusion/next/commit/9d4f0f79efb48e0ab657862bef17d0b3040e6709))


## [1.27.28](https://github.com/alibaba-fusion/next/compare/1.27.26...1.27.28) (2024-10-21)


Expand Down
17 changes: 2 additions & 15 deletions LATESTLOG.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,9 @@
# Latest Log

## [1.27.28](https://github.com/alibaba-fusion/next/compare/1.27.26...1.27.28) (2024-10-21)
## [1.27.29](https://github.com/alibaba-fusion/next/compare/1.27.28...1.27.29) (2024-11-12)


### Bug Fixes

* **DatePicker2:** after entering a customized date format and pressing Enter, the value should not change,closed [#4896](https://github.com/alibaba-fusion/next/issues/4896) ([e74ab40](https://github.com/alibaba-fusion/next/commit/e74ab40bf206ab0ad748d2c6b519972df1116810))
* **Grid:** The style prop of Col in the Grid does not take effect ([836eeb6](https://github.com/alibaba-fusion/next/commit/836eeb65d355ff03b9d98d9819db95b82b7e8aac))
* **Timeline:** left content of timeline item cannot be styled correctly ([f27e646](https://github.com/alibaba-fusion/next/commit/f27e646f8c3e3a72bf91992a870701226cfc9834))


### Code Refactoring

* **DatePicker:** convert to TypeScript, improve docs and tests ([4c37bf5](https://github.com/alibaba-fusion/next/commit/4c37bf5085176e2e34327e2def2e7b892dac6a2b))
* **Form:** convert to TypeScript, improve docs and tests, close[#4585](https://github.com/alibaba-fusion/next/issues/4585) ([adbb6c9](https://github.com/alibaba-fusion/next/commit/adbb6c9f63170f4a4adc8395f3a33421c446dbcc))
* **Form:** update form field options and dependencies ([f1c17a1](https://github.com/alibaba-fusion/next/commit/f1c17a1e5bbd68cd0e56e2334ed1a7690973899f))
* **Range:** convert to TypeScript, improve docs and tests ([d4b99e9](https://github.com/alibaba-fusion/next/commit/d4b99e964a7d0bbd6e04b60d065ce884db0e6366))
* **Shell:** convert to TypeScript, improve docs and tests ([202f538](https://github.com/alibaba-fusion/next/commit/202f5380026e75252d9a8267489ac1a5ff6b82f5))
* **Tab:** convert to TypeScript, improve docs and tests ([4632a46](https://github.com/alibaba-fusion/next/commit/4632a467a77a4387c5ec8dec55a97353fa40ca33))
* **TimePicker2:** convert to TypeScript, improve docs and tests, close [#4616](https://github.com/alibaba-fusion/next/issues/4616) ([e082513](https://github.com/alibaba-fusion/next/commit/e082513e781738fdbc27cd418cb6fa13aa06faa1))
* **Slider:** correct typo and improve types definition ([9d4f0f7](https://github.com/alibaba-fusion/next/commit/9d4f0f79efb48e0ab657862bef17d0b3040e6709))

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.27.28';
next.version = '1.27.29';

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.27.28",
"version": "1.27.29",
"description": "A configurable component library for web built on React.",
"keywords": [
"fusion",
Expand Down
70 changes: 35 additions & 35 deletions tools/release/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -219,43 +219,43 @@ registryTask(__filename, 'release', async () => {
// await registryChangelog(__filename);
const { masterTag } = getVersion();

await registryBuild(__filename);
// await registryBuild(__filename);

await registryCheck(__filename);
// await registryCheck(__filename);

await registryTask(__filename, 'release check', async () => {
await registryCheckSass(__filename);
await registryTask(__filename, 'check git tag', checkTags);
await registryTask(__filename, 'check build outputs', checkFiles);
});
await registryTask(__filename, 'publish to npm', async () => {
const { version } = getVersion();
const versionTag = version.match(/[a-z]+/)?.[0];
const distTag: string =
ARGV.tag ||
versionTag ||
(
await inquirer.prompt({
name: 'tag',
type: 'list',
choices: ['latest', 'next', 'beta'],
default: 0,
message: 'publish dist-tags:',
})
).tag;
await registryTask(__filename, 'publish next to npm', publishNpm.bind(undefined, distTag));
await registryTask(
__filename,
'publish next-docs to npm',
publishNpmForDocs.bind(undefined, distTag),
() => {
fs.removeSync(NEXT_DOCS_PATH);
}
);
await registryTask(__filename, 'tnpm sync', () => {
execSync('tnpm', ['sync', '@alifd/next', NEXT_DOCS_NAME]);
});
});
// await registryTask(__filename, 'release check', async () => {
// await registryCheckSass(__filename);
// await registryTask(__filename, 'check git tag', checkTags);
// await registryTask(__filename, 'check build outputs', checkFiles);
// });
// await registryTask(__filename, 'publish to npm', async () => {
// const { version } = getVersion();
// const versionTag = version.match(/[a-z]+/)?.[0];
// const distTag: string =
// ARGV.tag ||
// versionTag ||
// (
// await inquirer.prompt({
// name: 'tag',
// type: 'list',
// choices: ['latest', 'next', 'beta'],
// default: 0,
// message: 'publish dist-tags:',
// })
// ).tag;
// await registryTask(__filename, 'publish next to npm', publishNpm.bind(undefined, distTag));
// await registryTask(
// __filename,
// 'publish next-docs to npm',
// publishNpmForDocs.bind(undefined, distTag),
// () => {
// fs.removeSync(NEXT_DOCS_PATH);
// }
// );
// await registryTask(__filename, 'tnpm sync', () => {
// execSync('tnpm', ['sync', '@alifd/next', NEXT_DOCS_NAME]);
// });
// });

const commitRollbackFns = new Set<() => unknown>();
await registryTask(
Expand Down

0 comments on commit de047ec

Please sign in to comment.