8000 Update template names to avoid bun namespace collisions by zephraph · Pull Request #504 · sam-goodwin/alchemy · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Update template names to avoid bun namespace collisions #504

< 8000 div class="gh-header-actions mt-0 mb-3 mb-md-2 ml-1 flex-md-order-1 flex-shrink-0 d-flex flex-items-center gap-1">
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 27, 2025
Merged
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
2 changes: 1 addition & 1 deletion alchemy/templates/astro/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"type": "module",
"name": "astro",
"name": "@alchemy.run/astro-template",
"version": "0.0.1",
"scripts": {
"astro": "astro",
Expand Down
2 changes: 1 addition & 1 deletion alchemy/templates/nuxt/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"type": "module",
"name": "nuxt",
"name": "@alchemy.run/nuxt-template",
"private": true,
"scripts": {
"build": "nuxt build",
Expand Down
2 changes: 1 addition & 1 deletion alchemy/templates/react-router/package.json
8000
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"type": "module",
"name": "react-router",
"name": "@alchemy.run/react-router-template",
"private": true,
"scripts": {
"build": "vite build",
Expand Down
2 changes: 1 addition & 1 deletion alchemy/templates/rwsdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"type": "module",
"name": "rwsdk",
"name": "@alchemy.run/rwsdk-template",
"version": "1.0.0",
"description": "Build fast, server-driven webapps on Cloudflare with SSR, RSC, and realtime. ",
"main": "index.js",
Expand Down
2 changes: 1 addition & 1 deletion alchemy/templates/sveltekit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"type": "module",
"name": "sveltekit",
"name": "@alchemy.run/sveltekit-template",
"private": true,
"version": "0.0.1",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion alchemy/templates/tanstack-start/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"type": "module",
"name": "tanstack-start",
"name": "@alchemy.run/tanstack-start-template",
"private": true,
"sideEffects": false,
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion alchemy/templates/typescript/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "typescript",
"name": "@alchemy.run/typescript-template",
"version": "0.0.0",
"description": "Alchemy Typescript Project",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion alchemy/templates/vite/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"type": "module",
"name": "vite",
"name": "@alchemy.run/vite-template",
"private": true,
"version": "0.0.0",
"scripts": {
Expand Down
0