wesl-packager 0.6.49 → 0.7.1

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/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "wesl-packager",
3
- "version": "0.6.49",
3
+ "version": "0.7.1",
4
4
  "type": "module",
5
- "bin": "bin/wesl-packager.js",
5
+ "bin": "bin/wesl-packager",
6
6
  "files": [
7
7
  "bin",
8
8
  "src"
@@ -12,8 +12,8 @@
12
12
  "@biomejs/js-api": "^1.0.0",
13
13
  "@biomejs/wasm-nodejs": "^2.0.6",
14
14
  "yargs": "^18.0.0",
15
- "wesl": "0.6.49",
16
- "wesl-tooling": "0.6.12"
15
+ "wesl": "0.7.2",
16
+ "wesl-tooling": "0.6.15"
17
17
  },
18
18
  "devDependencies": {
19
19
  "dependent_package": "x",
@@ -1,20 +0,0 @@
1
- export interface WeslBundle {
2
- /** npm package name sanitized to be a valid WESL identifier
3
- * (@ removed, / ==> __, - ==> _) */
4
- name: string;
5
-
6
- /** WESL edition of the code e.g. unstable_2025_1 */
7
- edition: string;
8
-
9
- /** map of WESL/WGSL modules:
10
- * keys are file paths, relative to package root (e.g. "./lib.wgsl")
11
- * values are WESL/WGSL code strings
12
- */
13
- modules: Record<string, string>;
14
-
15
- /** packages referenced by this package */
16
- dependencies?: WeslBundle[];
17
- }
18
-
19
- export declare const weslBundle: WeslBundle;
20
- export default weslBundle;
@@ -1,10 +0,0 @@
1
- export const weslBundle = {
2
- name: "test_wesl_package",
3
- edition: "unstable_2025_1",
4
- modules: {
5
- "util.wgsl": "fn foo() {}",
6
- "lib.wesl": "import package::util;\n",
7
- },
8
- };
9
-
10
- export default weslBundle;
File without changes