@inlang/paraglide-js 1.3.1 → 1.3.2
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/index.js +10 -4
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -40198,10 +40198,16 @@ var maybeAddVsCodeExtension = async (args, ctx) => {
|
|
|
40198
40198
|
);
|
|
40199
40199
|
project.setSettings(settings);
|
|
40200
40200
|
}
|
|
40201
|
-
|
|
40202
|
-
await
|
|
40203
|
-
|
|
40204
|
-
|
|
40201
|
+
try {
|
|
40202
|
+
if (!await isAdopted(ctx.repo.nodeishFs)) {
|
|
40203
|
+
await add2(ctx.repo.nodeishFs);
|
|
40204
|
+
ctx.logger.success(
|
|
40205
|
+
"Added the inlang Visual Studio Code extension (Sherlock) to the workspace recommendations."
|
|
40206
|
+
);
|
|
40207
|
+
}
|
|
40208
|
+
} catch (error) {
|
|
40209
|
+
ctx.logger.error(
|
|
40210
|
+
"Failed to add the inlang Visual Studio Code extension (Sherlock). Please open an issue"
|
|
40205
40211
|
);
|
|
40206
40212
|
}
|
|
40207
40213
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inlang/paraglide-js",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.3.
|
|
4
|
+
"version": "1.3.2",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public"
|
|
@@ -63,13 +63,13 @@
|
|
|
63
63
|
"rollup": "3.29.1",
|
|
64
64
|
"typescript": "5.2.2",
|
|
65
65
|
"vitest": "0.34.3",
|
|
66
|
+
"@inlang/env-variables": "0.2.0",
|
|
66
67
|
"@inlang/cross-sell-sherlock": "0.0.2",
|
|
67
|
-
"@inlang/sdk": "0.27.0",
|
|
68
68
|
"@inlang/language-tag": "1.5.1",
|
|
69
|
-
"@lix-js/client": "0.9.0",
|
|
70
69
|
"@inlang/telemetry": "0.3.14",
|
|
70
|
+
"@lix-js/client": "0.9.0",
|
|
71
71
|
"@lix-js/fs": "0.6.0",
|
|
72
|
-
"@inlang/
|
|
72
|
+
"@inlang/sdk": "0.27.0",
|
|
73
73
|
"@inlang/plugin-message-format": "2.1.1"
|
|
74
74
|
},
|
|
75
75
|
"exports": {
|