@docubook/create 1.8.8 → 1.8.9

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.
Files changed (2) hide show
  1. package/create.js +1 -2
  2. package/package.json +1 -1
package/create.js CHANGED
@@ -85,7 +85,6 @@ async function simulateInstallation() {
85
85
  // ========== Jika user batal install, tunjukkan langkah manual ========== //
86
86
  function manualSteps(projectDirectory, packageManager) {
87
87
  const manualInstructions = `
88
- You chose not to continue with the installation.
89
88
  Please follow these steps manually to finish setting up your project:
90
89
 
91
90
  1. ${chalk.cyan(`cd ${projectDirectory}`)}
@@ -113,7 +112,7 @@ function detectDefaultPackageManager() {
113
112
 
114
113
  // ========== Entry CLI ========== //
115
114
  program
116
- .version("1.8.8")
115
+ .version("1.8.9")
117
116
  .description("CLI to create a new Docubook project")
118
117
  .argument("[project-directory]", "Directory to create the new Docubook project")
119
118
  .action(async (projectDirectory) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@docubook/create",
3
- "version": "1.8.8",
3
+ "version": "1.8.9",
4
4
  "main": "index.js",
5
5
  "type": "module",
6
6
  "bin": {