@chimerai/cli 0.2.91 → 0.2.92
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 -2
- package/package.json +1 -1
package/dist/commands/create.js
CHANGED
|
@@ -397,8 +397,8 @@ async function createPackageJson(targetDir, projectName, features) {
|
|
|
397
397
|
// dependencies['@chimerai/admin-ui'] = 'workspace:*'; // Not available standalone yet
|
|
398
398
|
}
|
|
399
399
|
if (features.includes('ai-chat')) {
|
|
400
|
-
dependencies['react-markdown'] = '^
|
|
401
|
-
dependencies['remark-gfm'] = '^4.0.
|
|
400
|
+
dependencies['react-markdown'] = '^10.1.0';
|
|
401
|
+
dependencies['remark-gfm'] = '^4.0.1';
|
|
402
402
|
}
|
|
403
403
|
if (features.includes('billing')) {
|
|
404
404
|
// dependencies['@chimerai/billing'] = 'workspace:*'; // Not available standalone yet
|
package/package.json
CHANGED