Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -106,3 +106,6 @@ vite.config.ts.timestamp-*

# TypeScript incremental build cache
*.tsbuildinfo

# inlang manages this file itself (^2.5); keep it untracked to avoid churn
**/*.inlang/.gitignore
4 changes: 4 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -66,3 +66,7 @@ web-admin/src/client/gen

# generated by nearly
web-common/src/features/dashboards/url-state/filters/expression.cjs

# generated by paraglidejs
web-common/src/lib/i18n/gen
web-common/src/lib/i18n/project.inlang/cache
243 changes: 243 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"web-local"
],
"scripts": {
"build": "npm run build -w web-local",
"build:i18n": "paraglide-js compile --project web-common/src/lib/i18n/project.inlang --outdir web-common/src/lib/i18n/gen",
"build": "npm run build:i18n && npm run build -w web-local",
"dev": "sh -c 'npm run dev-runtime -- \"$@\" & npm run dev-web -- --port 3001 & wait' --",
"dev-web": "npm run dev -w web-local -- ",
"dev-runtime": "node scripts/dev.js",
Expand All @@ -24,6 +25,7 @@
"check:edit-route-parity": "node ./scripts/check-edit-route-parity.js"
},
"devDependencies": {
"@inlang/paraglide-js": "^2.10.0",
"@sveltejs/vite-plugin-svelte": "^7.0.0",
"@types/eslint": "^8.56.9",
"@vitest/eslint-plugin": "^1.1.42",
Expand Down
Loading
Loading