creatium 0.1.4 → 0.1.5

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/dist/main.mjs +5 -5
  2. package/package.json +2 -2
package/dist/main.mjs CHANGED
@@ -1609,7 +1609,7 @@ class CreatiumCore {
1609
1609
  else if (typeof this.config.outro === "function" && __privateGet$1(this, _data))
1610
1610
  await this.config.outro(__privateGet$1(this, _data));
1611
1611
  else if (this.config.outro === void 0)
1612
- this.utils.prompt.outro("Succesfully finished \u{1F308}");
1612
+ this.utils.prompt.outro("Successfully completed \u{1F308}");
1613
1613
  }
1614
1614
  /**
1615
1615
  * Copy a directory from input path to output path.
@@ -1661,7 +1661,7 @@ class CreatiumCore {
1661
1661
  try {
1662
1662
  s.start(`Installing with ${installer}`);
1663
1663
  await execChild(command[installer]);
1664
- s.stop(__privateGet$1(this, _style).tick + " Package installed successfully");
1664
+ s.stop(`${__privateGet$1(this, _style).tick} Package installed with [${installer}] successfully`);
1665
1665
  } catch (_e) {
1666
1666
  if (this.debugMode)
1667
1667
  s.stop(`Error in installation with [${installer}]: ${_e?.toString()}`);
@@ -1697,12 +1697,12 @@ class CreatiumCore {
1697
1697
  try {
1698
1698
  s.start(`Opening in ${editor}`);
1699
1699
  await execChild(`${editor} ${input}`);
1700
- s.stop(__privateGet$1(this, _style).tick + " TEXT_EDITOR opened successfully");
1700
+ s.stop(`${__privateGet$1(this, _style).tick} Text editor [${editor}] opened successfully`);
1701
1701
  } catch (_e) {
1702
1702
  if (this.debugMode)
1703
- s.stop(`Error opening in [${editor}]: ${_e?.toString()}`);
1703
+ s.stop(`Error opening [${editor}] text editor: ${_e?.toString()}`);
1704
1704
  else
1705
- s.stop("Error opening TEXT_EDITOR");
1705
+ s.stop(`Error opening [${editor}] text editor`);
1706
1706
  }
1707
1707
  }
1708
1708
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "creatium",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "Build your create-bins quickly and easily",
5
5
  "bugs": {
6
6
  "url": "https://github.com/pigeonposse/creatium/issues",
@@ -47,7 +47,7 @@
47
47
  "@types/columnify": "1.5.4",
48
48
  "@types/update-notifier": "6.0.8",
49
49
  "@types/yargs": "17.0.33",
50
- "@creatium/repo-config": "0.1.3"
50
+ "@creatium/repo-config": "0.1.4"
51
51
  },
52
52
  "publishConfig": {
53
53
  "access": "public",