@tamagui/build 1.0.1-beta.107 → 1.0.1-beta.110

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.
@@ -1 +1 @@
1
- @tamagui/build:build: cache hit, replaying output 93fef4c629ae0f5d
1
+ @tamagui/build:build: cache hit, replaying output 4100d3e2ab1b7038
@@ -0,0 +1 @@
1
+ {"files":{".turbo":"1657707744269.8396","node_modules":"1651629933296.4438","externalNodePlugin.js":"fa1cd57f4fb8bc9a8c7ea03adaabc309b322ae0b","package.json":"3498ca8cdb488b0419a20a649572dad080e6e155","tamagui-build.js":"8f03027a3460a76bf7d5e112421550a14f9b0af2.1657708293406.0405","tsconfig.json":"89a0bf673a97ce4b12af63427e054573c8491bd8"},"deps":{}}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tamagui/build",
3
- "version": "1.0.1-beta.107",
3
+ "version": "1.0.1-beta.110",
4
4
  "bin": {
5
5
  "tamagui-build": "tamagui-build.js"
6
6
  },
@@ -13,7 +13,7 @@
13
13
  },
14
14
  "dependencies": {
15
15
  "chokidar": "^3.5.2",
16
- "esbuild": "^0.14.48",
16
+ "esbuild": "^0.14.49",
17
17
  "execa": "^5.0.0",
18
18
  "fast-glob": "^3.2.11",
19
19
  "fs-extra": "^10.1.0",
package/tamagui-build.js CHANGED
@@ -25,7 +25,13 @@ const flatOut = [pkgMain, pkgModule, pkgModuleJSX].filter(Boolean).length === 1
25
25
 
26
26
  async function clean() {
27
27
  try {
28
- await Promise.allSettled([fs.remove('.turbo'), fs.remove('types'), fs.remove('dist')])
28
+ await Promise.allSettled([
29
+ //
30
+ fs.remove('.turbo'),
31
+ fs.remove('.ultra.cache.json'),
32
+ fs.remove('types'),
33
+ fs.remove('dist'),
34
+ ])
29
35
  } catch {}
30
36
  if (shouldCleanBuildOnly) {
31
37
  console.log('» cleaned', pkg.name)