@tamagui/helpers-node 1.0.1-beta.173 → 1.0.1-beta.174

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/dist/types.js.map CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../src/types.ts"],
4
- "sourcesContent": ["export interface TamaguiOptions {\n // module paths you want to compile with tamagui (for example ['tamagui'])\n components: string[]\n // your tamagui.config.ts\n config?: string\n evaluateVars?: boolean\n importsWhitelist?: string[]\n disable?: boolean\n disableExtraction?: boolean\n disableFlattening?: boolean\n disableDebugAttr?: boolean\n disableExtractInlineMedia?: boolean\n disableExtractVariables?: boolean\n excludeReactNativeWebExports?: string[]\n exclude?: RegExp\n logTimings?: boolean\n prefixLogs?: string\n\n // probably non user options\n cssPath?: string\n cssData?: any\n deoptProps?: Set<string>\n excludeProps?: Set<string>\n inlineProps?: Set<string>\n forceExtractStyleDefinitions?: boolean\n}\n"],
4
+ "sourcesContent": ["export interface TamaguiOptions {\n // module paths you want to compile with tamagui (for example ['tamagui'])\n components: string[]\n // your tamagui.config.ts\n config?: string\n evaluateVars?: boolean\n importsWhitelist?: string[]\n disable?: boolean\n disableExtraction?: boolean\n disableFlattening?: boolean\n disableDebugAttr?: boolean\n disableExtractInlineMedia?: boolean\n disableExtractVariables?: boolean\n disableExtractFoundComponents?: boolean\n excludeReactNativeWebExports?: string[]\n exclude?: RegExp\n logTimings?: boolean\n prefixLogs?: string\n\n // probably non user options\n cssPath?: string\n cssData?: any\n deoptProps?: Set<string>\n excludeProps?: Set<string>\n inlineProps?: Set<string>\n forceExtractStyleDefinitions?: boolean\n}\n"],
5
5
  "mappings": ";;;;;;;;;;;;;;AAAA;AAAA;",
6
6
  "names": []
7
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tamagui/helpers-node",
3
- "version": "1.0.1-beta.173",
3
+ "version": "1.0.1-beta.174",
4
4
  "source": "src/index.ts",
5
5
  "types": "./types/index.d.ts",
6
6
  "main": "./dist",
@@ -16,7 +16,7 @@
16
16
  "clean:build": "tamagui-build clean:build"
17
17
  },
18
18
  "devDependencies": {
19
- "@tamagui/build": "^1.0.1-beta.173",
19
+ "@tamagui/build": "^1.0.1-beta.174",
20
20
  "fs-extra": "^10.1.0"
21
21
  },
22
22
  "publishConfig": {
package/src/types.ts CHANGED
@@ -11,6 +11,7 @@ export interface TamaguiOptions {
11
11
  disableDebugAttr?: boolean
12
12
  disableExtractInlineMedia?: boolean
13
13
  disableExtractVariables?: boolean
14
+ disableExtractFoundComponents?: boolean
14
15
  excludeReactNativeWebExports?: string[]
15
16
  exclude?: RegExp
16
17
  logTimings?: boolean
package/types/types.d.ts CHANGED
@@ -9,6 +9,7 @@ export interface TamaguiOptions {
9
9
  disableDebugAttr?: boolean;
10
10
  disableExtractInlineMedia?: boolean;
11
11
  disableExtractVariables?: boolean;
12
+ disableExtractFoundComponents?: boolean;
12
13
  excludeReactNativeWebExports?: string[];
13
14
  exclude?: RegExp;
14
15
  logTimings?: boolean;