@tamagui/build 1.49.9 → 1.50.0

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/tamagui-build.js +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tamagui/build",
3
- "version": "1.49.9",
3
+ "version": "1.50.0",
4
4
  "bin": {
5
5
  "tamagui-build": "tamagui-build.js"
6
6
  },
package/tamagui-build.js CHANGED
@@ -126,7 +126,7 @@ async function buildTsc() {
126
126
  shouldSkipInitialTypes = false
127
127
  return
128
128
  }
129
-
129
+
130
130
  const targetDir = 'types'
131
131
  try {
132
132
  // typescripts build cache messes up when doing declarationOnly
@@ -140,6 +140,7 @@ async function buildTsc() {
140
140
  // console.log('\x1b[2m$', `npx ${cmd}`)
141
141
  await exec('npx', cmd.split(' '))
142
142
  } catch (err) {
143
+ // rome-ignore lint/nursery/noConsoleLog: <explanation>
143
144
  console.log(err.message)
144
145
  if (!shouldWatch) {
145
146
  process.exit(1)