@jterrazz/typescript 10.1.9 → 10.1.10

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.
@@ -56,7 +56,6 @@ const PRODUCT = 'dist';
56
56
  const ARTEFACT_DIRECTORIES = new Map([
57
57
  ['.cache', '.artifacts/<tool>/'],
58
58
  ['.next', '.artifacts/next/'],
59
- ['.turbo', '.artifacts/turbo/'],
60
59
  ['.vite', '.artifacts/vite/'],
61
60
  ['bin', '.artifacts/go/'],
62
61
  ['build', '.artifacts/<tool>/'],
@@ -83,6 +82,10 @@ const EXCEPTIONS = new Set([
83
82
  '.expo',
84
83
  '.gradle',
85
84
  '.swiftpm',
85
+ // Turborepo writes `<package>/.turbo/turbo-<task>.log` and offers no key,
86
+ // flag or environment variable to move it; only its cache obeys `cacheDir`,
87
+ // whose home stays `.artifacts/turbo/`.
88
+ '.turbo',
86
89
  '.vercel',
87
90
  'DerivedData',
88
91
  'Package.resolved',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jterrazz/typescript",
3
- "version": "10.1.9",
3
+ "version": "10.1.10",
4
4
  "license": "MIT",
5
5
  "author": "Jean-Baptiste Terrazzoni <contact@jterrazz.com>",
6
6
  "repository": {