Skip to content

Commit d3adb89

Browse files
committed
Some small adjustments
1 parent 4c002c4 commit d3adb89

File tree

4 files changed

+62
-62
lines changed

4 files changed

+62
-62
lines changed

locales/en.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
"configuration.paragraph.example-3": "This will get you going but lets dive deeper on it more.",
100100
"configuration.subsection.static-locales": "Load locales statically",
101101
"configuration.paragraph.static-locales-1": "Like in the previous example, the easiest way to add your translation keys is to just import them as modules and register them using",
102-
"conw": "Note that despite the fact that you defined your translations in JSON files, in here you are importing them as javascript modules from",
102+
"configuration.paragraph.static-locales-2": "Note that despite the fact that you defined your translations in JSON files, in here you are importing them as javascript modules from",
103103
"configuration.paragraph.static-locales-3": ". This is because the compiler has transformed your translations into a module with inline functions at built time.",
104104
"configuration.paragraph.static-locales-4": "This approach is loading all those languages even if only one is being displayed. Usually okay when kicking out a new project or if you only have a few of keys, but when your app grows you should start loading languages on demand.",
105105
"configuration.subsection.dynamic-locales": "Load locales dynamically",

package-lock.json

Lines changed: 58 additions & 58 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212
"@sveltejs/adapter-netlify": "next",
1313
"@sveltejs/kit": "next",
1414
"@types/cookie": "^0.4.1",
15-
"svelte": "^3.44.0",
15+
"svelte": "^3.45.0",
1616
"svelte-check": "^2.2.11",
1717
"svelte-preprocess": "^4.10.1",
1818
"tslib": "^2.3.1",
19-
"typescript": "^4.4.3",
19+
"typescript": "^4.5.4",
2020
"postcss": "^8.4.5",
2121
"postcss-load-config": "^3.1.0",
2222
"autoprefixer": "^10.4.0",

tailwind.config.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const config = {
22
mode: "jit",
3-
purge: ["./src/**/*.{html,js,svelte,ts}"],
3+
content: ["./src/**/*.{html,js,svelte,ts}"],
44

55
theme: {
66
extend: {

0 commit comments

Comments
 (0)