@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.
@@ -1 +1 @@
1
- @tamagui/build:build: cache hit, replaying output 8d9a65547c8e741a
1
+ @tamagui/build:build: cache hit, replaying output 26e656fc1b671471
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tamagui/build",
3
- "version": "1.0.1-beta.78",
3
+ "version": "1.0.1-beta.79",
4
4
  "bin": {
5
5
  "tamagui-build": "tamagui-build.js"
6
6
  },
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.log(error.message)
80
- process.exit(1)
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: false,
175
+ sourcemap: true,
174
176
  target: 'es2019',
175
177
  keepNames: false,
176
178
  format: 'esm',