@tamagui/build 1.0.10 → 1.0.12

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 +3 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tamagui/build",
3
- "version": "1.0.10",
3
+ "version": "1.0.12",
4
4
  "bin": {
5
5
  "tamagui-build": "tamagui-build.js"
6
6
  },
package/tamagui-build.js CHANGED
@@ -11,7 +11,9 @@ const { dirname } = require('path')
11
11
 
12
12
  const jsOnly = !!process.env.JS_ONLY
13
13
  const skipJS = !!(process.env.SKIP_JS || false)
14
- const shouldSkipTypes = !!(process.argv.includes('--skip-types') || process.env.SKIP_TYPES)
14
+ const shouldSkipTypes = !!(
15
+ process.argv.includes('--skip-types') || process.env.SKIP_TYPES
16
+ )
15
17
  const shouldBundle = !!process.argv.includes('--bundle')
16
18
  const shouldBundleNodeModules = !!process.argv.includes('--bundle-modules')
17
19
  const shouldClean = !!process.argv.includes('clean')