Skip to content

Commit 404aac0

Browse files
author
Tenny
committed
fix: 修复上个版本未正确导出组件
ci: 优化CI
1 parent a8b0603 commit 404aac0

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/release-please.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ jobs:
3333
run: |
3434
echo "Generating output value..."
3535
VALUE="Hello, World!"
36+
release_created=${{ steps.release.outputs.release_created }}
3637
echo "::set-output name=output_value::$VALUE"
38+
echo "::set-output name=release_created::$release_created"
3739
3840
joblog:
3941
runs-on: ubuntu-latest

src/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ export { default as CaretTopIcon } from './components/icon/CaretTop.vue';
1010
export { default as CaretBottomIcon } from './components/icon/CaretBottom.vue';
1111
export { default as ArrowLeftIcon } from './components/icon/ArrowLeft.vue';
1212
export { default as ArrowRightIcon } from './components/icon/ArrowRight.vue';
13+
export { default as ArrowUpIcon } from './components/icon/ArrowUp.vue';
14+
export { default as ArrowDownIcon } from './components/icon/ArrowDown.vue';
1315
export { default as Input } from './components/Input.vue';
1416
export { default as Clickoutside } from './directives/clickoutside.js';
1517
export { default as Table } from './components/Table.vue';

0 commit comments

Comments
 (0)