fix: use single quotes in new script files
#96Can we just use single quotes everywhere?
The Drizzle adder creates the drizzle.config.ts
below currently:
if (!process.env.DATABASE_URL) throw new Error('DATABASE_URL is not set');
export default defineConfig({
schema: "./src/lib/server/db/schema.ts",
dbCredentials: {
url: process.env.DATABASE_URL
},
verbose: true,
strict: true,
dialect: "sqlite"
});
Closes #44
Latest commit: f32cb21
The changes in this PR will be included in the next version bump.
Name | Type |
---|---|
sv | Patch |
Not sure what this means? Click here to learn what changesets are.
Click here if you're a maintainer who wants to add another changeset to this PR
At this point, this is only a draft. Hopefully we can close this PR entirely later today.
Superseded by #100
I think this would be nice to merge still so that users have a better experience until #100 lands. Unless we think we can land that one before launch. But that could be a lot to do and just add more pressure to get things done
Good point, although im not sure if this is a major improvement, but it should still be an improvement.
Did you guys had a chance to test that? Do you think it's generally better or worse? Is there anything that prevents us from merging?