@vercel/build-utils 14.0.2 → 14.0.3

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/package.json +4 -5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @vercel/build-utils
2
2
 
3
+ ## 14.0.3
4
+
5
+ ### Patch Changes
6
+
7
+ - d72826e: Prevented unit tests and generated outputs from changing Turborepo task inputs during CI, and removed the redundant affected Unit test retry.
8
+
3
9
  ## 14.0.2
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vercel/build-utils",
3
- "version": "14.0.2",
3
+ "version": "14.0.3",
4
4
  "license": "Apache-2.0",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.js",
@@ -59,9 +59,8 @@
59
59
  "scripts": {
60
60
  "build": "node build.mjs",
61
61
  "test": "vitest run --config ../../vitest.config.mts",
62
- "vitest-run": "vitest -c ../../vitest.config.mts",
63
- "vitest-unit": "pnpm vitest-run --run test/unit.",
64
- "vitest-e2e": "glob --absolute 'test/integration*.test.ts'",
65
- "type-check": "tsc --noEmit"
62
+ "test-e2e": "vitest run --config ../../vitest.config.mts test/integration",
63
+ "type-check": "tsc --noEmit",
64
+ "test-unit": "vitest run --config ../../vitest.config.mts test/unit."
66
65
  }
67
66
  }