@tstdl/base 0.93.71 → 0.93.72

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -44,6 +44,6 @@ Injector.registerSingleton(Database, {
44
44
  export async function migrate(db, config) {
45
45
  const migrationsFolder = config.migrationsFolder
46
46
  .replace('file://', '') // drizzle doesn't like it
47
- .replace(/index.jsx$/, ''); // workaround for weird import.meta.resolve behavior with tsx
47
+ .replace(/index\.\w+$/, ''); // workaround for weird import.meta.resolve behavior with tsx
48
48
  await drizzleMigrate(db, { ...config, migrationsFolder });
49
49
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tstdl/base",
3
- "version": "0.93.71",
3
+ "version": "0.93.72",
4
4
  "author": "Patrick Hein",
5
5
  "publishConfig": {
6
6
  "access": "public"