wesl-link 0.6.49 → 0.7.0

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-link",
3
- "version": "0.6.49",
3
+ "version": "0.7.0",
4
4
  "type": "module",
5
- "bin": "bin/wesl-link.js",
5
+ "bin": "bin/wesl-link",
6
6
  "files": [
7
7
  "bin",
8
8
  "src"
@@ -12,9 +12,8 @@
12
12
  "dependencies": {
13
13
  "import-meta-resolve": "^4.1.0",
14
14
  "yargs": "^18.0.0",
15
- "mini-parse": "0.6.41",
16
- "wesl": "0.6.49",
17
- "wesl-tooling": "0.6.12"
15
+ "wesl": "0.7.0",
16
+ "wesl-tooling": "0.6.14"
18
17
  },
19
18
  "scripts": {
20
19
  "test": "vitest --hideSkippedTests",
package/src/LinkCli.ts CHANGED
@@ -1,10 +1,10 @@
1
1
  import path from "node:path";
2
2
  import { pathToFileURL } from "node:url";
3
3
  import { resolve } from "import-meta-resolve";
4
- import { enableTracing, log } from "mini-parse";
5
4
  import {
6
5
  astToString,
7
6
  link,
7
+ log,
8
8
  RecordResolver,
9
9
  scopeToString,
10
10
  type WeslBundle,
@@ -19,7 +19,6 @@ import yargs from "yargs";
19
19
  type CliArgs = Awaited<ReturnType<typeof parseArgs>>;
20
20
 
21
21
  export async function cli(rawArgs: string[]): Promise<void> {
22
- enableTracing(); // so we get more debug info
23
22
  const argv = await parseArgs(rawArgs);
24
23
  await linkNormally(argv);
25
24
  }
File without changes