wesl-plugin 0.6.72 → 0.6.74

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/README.md CHANGED
@@ -132,4 +132,4 @@ const myExtension: PluginExtension = {
132
132
  };
133
133
  ```
134
134
 
135
- See [PluginExtension.ts](https://github.com/wgsl-tooling-wg/wesl-js/blob/main/tools/packages/wesl-plugin/src/PluginExtension.ts) for the full API.
135
+ See [PluginExtension.ts](https://github.com/wgsl-tooling-wg/wesl-js/blob/main/packages/wesl-plugin/src/PluginExtension.ts) for the full API.
@@ -1,7 +1,4 @@
1
- import { t as WeslPluginOptions } from "../WeslPluginOptions-D81oyynl.mjs";
2
- import * as _farmfe_core0 from "@farmfe/core";
3
-
4
1
  //#region src/plugins/farm.d.ts
5
- declare const _default: (options?: WeslPluginOptions | undefined) => _farmfe_core0.JsPlugin;
2
+ declare const _default: any;
6
3
  //#endregion
7
4
  export { _default as default };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "wesl-plugin",
3
3
  "description": "",
4
- "version": "0.6.72",
4
+ "version": "0.6.74",
5
5
  "type": "module",
6
6
  "files": [
7
7
  "src",
@@ -25,8 +25,8 @@
25
25
  },
26
26
  "dependencies": {
27
27
  "unplugin": "^2.3.5",
28
- "wesl": "0.7.24",
29
- "wesl-reflect": "0.0.3"
28
+ "wesl": "0.7.26",
29
+ "wesl-reflect": "0.0.5"
30
30
  },
31
31
  "devDependencies": {
32
32
  "@nuxt/kit": "^3.17.6",
@@ -42,7 +42,6 @@
42
42
  "wesl-tooling": "x"
43
43
  },
44
44
  "peerDependencies": {
45
- "@farmfe/core": ">=1",
46
45
  "@nuxt/kit": "^3",
47
46
  "@nuxt/schema": "^3",
48
47
  "esbuild": "*",
@@ -51,9 +50,6 @@
51
50
  "webpack": "^4 || ^5"
52
51
  },
53
52
  "peerDependenciesMeta": {
54
- "@farmfe/core": {
55
- "optional": true
56
- },
57
53
  "@nuxt/kit": {
58
54
  "optional": true
59
55
  },
@@ -1,4 +1,5 @@
1
1
  import { createFarmPlugin } from "unplugin";
2
2
  import { weslPlugin } from "../WeslPlugin";
3
3
 
4
- export default createFarmPlugin(weslPlugin);
4
+ // typed as any to avoid requiring @farmfe/core types at build time
5
+ export default createFarmPlugin(weslPlugin) as any;