@mayrlabs/setup-project 0.1.5 → 0.1.6

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @mayrlabs/setup-project
2
2
 
3
+ ## 0.1.6
4
+
5
+ ### Patch Changes
6
+
7
+ - 7a92694: Fixed git check commit message
8
+
3
9
  ## 0.1.5
4
10
 
5
11
  ### Patch Changes
package/dist/index.js CHANGED
@@ -822,7 +822,7 @@ async function gitCheck() {
822
822
  message: "Your working directory is dirty. Would you like to commit changes before proceeding?"
823
823
  });
824
824
  if (shouldCommit) {
825
- const message = (0, import_prompts11.text)({
825
+ const message = await (0, import_prompts11.text)({
826
826
  message: "Enter commit message:",
827
827
  placeholder: "wip: pre-setup commit",
828
828
  validate(value) {
@@ -847,7 +847,7 @@ var import_figlet = __toESM(require("figlet"));
847
847
  // package.json
848
848
  var package_default = {
849
849
  name: "@mayrlabs/setup-project",
850
- version: "0.1.5",
850
+ version: "0.1.6",
851
851
  description: "Interactive CLI to setup project tools",
852
852
  private: false,
853
853
  publishConfig: {
package/dist/index.mjs CHANGED
@@ -935,7 +935,7 @@ async function gitCheck() {
935
935
  message: "Your working directory is dirty. Would you like to commit changes before proceeding?"
936
936
  });
937
937
  if (shouldCommit) {
938
- const message = text4({
938
+ const message = await text4({
939
939
  message: "Enter commit message:",
940
940
  placeholder: "wip: pre-setup commit",
941
941
  validate(value) {
@@ -966,7 +966,7 @@ var init_package = __esm({
966
966
  "package.json"() {
967
967
  package_default = {
968
968
  name: "@mayrlabs/setup-project",
969
- version: "0.1.5",
969
+ version: "0.1.6",
970
970
  description: "Interactive CLI to setup project tools",
971
971
  private: false,
972
972
  publishConfig: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mayrlabs/setup-project",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "Interactive CLI to setup project tools",
5
5
  "private": false,
6
6
  "publishConfig": {