@chimerai/cli 0.2.81 → 0.2.82
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/commands/create.js +2 -0
- package/package.json +1 -1
package/dist/commands/create.js
CHANGED
|
@@ -364,6 +364,8 @@ async function createPackageJson(targetDir, projectName, features) {
|
|
|
364
364
|
// Force postcss >= 8.5.10 to fix GHSA-qx2v-qp2m-jg93 (XSS via unescaped </style>)
|
|
365
365
|
// next bundles its own postcss which may be older than 8.5.10
|
|
366
366
|
postcss: '^8.5.10',
|
|
367
|
+
// Force uuid@11 to suppress uuid@8 deprecation warning from next-auth@4
|
|
368
|
+
uuid: '^11',
|
|
367
369
|
},
|
|
368
370
|
prisma: {
|
|
369
371
|
seed: 'tsx prisma/seed.ts',
|
package/package.json
CHANGED