@tamagui/build 1.43.10 → 1.43.11
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/package.json +1 -1
- package/tamagui-build.js +6 -0
package/package.json
CHANGED
package/tamagui-build.js
CHANGED
|
@@ -71,6 +71,12 @@ if (shouldWatch) {
|
|
|
71
71
|
process.env.DISABLE_AUTORUN = true
|
|
72
72
|
const rebuild = debounce(build, 100)
|
|
73
73
|
const chokidar = require('chokidar')
|
|
74
|
+
|
|
75
|
+
// do one js build but not types
|
|
76
|
+
build({
|
|
77
|
+
skipTypes: true
|
|
78
|
+
})
|
|
79
|
+
|
|
74
80
|
chokidar
|
|
75
81
|
// prevent infinite loop but cause race condition if you just build directly
|
|
76
82
|
.watch('src', {
|