@tamagui/build 1.0.1-beta.95 → 1.0.1-beta.98
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/.turbo/turbo-build.log +1 -1
- package/package.json +1 -1
- package/tamagui-build.js +1 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@tamagui/build:build: cache hit, replaying output
|
|
1
|
+
[32m@tamagui/build:build[0m: cache hit, replaying output [2me46b982dbd22ee6d[0m
|
package/package.json
CHANGED
package/tamagui-build.js
CHANGED
|
@@ -196,10 +196,9 @@ async function esbuildWriteIfChanged(opts) {
|
|
|
196
196
|
if (!built.outputFiles) {
|
|
197
197
|
return
|
|
198
198
|
}
|
|
199
|
-
const [firstFile] = built.outputFiles
|
|
200
199
|
await Promise.all(
|
|
201
200
|
built.outputFiles.map(async (file) => {
|
|
202
|
-
const outDir = dirname(
|
|
201
|
+
const outDir = dirname(file.path)
|
|
203
202
|
await fs.ensureDir(outDir)
|
|
204
203
|
const outString = new TextDecoder().decode(file.contents)
|
|
205
204
|
if (
|