flashorm 2.1.0 → 2.1.11

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.
package/index.js CHANGED
@@ -8,7 +8,7 @@ function getBinaryPath() {
8
8
  const binaryPath = path.join(__dirname, 'bin', binaryName);
9
9
 
10
10
  if (!fs.existsSync(binaryPath)) {
11
- throw new Error('flash binary not found. Please reinstall: npm install -g FlashORM-orm');
11
+ throw new Error('flash binary not found. Please reinstall: npm install -g flashorm');
12
12
  }
13
13
 
14
14
  return binaryPath;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flashorm",
3
- "version": "2.1.0",
3
+ "version": "2.1.11",
4
4
  "description": "A powerful, database-agnostic migration CLI tool with multi-database support and type-safe code generation",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -4,7 +4,7 @@ const https = require('https');
4
4
  const fs = require('fs');
5
5
  const path = require('path');
6
6
 
7
- const VERSION = '2.1.0';
7
+ const VERSION = '2.1.11';
8
8
  const REPO = 'Lumos-Labs-HQ/flash';
9
9
 
10
10
  const platform = process.platform;