@dev-blinq/cucumber_client 1.0.1261-dev → 1.0.1262-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.
@@ -356,6 +356,7 @@ export async function updateFeatureFile({ featureName, scenario, override, proje
356
356
  updatedFeatureFileContent = await prettier.format(updatedFeatureFileContent, {
357
357
  ...prettierConfig,
358
358
  parser: "gherkin",
359
+ plugins: ["prettier-plugin-gherkin"],
359
360
  });
360
361
  } catch (error) {
361
362
  console.error("Error formatting feature file content with Prettier:", error);
@@ -369,6 +370,7 @@ export async function updateFeatureFile({ featureName, scenario, override, proje
369
370
  updatedFeatureFileContent = await prettier.format(updatedFeatureFileContent, {
370
371
  ...prettierConfig,
371
372
  parser: "gherkin",
373
+ plugins: ["prettier-plugin-gherkin"],
372
374
  });
373
375
  } catch (error) {
374
376
  console.error("Error formatting feature file content with Prettier:", error);
@@ -380,6 +382,7 @@ export async function updateFeatureFile({ featureName, scenario, override, proje
380
382
  featureFileContent = await prettier.format(featureFileContent, {
381
383
  ...prettierConfig,
382
384
  parser: "gherkin",
385
+ plugins: ["prettier-plugin-gherkin"],
383
386
  });
384
387
  } catch (error) {
385
388
  console.error("Error formatting feature file content with Prettier:", error);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dev-blinq/cucumber_client",
3
- "version": "1.0.1261-dev",
3
+ "version": "1.0.1262-dev",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "types": "bin/index.d.ts",