adminforth 1.20.0 → 1.20.1-next.2

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.
@@ -22,6 +22,7 @@ export default async function createApp(args) {
22
22
  await tasks.run();
23
23
  } catch (err) {
24
24
  console.error(chalk.red(`\n❌ ${err.message}\n`));
25
+ console.error(err.stack);
25
26
  process.exit(1);
26
27
  }
27
28
  }
@@ -237,7 +237,7 @@ async function writeTemplateFiles(dirname, cwd, options) {
237
237
  src: '.dockerignore.hbs',
238
238
  dest: '.dockerignore',
239
239
  data: {
240
- sqliteFile: detectDbProvider(options.db).startsWith('sqlite') ? options.db.split('://')[1] : null,
240
+ sqliteFile: detectDbProvider(dbUrl).startsWith('sqlite') ? dbUrl.split('://')[1] : null,
241
241
  },
242
242
  }
243
243
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adminforth",
3
- "version": "1.20.0",
3
+ "version": "1.20.1-next.2",
4
4
  "description": "OpenSource Vue3 powered forth-generation admin panel",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
@@ -58,6 +58,7 @@
58
58
  "license": "ISC",
59
59
  "type": "module",
60
60
  "dependencies": {
61
+ "@babel/parser": "^7.27.0",
61
62
  "@clickhouse/client": "^1.4.0",
62
63
  "@faker-js/faker": "^9.0.3",
63
64
  "@inquirer/prompts": "^7.4.1",