@tamagui/build 1.66.0 → 1.67.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 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tamagui/build",
3
- "version": "1.66.0",
3
+ "version": "1.67.0",
4
4
  "bin": {
5
5
  "tamagui-build": "tamagui-build.js"
6
6
  },
package/tamagui-build.js CHANGED
@@ -152,7 +152,7 @@ async function buildTsc() {
152
152
  console.log('\x1b[2m$', `npx ${cmd}`)
153
153
  await exec('npx', cmd.split(' '))
154
154
  } catch (err) {
155
- // rome-ignore lint/suspicious/noConsoleLog: <explanation>
155
+ // biome-ignore lint/suspicious/noConsoleLog: <explanation>
156
156
  console.log(err.message)
157
157
  if (!shouldWatch) {
158
158
  process.exit(1)
@@ -362,7 +362,7 @@ async function buildJs() {
362
362
  )
363
363
  : null,
364
364
  ]).then(() => {
365
- // rome-ignore lint/suspicious/noConsoleLog: <explanation>
365
+ // biome-ignore lint/suspicious/noConsoleLog: <explanation>
366
366
  if (process.env.DEBUG) console.log(`built js in ${Date.now() - start}ms`)
367
367
  })
368
368
  }