@tamagui/build 1.0.1-beta.78 → 1.0.1-beta.79
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 +5 -3
package/.turbo/turbo-build.log
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@tamagui/build:build: cache hit, replaying output
|
|
1
|
+
@tamagui/build:build: cache hit, replaying output 26e656fc1b671471
|
package/package.json
CHANGED
package/tamagui-build.js
CHANGED
|
@@ -76,8 +76,10 @@ async function build() {
|
|
|
76
76
|
])
|
|
77
77
|
console.log('built', pkg.name, 'in', Date.now() - start, 'ms')
|
|
78
78
|
} catch (error) {
|
|
79
|
-
console.
|
|
80
|
-
|
|
79
|
+
console.error(`Error building:`, error.message)
|
|
80
|
+
if (!shouldWatch) {
|
|
81
|
+
process.exit(1)
|
|
82
|
+
}
|
|
81
83
|
}
|
|
82
84
|
}
|
|
83
85
|
|
|
@@ -170,7 +172,7 @@ async function buildJs() {
|
|
|
170
172
|
jsx: 'preserve',
|
|
171
173
|
outdir: flatOut ? 'dist' : 'dist/jsx',
|
|
172
174
|
entryPoints: files,
|
|
173
|
-
sourcemap:
|
|
175
|
+
sourcemap: true,
|
|
174
176
|
target: 'es2019',
|
|
175
177
|
keepNames: false,
|
|
176
178
|
format: 'esm',
|