@inlang/paraglide-js 1.2.2 → 1.2.3
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/commands/init.d.ts +0 -2
- package/dist/compiler/compile.d.ts +1 -1
- package/dist/index.js +407 -319
- package/dist/services/environment/package.d.ts +10 -0
- package/dist/services/environment/package.test.d.ts +1 -0
- package/dist/services/file-handling/exists.d.ts +8 -0
- package/dist/services/file-handling/exists.test.d.ts +1 -0
- package/dist/services/telemetry/stack-detection.d.ts +39 -0
- package/dist/services/telemetry/stack-detection.test.d.ts +1 -0
- package/package.json +3 -3
|
@@ -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 {};
|