@vue.ts/shared 1.0.0-beta.7 → 1.0.0-beta.9

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,4 @@
1
- import { FilterPattern, createFilter } from "@rollup/pluginutils";
1
+ import { FilterPattern } from "unplugin";
2
2
 
3
3
  //#region src/types.d.ts
4
4
  interface BaseOptions {
@@ -9,4 +9,4 @@ interface BaseOptions {
9
9
  //#region src/utils.d.ts
10
10
  declare const normalizePath: (id: string) => string;
11
11
  //#endregion
12
- export { BaseOptions, createFilter, normalizePath };
12
+ export { BaseOptions, normalizePath };
package/dist/index.js CHANGED
@@ -1,8 +1,6 @@
1
- import { createFilter } from "@rollup/pluginutils";
2
-
3
1
  //#region src/utils.ts
4
2
  const windowsPathReg = /\\/g;
5
3
  const normalizePath = (id) => id.replace(windowsPathReg, "/");
6
4
 
7
5
  //#endregion
8
- export { createFilter, normalizePath };
6
+ export { normalizePath };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vue.ts/shared",
3
- "version": "1.0.0-beta.7",
3
+ "version": "1.0.0-beta.9",
4
4
  "author": "Ray <i@mk1.io> (https://github.com/so1ve)",
5
5
  "type": "module",
6
6
  "description": "Shared utils used by vue.ts",
@@ -31,8 +31,9 @@
31
31
  "publishConfig": {
32
32
  "access": "public"
33
33
  },
34
- "dependencies": {
35
- "@rollup/pluginutils": "^5.3.0"
34
+ "devDependencies": {
35
+ "unplugin": "2.3.10",
36
+ "vite": "7.1.12"
36
37
  },
37
38
  "scripts": {
38
39
  "build": "tsdown",