diff --git a/.env b/.env index e1002dc..5a40385 100644 --- a/.env +++ b/.env @@ -1,4 +1,4 @@ -NPM_TOKEN= +NODE_ENV= # SECRETS SECRETS_PASSWORD=secret_do_not_commit_or_change_this_create_.env.local_instead diff --git a/.gitignore b/.gitignore index 74b2b6a..66c56cc 100644 --- a/.gitignore +++ b/.gitignore @@ -14,9 +14,6 @@ node_modules Thumbs.db .idea -# Storybook -storybook-static - # Vite vite.config.js.timestamp-* vite.config.ts.timestamp-* diff --git a/bun.lock b/bun.lock index 87c5719..9cd43b1 100644 --- a/bun.lock +++ b/bun.lock @@ -4,13 +4,12 @@ "": { "name": "hestia", "dependencies": { - "@atlas/svelte": "^1.0.5-alpha", "@clerk/backend": "1.21.4", "@clerk/themes": "^2.2.3", "@inlang/paraglide-sveltekit": "^0.15.0", "@pothos/core": "^4.3.0", "@pothos/plugin-prisma": "^4.4.0", - "@prisma/client": "6.3.1", + "@prisma/client": "^6.3.1", "@tailwindcss/typography": "^0.5.15", "clerk-sveltekit": "https://pkg.pr.new/wobsoriano/clerk-sveltekit@ca15d4e", "clsx": "^2.1.1", @@ -53,7 +52,7 @@ "prettier": "^3.3.2", "prettier-plugin-svelte": "^3.2.6", "prettier-plugin-tailwindcss": "^0.6.5", - "prisma": "6.3.1", + "prisma": "^6.3.1", "storybook": "^8.5.0", "svelte": "^5.0.0", "svelte-check": "^4.0.0", @@ -72,8 +71,6 @@ "@ampproject/remapping": ["@ampproject/remapping@2.3.0", "", { "dependencies": { "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.24" } }, "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw=="], - "@atlas/svelte": ["@atlas/svelte@1.0.5-alpha", "https://git.palko.ca/api/packages/pantheon/npm/%40atlas%2Fsvelte/-/1.0.5-alpha/svelte-1.0.5-alpha.tgz", { "dependencies": { "clsx": "^2.1.1", "tailwind-merge": "^2.5.5" }, "peerDependencies": { "daisyui": "^5.0.6", "svelte": "^5.0.0" } }, "sha512-u0dUC+VLtqElu/SfqCpQyxdtMfJCTstBhO/JpmbH1Pts4t8rkdkmNlPFujlykdu07G6FjuZvZ9H0pNk/UEFZxg=="], - "@babel/code-frame": ["@babel/code-frame@7.26.2", "", { "dependencies": { "@babel/helper-validator-identifier": "^7.25.9", "js-tokens": "^4.0.0", "picocolors": "^1.0.0" } }, "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ=="], "@babel/helper-validator-identifier": ["@babel/helper-validator-identifier@7.25.9", "", {}, "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ=="], diff --git a/netlify.toml b/netlify.toml new file mode 100644 index 0000000..6874893 --- /dev/null +++ b/netlify.toml @@ -0,0 +1,3 @@ +[build] +command = "bunx prisma migrate deploy && bun run build" +publish = "build" diff --git a/package.json b/package.json index bb7f3d3..8e7c8df 100644 --- a/package.json +++ b/package.json @@ -68,7 +68,6 @@ "vitest": "^2.0.4" }, "dependencies": { - "@atlas/svelte": "^1.0.5-alpha", "@clerk/backend": "1.21.4", "@clerk/themes": "^2.2.3", "@inlang/paraglide-sveltekit": "^0.15.0",