flashorm 1.0.1 → 2.0.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.
package/README.md CHANGED
@@ -550,8 +550,8 @@ const binaryPath = flash.getBinaryPath();
550
550
  ## 📚 Examples
551
551
 
552
552
  Check out complete examples:
553
- - [TypeScript Example](https://github.com/Lumos-Labs-HQ/FlashORM/tree/main/example/ts)
554
- - [Go Example](https://github.com/Lumos-Labs-HQ/FlashORM/tree/main/example/go)
553
+ - [TypeScript Example](https://github.com/Lumos-Labs-HQ/flash/tree/main/example/ts)
554
+ - [Go Example](https://github.com/Lumos-Labs-HQ/flash/tree/main/example/go)
555
555
 
556
556
  ## 🐛 Troubleshooting
557
557
 
@@ -580,10 +580,10 @@ flash studio --port 3000
580
580
 
581
581
  ## 📖 Documentation
582
582
 
583
- - [Full Documentation](https://github.com/Lumos-Labs-HQ/FlashORM)
584
- - [How It Works](https://github.com/Lumos-Labs-HQ/FlashORM/blob/main/docs/HOW_IT_WORKS.md)
585
- - [Technology Stack](https://github.com/Lumos-Labs-HQ/FlashORM/blob/main/docs/TECHNOLOGY_STACK.md)
586
- - [Contributing](https://github.com/Lumos-Labs-HQ/FlashORM/blob/main/docs/CONTRIBUTING.md)
583
+ - [Full Documentation](https://github.com/Lumos-Labs-HQ/flash)
584
+ - [How It Works](https://github.com/Lumos-Labs-HQ/flash/blob/main/docs/HOW_IT_WORKS.md)
585
+ - [Technology Stack](https://github.com/Lumos-Labs-HQ/flash/blob/main/docs/TECHNOLOGY_STACK.md)
586
+ - [Contributing](https://github.com/Lumos-Labs-HQ/flash/blob/main/docs/CONTRIBUTING.md)
587
587
 
588
588
  ## 🌟 Key Highlights
589
589
 
@@ -596,6 +596,6 @@ flash studio --port 3000
596
596
 
597
597
  ## 📄 License
598
598
 
599
- MIT License - see [LICENSE](https://github.com/Lumos-Labs-HQ/FlashORM/blob/main/LICENSE)
599
+ MIT License - see [LICENSE](https://github.com/Lumos-Labs-HQ/flash/blob/main/LICENSE)
600
600
 
601
601
  ---
package/bin/flash.js CHANGED
@@ -9,7 +9,7 @@ const binaryName = platform === 'win32' ? 'flash.exe' : 'flash';
9
9
  const binaryPath = path.join(__dirname, binaryName);
10
10
 
11
11
  if (!fs.existsSync(binaryPath)) {
12
- console.error('❌ flash binary not found. Please reinstall: npm install -g FlashORM-orm');
12
+ console.error('❌ flash binary not found. Please reinstall: npm install -g flashorm');
13
13
  process.exit(1);
14
14
  }
15
15
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flashorm",
3
- "version": "1.0.1",
3
+ "version": "2.0.5",
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": {
@@ -26,11 +26,11 @@
26
26
  "license": "MIT",
27
27
  "repository": {
28
28
  "type": "git",
29
- "url": "https://github.com/Lumos-Labs-HQ/FlashORM.git"
29
+ "url": "https://github.com/Lumos-Labs-HQ/flash.git"
30
30
  },
31
- "homepage": "https://github.com/Lumos-Labs-HQ/FlashORM#readme",
31
+ "homepage": "https://github.com/Lumos-Labs-HQ/flash#readme",
32
32
  "bugs": {
33
- "url": "https://github.com/Lumos-Labs-HQ/FlashORM/issues"
33
+ "url": "https://github.com/Lumos-Labs-HQ/flash/issues"
34
34
  },
35
35
  "engines": {
36
36
  "node": ">=14.0.0"
@@ -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 = '1.0.1';
7
+ const VERSION = '2.0.5';
8
8
  const REPO = 'Lumos-Labs-HQ/FlashORM';
9
9
 
10
10
  const platform = process.platform;