@sanity/cli 3.64.0 → 3.64.2-react-compiler.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/lib/_chunks-cjs/cli.js +1 -1
- package/lib/_chunks-cjs/cli.js.map +1 -1
- package/lib/index.d.mts +27 -0
- package/lib/index.d.ts +27 -0
- package/package.json +7 -7
- package/src/actions/init-project/initProject.ts +1 -1
- package/src/types.ts +31 -0
package/lib/_chunks-cjs/cli.js
CHANGED
@@ -45446,7 +45446,7 @@ You can find your project on Sanity Manage \u2014 https://www.sanity.io/manage/p
|
|
45446
45446
|
cwd: workDir,
|
45447
45447
|
stdio: "inherit"
|
45448
45448
|
};
|
45449
|
-
chosen === "npm" ? await execa("npm", ["install", "next-sanity@9"], execOptions) : chosen === "yarn" ? await execa("npx", ["install-peerdeps", "--yarn", "next-sanity@9"], execOptions) : chosen === "pnpm" && await execa("pnpm", ["install", "next-sanity@9"], execOptions), print(
|
45449
|
+
chosen === "npm" ? await execa("npm", ["install", "--legacy-peer-deps", "next-sanity@9"], execOptions) : chosen === "yarn" ? await execa("npx", ["install-peerdeps", "--yarn", "next-sanity@9"], execOptions) : chosen === "pnpm" && await execa("pnpm", ["install", "next-sanity@9"], execOptions), print(
|
45450
45450
|
`
|
45451
45451
|
${chalk2.green("Success!")} Your Sanity configuration files has been added to this project`
|
45452
45452
|
);
|