@docubook/create 1.13.9 → 1.13.10

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/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@docubook/create",
3
- "version": "1.13.9",
3
+ "version": "1.13.10",
4
4
  "description": "CLI to create DocuBook projects",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
7
7
  "bin": {
8
- "create": "./src/index.js"
8
+ "docubook": "./src/index.js"
9
9
  },
10
10
  "keywords": [
11
11
  "docs",
@@ -45,7 +45,7 @@ export async function collectUserInput() {
45
45
  const { shouldInstall } = await prompt({
46
46
  type: "confirm",
47
47
  name: "shouldInstall",
48
- message: "đŸ› ī¸ Install dependencies now?",
48
+ message: "Install dependencies now?",
49
49
  initial: true,
50
50
  });
51
51
  installNow = shouldInstall;
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "docubook",
3
- "version": "1.13.9",
3
+ "version": "1.13.10",
4
4
  "private": true,
5
5
  "scripts": {
6
6
  "dev": "next dev",
@@ -2,10 +2,10 @@ import chalk from "chalk";
2
2
 
3
3
  // Logging helper with styles
4
4
  const log = {
5
- info: (msg) => console.log(chalk.cyan("â„šī¸ " + msg)),
5
+ info: (msg) => console.log(chalk.cyan("! " + msg)),
6
6
  success: (msg) => console.log(chalk.green("✔ " + msg)),
7
7
  warn: (msg) => console.log(chalk.yellow("âš ī¸ " + msg)),
8
- error: (msg) => console.log(chalk.red("✖ " + msg)),
8
+ error: (msg) => console.log(chalk.red("x " + msg)),
9
9
  };
10
10
 
11
11
  export default log;