@tamagui/build 1.31.1 → 1.31.2

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tamagui/build",
3
- "version": "1.31.1",
3
+ "version": "1.31.2",
4
4
  "bin": {
5
5
  "tamagui-build": "tamagui-build.js"
6
6
  },
package/tamagui-build.js CHANGED
@@ -131,8 +131,8 @@ async function buildTsc() {
131
131
  await fs.ensureDir(targetDir)
132
132
 
133
133
  const declarationToRootFlag = declarationToRoot ? ' --declarationDir ./' : ''
134
- const baseUrlFlag = ignoreBaseUrl ? '' : `--baseUrl ${baseUrl}`
135
- const cmd = `tsc ${baseUrlFlag} --outDir ${targetDir} --rootDir src ${declarationToRootFlag}--emitDeclarationOnly --declarationMap`
134
+ const baseUrlFlag = ignoreBaseUrl ? '' : ` --baseUrl ${baseUrl}`
135
+ const cmd = `tsc${baseUrlFlag} --outDir ${targetDir} --rootDir src ${declarationToRootFlag}--emitDeclarationOnly --declarationMap`
136
136
 
137
137
  // console.log('\x1b[2m$', `npx ${cmd}`)
138
138
  await exec('npx', cmd.split(' '))
File without changes