@tamagui/build 1.15.13 → 1.15.15
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 +5 -0
package/package.json
CHANGED
package/tamagui-build.js
CHANGED
|
@@ -162,6 +162,7 @@ async function buildJs() {
|
|
|
162
162
|
outdir: flatOut ? 'dist' : 'dist/cjs',
|
|
163
163
|
bundle: shouldBundle,
|
|
164
164
|
sourcemap: true,
|
|
165
|
+
sourcesContent: false,
|
|
165
166
|
target: 'node14',
|
|
166
167
|
keepNames: false,
|
|
167
168
|
format: 'cjs',
|
|
@@ -180,6 +181,7 @@ async function buildJs() {
|
|
|
180
181
|
outdir: flatOut ? 'dist' : 'dist/esm',
|
|
181
182
|
bundle: shouldBundle,
|
|
182
183
|
sourcemap: true,
|
|
184
|
+
sourcesContent: false,
|
|
183
185
|
target: 'node16',
|
|
184
186
|
keepNames: false,
|
|
185
187
|
jsx: 'automatic',
|
|
@@ -198,6 +200,7 @@ async function buildJs() {
|
|
|
198
200
|
outdir: flatOut ? 'dist' : 'dist/esm',
|
|
199
201
|
bundle: shouldBundle,
|
|
200
202
|
sourcemap: true,
|
|
203
|
+
sourcesContent: false,
|
|
201
204
|
target: 'node16',
|
|
202
205
|
keepNames: false,
|
|
203
206
|
jsx: 'automatic',
|
|
@@ -218,6 +221,7 @@ async function buildJs() {
|
|
|
218
221
|
entryPoints: files,
|
|
219
222
|
bundle: shouldBundle,
|
|
220
223
|
sourcemap: true,
|
|
224
|
+
sourcesContent: false,
|
|
221
225
|
allowOverwrite: true,
|
|
222
226
|
target: 'es2020',
|
|
223
227
|
keepNames: false,
|
|
@@ -236,6 +240,7 @@ async function buildJs() {
|
|
|
236
240
|
entryPoints: files,
|
|
237
241
|
bundle: shouldBundle,
|
|
238
242
|
sourcemap: true,
|
|
243
|
+
sourcesContent: false,
|
|
239
244
|
allowOverwrite: true,
|
|
240
245
|
target: 'es2020',
|
|
241
246
|
keepNames: false,
|