@wuchale/svelte 0.13.4 → 0.13.5
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/transformer.js +1 -1
- package/package.json +2 -2
package/dist/transformer.js
CHANGED
|
@@ -120,7 +120,7 @@ export class SvelteTransformer extends Transformer {
|
|
|
120
120
|
}
|
|
121
121
|
const value = values[0];
|
|
122
122
|
if (value.type !== 'Text') {
|
|
123
|
-
return
|
|
123
|
+
return this.visitSv(value);
|
|
124
124
|
}
|
|
125
125
|
const [pass, msgInfo] = this.checkHeuristic(value.data, {
|
|
126
126
|
scope: 'attribute',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wuchale/svelte",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.5",
|
|
4
4
|
"description": "Protobuf-like i18n from plain code: Svelte adapter",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"dev": "tsc --watch",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"license": "MIT",
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"svelte": "^5.37.0",
|
|
55
|
-
"wuchale": "^0.14.
|
|
55
|
+
"wuchale": "^0.14.6"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"acorn": "^8.15.0",
|