@inlang/paraglide-js 1.11.7 → 1.11.8

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/dist/cli/index.js CHANGED
@@ -569,7 +569,7 @@ const initCommand = new Command().name("init").summary("Initializes inlang Parag
569
569
  logger.box("Welcome to inlang Paraglide-JS 🪂");
570
570
  telemetry.capture({
571
571
  event: "PARAGLIDE-JS init started",
572
- properties: { version: "1.11.7" }
572
+ properties: { version: "1.11.8" }
573
573
  });
574
574
  const ctx = {
575
575
  logger,
@@ -583,17 +583,17 @@ const initCommand = new Command().name("init").summary("Initializes inlang Parag
583
583
  const ctx4 = await promptForOutdir(ctx3);
584
584
  telemetry.capture({
585
585
  event: "PARAGLIDE-JS init project initialized",
586
- properties: { version: "1.11.7" }
586
+ properties: { version: "1.11.8" }
587
587
  });
588
588
  const ctx5 = await addParaglideJsToDevDependencies(ctx4);
589
589
  telemetry.capture({
590
590
  event: "PARAGLIDE-JS init added to devDependencies",
591
- properties: { version: "1.11.7" }
591
+ properties: { version: "1.11.8" }
592
592
  });
593
593
  const ctx6 = await addCompileStepToPackageJSON(ctx5);
594
594
  telemetry.capture({
595
595
  event: "PARAGLIDE-JS init added compile commands",
596
- properties: { version: "1.11.7" }
596
+ properties: { version: "1.11.8" }
597
597
  });
598
598
  const ctx7 = await maybeChangeTsConfig(ctx6);
599
599
  const ctx8 = await maybeAddSherlock(ctx7);
@@ -608,7 +608,7 @@ const initCommand = new Command().name("init").summary("Initializes inlang Parag
608
608
  }
609
609
  telemetry.capture({
610
610
  event: "PARAGLIDE-JS init finished",
611
- properties: { version: "1.11.7" }
611
+ properties: { version: "1.11.8" }
612
612
  });
613
613
  const absoluteSettingsPath = nodePath.resolve(ctx9.projectPath, "settings.json");
614
614
  const relativeSettingsFilePath = absoluteSettingsPath.replace(process.cwd(), ".");
@@ -627,7 +627,7 @@ const addParaglideJsToDevDependencies = async (ctx) => {
627
627
  const ctx1 = await updatePackageJson({
628
628
  devDependencies: async (devDeps) => ({
629
629
  ...devDeps,
630
- "@inlang/paraglide-js": "1.11.7"
630
+ "@inlang/paraglide-js": "1.11.8"
631
631
  })
632
632
  })(ctx);
633
633
  ctx.logger.success("Added @inlang/paraglide-js to the devDependencies in package.json.");
@@ -688,7 +688,7 @@ const addCompileStepToPackageJSON = async (ctx) => {
688
688
  process.exit(1);
689
689
  return ctx;
690
690
  };
691
- const cli = new Command().name("paraglide-js").addCommand(compileCommand).addCommand(initCommand).showHelpAfterError().version("1.11.7");
691
+ const cli = new Command().name("paraglide-js").addCommand(compileCommand).addCommand(initCommand).showHelpAfterError().version("1.11.8");
692
692
  export {
693
693
  defaults as Defaults,
694
694
  steps as Steps,
package/dist/index.js CHANGED
@@ -534,7 +534,7 @@ const compile = async (args) => {
534
534
  {
535
535
  event: "PARAGLIDE-JS compile executed",
536
536
  properties: {
537
- version: "1.11.7",
537
+ version: "1.11.8",
538
538
  stack
539
539
  }
540
540
  },
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@inlang/paraglide-js",
3
3
  "type": "module",
4
- "version": "1.11.7",
4
+ "version": "1.11.8",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
7
7
  "access": "public"
@@ -50,10 +50,10 @@
50
50
  "@inlang/plugin-message-format": "2.2.0",
51
51
  "@inlang/recommend-ninja": "0.1.1",
52
52
  "@inlang/language-tag": "1.5.1",
53
- "@inlang/sdk": "0.36.4",
53
+ "@inlang/sdk": "0.37.0",
54
+ "@inlang/detect-json-formatting": "1.0.0",
54
55
  "@lix-js/client": "2.2.1",
55
- "@lix-js/fs": "2.2.0",
56
- "@inlang/detect-json-formatting": "1.0.0"
56
+ "@lix-js/fs": "2.2.0"
57
57
  },
58
58
  "devDependencies": {
59
59
  "@rollup/plugin-terser": "0.4.3",