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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ test-results
node_modules
playwright-report

# Turborepo
.turbo

# Output
.output
.vercel
Expand Down
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "packages/svelte-core"]
path = packages/svelte-core
url = git@github.com:OpenShock/svelte-core.git
16 changes: 0 additions & 16 deletions components.json

This file was deleted.

13 changes: 9 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@
"private": true,
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "cross-env BUILD_ENV=production vite build",
"build:deps": "turbo run build --filter=./packages/*",
"watch:core": "pnpm --filter @openshock/svelte-core build:watch",
"dev": "pnpm build:deps && vite dev",
"build": "pnpm build:deps && cross-env BUILD_ENV=production vite build",
"preview": "cross-env BUILD_ENV=production vite preview",
"prepare": "svelte-kit sync || echo '' && husky",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check": "pnpm build:deps && svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "eslint .",
"format:check": "prettier --check .",
Expand Down Expand Up @@ -62,6 +64,7 @@
"tailwind-merge": "^3.6.0",
"tailwind-variants": "^3.2.2",
"tailwindcss": "^4.3.1",
"turbo": "^2.5.0",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.61.1",
Expand All @@ -72,6 +75,8 @@
"vitest": "^4.1.9"
},
"dependencies": {
"@openshock/svelte-core": "workspace:*",
"core": "workspace:@openshock/svelte-core@*",
"@opentelemetry/api-logs": "^0.219.0",
"@opentelemetry/exporter-logs-otlp-http": "^0.219.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.219.0",
Expand All @@ -85,7 +90,7 @@
"vite": "^8.0.16"
},
"engines": {
"node": "=26",
"node": "^26",
"pnpm": ">=11"
},
"browserslist": [
Expand Down
1 change: 1 addition & 0 deletions packages/svelte-core
Submodule svelte-core added at 94adb4
Loading
Loading