@ereactthohir/cli 1.2.3 → 1.2.4
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 +4 -4
- package/package.json +1 -1
package/dist/commands/create.js
CHANGED
|
@@ -286,8 +286,8 @@ DB_DRIVER=${answers.database.includes('sawit') ? 'sawit' : answers.database.toLo
|
|
|
286
286
|
}
|
|
287
287
|
// Write package.json
|
|
288
288
|
const dependencies = {
|
|
289
|
-
"@ereactthohir/core": "^1.2.
|
|
290
|
-
"@ereactthohir/rice-ui": "^1.2.
|
|
289
|
+
"@ereactthohir/core": "^1.2.4",
|
|
290
|
+
"@ereactthohir/rice-ui": "^1.2.4",
|
|
291
291
|
"react": "18.2.0",
|
|
292
292
|
"react-dom": "18.2.0"
|
|
293
293
|
};
|
|
@@ -299,7 +299,7 @@ DB_DRIVER=${answers.database.includes('sawit') ? 'sawit' : answers.database.toLo
|
|
|
299
299
|
Object.assign(dependencies, templateDependencies);
|
|
300
300
|
// Add Semouth dependencies if installed
|
|
301
301
|
if (answers.installSemouth) {
|
|
302
|
-
dependencies["@ereactthohir/semouth"] = "^1.2.
|
|
302
|
+
dependencies["@ereactthohir/semouth"] = "^1.2.4";
|
|
303
303
|
}
|
|
304
304
|
// Add UI configuration file if not using default Rice UI
|
|
305
305
|
if (answers.uiSystem !== 'Rice UI (default, official)') {
|
|
@@ -316,7 +316,7 @@ DB_DRIVER=${answers.database.includes('sawit') ? 'sawit' : answers.database.toLo
|
|
|
316
316
|
},
|
|
317
317
|
dependencies,
|
|
318
318
|
devDependencies: {
|
|
319
|
-
"@ereactthohir/cli": "^1.2.
|
|
319
|
+
"@ereactthohir/cli": "^1.2.4",
|
|
320
320
|
"typescript": "^5.0.0",
|
|
321
321
|
"@types/react": "^18.0.0",
|
|
322
322
|
"@types/react-dom": "^18.0.0",
|