@tamagui/cli 1.50.3 → 1.52.0

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/add.js CHANGED
@@ -69,9 +69,9 @@ const installGeneratedPackage = async (type, packagesPath) => {
69
69
  try {
70
70
  (0, import_child_process.execSync)(
71
71
  `cd ${tamaguiDir} &&
72
- git clone -n --depth=1 --branch generated --filter=tree:0 https://github.com/tamagui/${repoName}
73
- cd ${repoName}
74
- git sparse-checkout set --no-cone meta
72
+ git clone -n --depth=1 --branch generated --filter=tree:0 https://github.com/tamagui/${repoName} &&
73
+ cd ${repoName} &&
74
+ git sparse-checkout set --no-cone meta &&
75
75
  git checkout`
76
76
  );
77
77
  } catch (error) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tamagui/cli",
3
- "version": "1.50.3",
3
+ "version": "1.52.0",
4
4
  "source": "src/index.ts",
5
5
  "types": "./types/index.d.ts",
6
6
  "main": "dist",
@@ -27,12 +27,12 @@
27
27
  "@callstack/repack-debugger-app": "^1.0.0",
28
28
  "@fastify/sensible": "^4.1.0",
29
29
  "@fastify/static": "^5.0.2",
30
- "@tamagui/build": "1.50.3",
31
- "@tamagui/create-theme": "1.50.3",
32
- "@tamagui/generate-themes": "1.50.3",
33
- "@tamagui/static": "1.50.3",
34
- "@tamagui/types": "1.50.3",
35
- "@tamagui/vite-plugin": "1.50.3",
30
+ "@tamagui/build": "1.52.0",
31
+ "@tamagui/create-theme": "1.52.0",
32
+ "@tamagui/generate-themes": "1.52.0",
33
+ "@tamagui/static": "1.52.0",
34
+ "@tamagui/types": "1.52.0",
35
+ "@tamagui/vite-plugin": "1.52.0",
36
36
  "@types/compression": "^1.7.2",
37
37
  "@types/morgan": "^1.9.3",
38
38
  "@vitejs/plugin-react-swc": "^3.3.2",
package/src/add.ts CHANGED
@@ -42,9 +42,9 @@ export const installGeneratedPackage = async (type: string, packagesPath?: strin
42
42
  try {
43
43
  execSync(
44
44
  `cd ${tamaguiDir} &&
45
- git clone -n --depth=1 --branch generated --filter=tree:0 https://github.com/tamagui/${repoName}
46
- cd ${repoName}
47
- git sparse-checkout set --no-cone meta
45
+ git clone -n --depth=1 --branch generated --filter=tree:0 https://github.com/tamagui/${repoName} &&
46
+ cd ${repoName} &&
47
+ git sparse-checkout set --no-cone meta &&
48
48
  git checkout`
49
49
  )
50
50
  } catch (error) {