@tamagui/build 1.31.0 → 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 +1 -1
- package/tamagui-build.js +2 -2
- package/.turbo/turbo-build.log +0 -0
package/package.json
CHANGED
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 ? '' :
|
|
135
|
-
const cmd = `tsc
|
|
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(' '))
|
package/.turbo/turbo-build.log
DELETED
|
File without changes
|