@dev-blinq/cucumber_client 1.0.1742-dev → 1.0.1743-dev

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.
@@ -28,15 +28,12 @@ export function handleFileInitOps(projectDir, logger) {
28
28
  FIXED_FOLDER_NAMES.STEP_DEFINITIONS,
29
29
  FIXED_FILE_NAMES.UTILS
30
30
  );
31
- console.log("🍊", __dirname, "🍎", process.cwd());
32
31
  const utilsTemplateFilePath = path.join(
33
32
  __dirname,
34
33
  `../../${FIXED_FOLDER_NAMES.ASSETS}`,
35
34
  FIXED_FOLDER_NAMES.TEMPLATES,
36
35
  FIXED_FILE_NAMES.UTILS_TEMPLATE
37
36
  );
38
- logger.info("🔆 utilsTemplateFilePath:", utilsTemplateFilePath);
39
- logger.info("☀️ exists:", existsSync(utilsTemplateFilePath));
40
37
 
41
38
  if (!existsSync(utilsTemplateFilePath)) {
42
39
  throw new Error(`Utils template not found at: ${utilsTemplateFilePath}`);
@@ -61,18 +58,6 @@ export function handleFileInitOps(projectDir, logger) {
61
58
 
62
59
  return { featureFolder, utilsFilePath, utilsContent };
63
60
  } catch (error) {
64
- console.log(
65
- "🔰🔰🔰🔰🔰🔰",
66
- JSON.stringify(
67
- {
68
- type: SaveJobErrorType.FILE_SYSTEM_ERROR,
69
- message: "❌ Failed to initialize step definition folder structure",
70
- meta: { reason: getErrorMessage(error) },
71
- },
72
- null,
73
- 2
74
- )
75
- );
76
61
  throw new UpdateStepDefinitionsError({
77
62
  type: SaveJobErrorType.FILE_SYSTEM_ERROR,
78
63
  message: "❌ Failed to initialize step definition folder structure",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dev-blinq/cucumber_client",
3
- "version": "1.0.1742-dev",
3
+ "version": "1.0.1743-dev",
4
4
  "description": " ",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",