Skip to content

Commit 851cc62

Browse files
committed
chore(*): Release-1.27.27
1 parent 6c5b266 commit 851cc62

File tree

5 files changed

+47
-39
lines changed

5 files changed

+47
-39
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Change Log
22

3+
## [1.27.27](https://github.com/alibaba-fusion/next/compare/1.27.26...1.27.27) (2024-10-18)
4+
5+
6+
### Bug Fixes
7+
8+
* **Switch:** style prop ([6c5b266](https://github.com/alibaba-fusion/next/commit/6c5b2661d029d9d80a6196f1a16412dcd180cac8))
9+
10+
311
## [1.27.26](https://github.com/alibaba-fusion/next/compare/1.27.25...1.27.26) (2024-09-20)
412

513

LATESTLOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Latest Log
22

3-
## [1.27.26](https://github.com/alibaba-fusion/next/compare/1.27.25...1.27.26) (2024-09-20)
3+
## [1.27.27](https://github.com/alibaba-fusion/next/compare/1.27.26...1.27.27) (2024-10-18)
44

55

66
### Bug Fixes
77

8-
* **VirtualList:** stabilize children keys in virtual list ([f3d1d81](https://github.com/alibaba-fusion/next/commit/f3d1d81af3bf7b491919797bef3aec22984e5f0d))
8+
* **Switch:** style prop ([6c5b266](https://github.com/alibaba-fusion/next/commit/6c5b2661d029d9d80a6196f1a16412dcd180cac8))
99

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
var next = require('./lib/index.js');
22

3-
next.version = '1.27.26';
3+
next.version = '1.27.27';
44

55
module.exports = next;

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@alifd/next",
3-
"version": "1.27.26",
3+
"version": "1.27.27",
44
"description": "A configurable component library for web built on React.",
55
"keywords": [
66
"fusion",

tools/release/index.ts

+35-35
Original file line numberDiff line numberDiff line change
@@ -219,43 +219,43 @@ registryTask(__filename, 'release', async () => {
219219
// await registryChangelog(__filename);
220220
const { masterTag } = getVersion();
221221

222-
await registryBuild(__filename);
222+
// await registryBuild(__filename);
223223

224-
await registryCheck(__filename);
224+
// await registryCheck(__filename);
225225

226-
await registryTask(__filename, 'release check', async () => {
227-
await registryCheckSass(__filename);
228-
await registryTask(__filename, 'check git tag', checkTags);
229-
await registryTask(__filename, 'check build outputs', checkFiles);
230-
});
231-
await registryTask(__filename, 'publish to npm', async () => {
232-
const { version } = getVersion();
233-
const versionTag = version.match(/[a-z]+/)?.[0];
234-
const distTag: string =
235-
ARGV.tag ||
236-
versionTag ||
237-
(
238-
await inquirer.prompt({
239-
name: 'tag',
240-
type: 'list',
241-
choices: ['latest', 'next', 'beta'],
242-
default: 0,
243-
message: 'publish dist-tags:',
244-
})
245-
).tag;
246-
await registryTask(__filename, 'publish next to npm', publishNpm.bind(undefined, distTag));
247-
await registryTask(
248-
__filename,
249-
'publish next-docs to npm',
250-
publishNpmForDocs.bind(undefined, distTag),
251-
() => {
252-
fs.removeSync(NEXT_DOCS_PATH);
253-
}
254-
);
255-
await registryTask(__filename, 'tnpm sync', () => {
256-
execSync('tnpm', ['sync', '@alifd/next', NEXT_DOCS_NAME]);
257-
});
258-
});
226+
// await registryTask(__filename, 'release check', async () => {
227+
// await registryCheckSass(__filename);
228+
// await registryTask(__filename, 'check git tag', checkTags);
229+
// await registryTask(__filename, 'check build outputs', checkFiles);
230+
// });
231+
// await registryTask(__filename, 'publish to npm', async () => {
232+
// const { version } = getVersion();
233+
// const versionTag = version.match(/[a-z]+/)?.[0];
234+
// const distTag: string =
235+
// ARGV.tag ||
236+
// versionTag ||
237+
// (
238+
// await inquirer.prompt({
239+
// name: 'tag',
240+
// type: 'list',
241+
// choices: ['latest', 'next', 'beta'],
242+
// default: 0,
243+
// message: 'publish dist-tags:',
244+
// })
245+
// ).tag;
246+
// await registryTask(__filename, 'publish next to npm', publishNpm.bind(undefined, distTag));
247+
// await registryTask(
248+
// __filename,
249+
// 'publish next-docs to npm',
250+
// publishNpmForDocs.bind(undefined, distTag),
251+
// () => {
252+
// fs.removeSync(NEXT_DOCS_PATH);
253+
// }
254+
// );
255+
// await registryTask(__filename, 'tnpm sync', () => {
256+
// execSync('tnpm', ['sync', '@alifd/next', NEXT_DOCS_NAME]);
257+
// });
258+
// });
259259

260260
const commitRollbackFns = new Set<() => unknown>();
261261
await registryTask(

0 commit comments

Comments
 (0)