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