@vuetkit/core 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -1,4 +1,7 @@
1
1
  //#region src/demo/useDemo/index.d.ts
2
2
  declare function useDemo(): string;
3
3
  //#endregion
4
- export { useDemo };
4
+ //#region src/network/useRequest/index.d.ts
5
+ declare function useRequest(): string;
6
+ //#endregion
7
+ export { useDemo, useRequest };
package/dist/index.js CHANGED
@@ -3,4 +3,9 @@ function useDemo() {
3
3
  return "hello useDemo";
4
4
  }
5
5
  //#endregion
6
- export { useDemo };
6
+ //#region src/network/useRequest/index.ts
7
+ function useRequest() {
8
+ return "useRequest";
9
+ }
10
+ //#endregion
11
+ export { useDemo, useRequest };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vuetkit/core",
3
3
  "type": "module",
4
- "version": "0.0.1",
4
+ "version": "0.0.2",
5
5
  "description": "Collection of business development hooks for Vue3 projects",
6
6
  "author": "Kalu5",
7
7
  "license": "MIT",
@@ -10,7 +10,7 @@
10
10
  "hooks"
11
11
  ],
12
12
  "main": "dist/index.js",
13
- "module": "dist/index.mjs",
13
+ "module": "dist/index.js",
14
14
  "types": "dist/index.d.ts",
15
15
  "files": [
16
16
  "README.md",