Skip to content

Commit 12fafb7

Browse files
authored
Merge pull request #3 from biancangming/dev
0.0.3
2 parents a874b15 + 8359f3d commit 12fafb7

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

.github/workflows/npm-version-main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: npm publish
1+
name: npm publish release
22
on:
33
push:
44
branches:
@@ -21,5 +21,5 @@ jobs:
2121
uses: JS-DevTools/npm-publish@v1
2222
with:
2323
tag: latest
24-
package_path: dist
24+
package: dist/package.json
2525
token: ${{ secrets.NPM_TOKEN }}

.github/workflows/npm-version.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: npm publish
1+
name: npm publish beta
22
on:
33
push:
44
branches:
@@ -23,5 +23,5 @@ jobs:
2323
uses: JS-DevTools/npm-publish@v1
2424
with:
2525
tag: beta
26-
package_path: dist
26+
package: dist/package.json
2727
token: ${{ secrets.NPM_TOKEN }}

example/components.d.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// generated by unplugin-vue-components
22
// We suggest you to commit this file into source control
33
// Read more: https://github.com/vuejs/core/pull/3399
4-
import '@vue/runtime-core'
54

65
export {}
76

@@ -45,7 +44,7 @@ declare module '@vue/runtime-core' {
4544
ATimeRangePicker: typeof import('ant-design-vue/es')['TimeRangePicker']
4645
ATreeSelect: typeof import('ant-design-vue/es')['TreeSelect']
4746
AUpload: typeof import('ant-design-vue/es')['Upload']
48-
CodeView: typeof import('./src/components/CodeView.vue')['default']
47+
CodeView: typeof import("./src/components/CodeView")['default']
4948
RouterLink: typeof import('vue-router')['RouterLink']
5049
RouterView: typeof import('vue-router')['RouterView']
5150
}

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "howuse",
3-
"version": "0.0.2",
3+
"version": "0.0.3",
44
"description": "a simple Vue Composition utils",
55
"main": "dist/index.js",
66
"scripts": {
@@ -77,4 +77,4 @@
7777
"mitt": "^3.0.0",
7878
"vite-plugin-dts": "^1.6.4"
7979
}
80-
}
80+
}

0 commit comments

Comments
 (0)