mango-orm 1.1.4 → 1.1.5

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.
@@ -4,7 +4,7 @@ import path from "path";
4
4
  const generateMangoMigrationFile = (migrationFilename, outputDir = './migrations') => {
5
5
  const timestamp = Date.now();
6
6
  const filepath = path.join(outputDir, `${timestamp}_${migrationFilename}.ts`);
7
- const template = `import { IMangoMigrationType, Mango } from "mango-orm;
7
+ const template = `import { IMangoMigrationType, Mango } from "mango-orm";
8
8
 
9
9
  export const ${migrationFilename}: IMangoMigrationType = {
10
10
  name: "${migrationFilename}",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mango-orm",
3
- "version": "1.1.4",
3
+ "version": "1.1.5",
4
4
  "type": "module",
5
5
  "description": "A lightweight, type-safe MySQL ORM for Node.js and TypeScript with database migrations",
6
6
  "main": "dist/mango.js",