@tamagui/cli 3.0.0-beta.755.1 → 3.0.0-beta.804.1
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/generate-prompt.cjs
CHANGED
|
@@ -110,12 +110,6 @@ function generateMarkdown(config) {
|
|
|
110
110
|
sections.push("This project is configured for **React Native only**.\n\n");
|
|
111
111
|
}
|
|
112
112
|
}
|
|
113
|
-
if (settings.webContainerType) {
|
|
114
|
-
sections.push(`### Web Container Type: \`${settings.webContainerType}\`
|
|
115
|
-
|
|
116
|
-
`);
|
|
117
|
-
sections.push("Enables web-specific container query optimizations.\n\n");
|
|
118
|
-
}
|
|
119
113
|
const configString = JSON.stringify(config.tamaguiConfig);
|
|
120
114
|
if (configString.includes("semi-strict-web")) {
|
|
121
115
|
sections.push("### Mode: `semi-strict-web`\n\n");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/cli",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.804.1",
|
|
4
4
|
"bin": {
|
|
5
5
|
"tama": "dist/index.cjs",
|
|
6
6
|
"tamagui": "dist/index.cjs"
|
|
@@ -51,12 +51,12 @@
|
|
|
51
51
|
"test:web": "bun run test"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@tamagui/generate-themes": "3.0.0-beta.
|
|
55
|
-
"@tamagui/metro-plugin": "3.0.0-beta.
|
|
56
|
-
"@tamagui/static": "3.0.0-beta.
|
|
57
|
-
"@tamagui/to-tailwind": "3.0.0-beta.
|
|
58
|
-
"@tamagui/types": "3.0.0-beta.
|
|
59
|
-
"@tamagui/vite-plugin": "3.0.0-beta.
|
|
54
|
+
"@tamagui/generate-themes": "3.0.0-beta.804.1",
|
|
55
|
+
"@tamagui/metro-plugin": "3.0.0-beta.804.1",
|
|
56
|
+
"@tamagui/static": "3.0.0-beta.804.1",
|
|
57
|
+
"@tamagui/to-tailwind": "3.0.0-beta.804.1",
|
|
58
|
+
"@tamagui/types": "3.0.0-beta.804.1",
|
|
59
|
+
"@tamagui/vite-plugin": "3.0.0-beta.804.1",
|
|
60
60
|
"arg": "^5.0.2",
|
|
61
61
|
"chalk": "^4.1.2",
|
|
62
62
|
"change-case": "^4.1.2",
|
|
@@ -75,10 +75,10 @@
|
|
|
75
75
|
"ts-morph": "^28.0.0",
|
|
76
76
|
"typescript": "~6.0.3",
|
|
77
77
|
"url": "^0.11.0",
|
|
78
|
-
"@tamagui/language-service": "3.0.0-beta.
|
|
78
|
+
"@tamagui/language-service": "3.0.0-beta.804.1"
|
|
79
79
|
},
|
|
80
80
|
"devDependencies": {
|
|
81
|
-
"@tamagui/build": "3.0.0-beta.
|
|
81
|
+
"@tamagui/build": "3.0.0-beta.804.1",
|
|
82
82
|
"@types/chokidar": "^2.1.3",
|
|
83
83
|
"@types/marked": "^5.0.0",
|
|
84
84
|
"vitest": "4.0.4"
|
package/src/generate-prompt.ts
CHANGED
|
@@ -112,12 +112,6 @@ function generateMarkdown(config: any): string {
|
|
|
112
112
|
}
|
|
113
113
|
}
|
|
114
114
|
|
|
115
|
-
// Check for web-specific optimizations
|
|
116
|
-
if (settings.webContainerType) {
|
|
117
|
-
sections.push(`### Web Container Type: \`${settings.webContainerType}\`\n\n`)
|
|
118
|
-
sections.push('Enables web-specific container query optimizations.\n\n')
|
|
119
|
-
}
|
|
120
|
-
|
|
121
115
|
// Check for strictness settings (common patterns)
|
|
122
116
|
const configString = JSON.stringify(config.tamaguiConfig)
|
|
123
117
|
if (configString.includes('semi-strict-web')) {
|