@inlang/paraglide-js 1.2.2 → 1.2.4

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/README.md CHANGED
@@ -360,6 +360,13 @@ Of course, we're not done yet! We plan on adding the following features to Parag
360
360
  - Web Zurich December 2023
361
361
  - [Svelte London January 2024](https://www.youtube.com/watch?v=eswNQiq4T2w&t=646s)
362
362
 
363
+ # Working with Translators
364
+
365
+ Paraglide JS is part of the inlang ecosystem, so it integrates nicely with all the other inlang compatible tools. If you are working with translators and/or designers you will find the following tools useful:
366
+
367
+ - [Fink](https://inlang.com/m/tdozzpar/app-inlang-finkLocalizationEditor) - An Online UI for editing translations. Changes made in Fink are committed to a translation branch or submitted via pull request.
368
+ - [Parrot](https://inlang.com/m/gkrpgoir/app-parrot-figmaPlugin) - A Figma Plugin for previewing translations right in your Figma designs. This avoids any layout issues that might occur due to different text lengths in different languages.
369
+
363
370
  # Pricing
364
371
 
365
- <doc-dev-tool-pricing></doc-dev-tool-pricing>
372
+ <doc-dev-tool-pricing></doc-dev-tool-pricing>
@@ -2,7 +2,6 @@ import { Command } from "commander";
2
2
  import { type ProjectSettings } from "@inlang/sdk";
3
3
  import { Logger } from "../../services/logger/index.js";
4
4
  import { type Repository } from "@lix-js/client";
5
- import type { NodeishFilesystem } from "@lix-js/fs";
6
5
  type Context = {
7
6
  logger: Logger;
8
7
  repo: Repository;
@@ -35,5 +34,4 @@ export declare const maybeChangeTsConfigModuleResolution: (ctx: Context) => Prom
35
34
  * Paraligde JS compiles to JS with JSDoc comments. TypeScript doesn't allow JS files by default.
36
35
  */
37
36
  export declare const maybeChangeTsConfigAllowJs: (ctx: Context) => Promise<void>;
38
- export declare function fileExists(filePath: string, nodeishFs: NodeishFilesystem): Promise<boolean>;
39
37
  export {};
@@ -11,4 +11,5 @@ import { ProjectSettings, type Message } from "@inlang/sdk";
11
11
  export declare const compile: (args: {
12
12
  messages: Readonly<Message[]>;
13
13
  settings: ProjectSettings;
14
- }) => Record<string, string>;
14
+ projectId?: string | undefined;
15
+ }) => Promise<Record<string, string>>;