@tamagui/build 1.0.1-beta.78 → 1.0.1-beta.81

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 cdd5d72fb1e6f315
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.81",
4
4
  "bin": {
5
5
  "tamagui-build": "tamagui-build.js"
6
6
  },
package/tamagui-build.js CHANGED
@@ -76,8 +76,7 @@ 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)
81
80
  }
82
81
  }
83
82
 
@@ -170,7 +169,7 @@ async function buildJs() {
170
169
  jsx: 'preserve',
171
170
  outdir: flatOut ? 'dist' : 'dist/jsx',
172
171
  entryPoints: files,
173
- sourcemap: false,
172
+ sourcemap: true,
174
173
  target: 'es2019',
175
174
  keepNames: false,
176
175
  format: 'esm',