Skip to content

Commit 6bb3525

Browse files
committed
bump: version 0.0.7 → 0.1.0
1 parent 775463e commit 6bb3525

File tree

5 files changed

+4
-30
lines changed

5 files changed

+4
-30
lines changed

commitlint.config.js

Lines changed: 0 additions & 26 deletions
This file was deleted.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-zephyrs",
3-
"version": "0.0.6",
3+
"version": "0.0.7",
44
"main": "dist/cjs/index.js",
55
"module": "dist/esm/index.js",
66
"unpkg": "dist/vuelib.min.js",

src/components/button/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import Button from "./Button.vue";
44
import { registerComponent } from "../../utils/plugins/index";
55

66
const Plugin = {
7+
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
78
install(vue: Application) {
89
registerComponent(vue, Button);
910
}

src/components/helloworld/index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,12 @@ import HelloWorld from "./HelloWorld.vue";
44
import { registerComponent } from "./../../utils/plugins/index";
55

66
const Plugin = {
7+
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
78
install(vue: Application) {
89
registerComponent(vue, HelloWorld);
910
}
1011
};
1112

12-
// use(Plugin);
13-
1413
export default Plugin;
1514

1615
export { HelloWorld };

types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ declare const vue3ComponentLibrary: Exclude<Plugin["install"], undefined>;
44

55
export default vue3ComponentLibrary;
66

7-
export const TestWorld: Exclude<Plugin["install"], undefined> | DefineComponent;
7+
export const Button: Exclude<Plugin["install"], undefined> | DefineComponent;
88
export const HelloWorld: Exclude<Plugin["install"], undefined> | DefineComponent;

0 commit comments

Comments
 (0)