@tamagui/static 1.123.13 → 1.123.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 +14 -14
- package/src/extractor/createExtractor.ts +3 -1
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@tamagui/static",
|
3
|
-
"version": "1.123.
|
3
|
+
"version": "1.123.15",
|
4
4
|
"source": "src/index.ts",
|
5
5
|
"types": "./types/index.d.ts",
|
6
6
|
"type": "commonjs",
|
@@ -44,19 +44,19 @@
|
|
44
44
|
"@babel/runtime": "^7.25.4",
|
45
45
|
"@babel/traverse": "^7.25.4",
|
46
46
|
"@babel/types": "^7.25.4",
|
47
|
-
"@tamagui/build": "1.123.
|
48
|
-
"@tamagui/cli-color": "1.123.
|
49
|
-
"@tamagui/config-default": "1.123.
|
50
|
-
"@tamagui/core": "1.123.
|
51
|
-
"@tamagui/fake-react-native": "1.123.
|
52
|
-
"@tamagui/generate-themes": "1.123.
|
53
|
-
"@tamagui/helpers": "1.123.
|
54
|
-
"@tamagui/helpers-node": "1.123.
|
55
|
-
"@tamagui/proxy-worm": "1.123.
|
56
|
-
"@tamagui/react-native-web-internals": "1.123.
|
57
|
-
"@tamagui/react-native-web-lite": "1.123.
|
58
|
-
"@tamagui/shorthands": "1.123.
|
59
|
-
"@tamagui/types": "1.123.
|
47
|
+
"@tamagui/build": "1.123.15",
|
48
|
+
"@tamagui/cli-color": "1.123.15",
|
49
|
+
"@tamagui/config-default": "1.123.15",
|
50
|
+
"@tamagui/core": "1.123.15",
|
51
|
+
"@tamagui/fake-react-native": "1.123.15",
|
52
|
+
"@tamagui/generate-themes": "1.123.15",
|
53
|
+
"@tamagui/helpers": "1.123.15",
|
54
|
+
"@tamagui/helpers-node": "1.123.15",
|
55
|
+
"@tamagui/proxy-worm": "1.123.15",
|
56
|
+
"@tamagui/react-native-web-internals": "1.123.15",
|
57
|
+
"@tamagui/react-native-web-lite": "1.123.15",
|
58
|
+
"@tamagui/shorthands": "1.123.15",
|
59
|
+
"@tamagui/types": "1.123.15",
|
60
60
|
"babel-literal-to-ast": "^2.1.0",
|
61
61
|
"browserslist": "^4.22.2",
|
62
62
|
"check-dependency-version-consistency": "^4.1.0",
|
@@ -2,6 +2,7 @@ import type { NodePath, TraverseOptions } from '@babel/traverse'
|
|
2
2
|
import traverse from '@babel/traverse'
|
3
3
|
import * as t from '@babel/types'
|
4
4
|
import { Color, colorLog } from '@tamagui/cli-color'
|
5
|
+
import * as reactNativeWebInternals from '@tamagui/react-native-web-internals'
|
5
6
|
import {
|
6
7
|
StyleObjectIdentifier,
|
7
8
|
StyleObjectRules,
|
@@ -13,7 +14,6 @@ import {
|
|
13
14
|
} from '@tamagui/web'
|
14
15
|
import { basename, relative } from 'node:path'
|
15
16
|
import type { ViewStyle } from 'react-native'
|
16
|
-
import * as reactNativeWebInternals from '@tamagui/react-native-web-internals'
|
17
17
|
|
18
18
|
import { FAILED_EVAL } from '../constants'
|
19
19
|
import { requireTamaguiCore } from '../helpers/requireTamaguiCore'
|
@@ -206,11 +206,13 @@ export function createExtractor(
|
|
206
206
|
if (disable === true || (Array.isArray(disable) && disable.includes(sourcePath))) {
|
207
207
|
return null
|
208
208
|
}
|
209
|
+
|
209
210
|
if (!isFullyDisabled(options)) {
|
210
211
|
if (!components) {
|
211
212
|
throw new Error(`Must provide components`)
|
212
213
|
}
|
213
214
|
}
|
215
|
+
|
214
216
|
if (
|
215
217
|
sourcePath &&
|
216
218
|
includeExtensions &&
|