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 +7 -7
- package/bin/flash.js +1 -1
- package/package.json +4 -4
- package/scripts/install.js +1 -1
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/
|
|
554
|
-
- [Go Example](https://github.com/Lumos-Labs-HQ/
|
|
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/
|
|
584
|
-
- [How It Works](https://github.com/Lumos-Labs-HQ/
|
|
585
|
-
- [Technology Stack](https://github.com/Lumos-Labs-HQ/
|
|
586
|
-
- [Contributing](https://github.com/Lumos-Labs-HQ/
|
|
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/
|
|
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
|
|
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": "
|
|
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/
|
|
29
|
+
"url": "https://github.com/Lumos-Labs-HQ/flash.git"
|
|
30
30
|
},
|
|
31
|
-
"homepage": "https://github.com/Lumos-Labs-HQ/
|
|
31
|
+
"homepage": "https://github.com/Lumos-Labs-HQ/flash#readme",
|
|
32
32
|
"bugs": {
|
|
33
|
-
"url": "https://github.com/Lumos-Labs-HQ/
|
|
33
|
+
"url": "https://github.com/Lumos-Labs-HQ/flash/issues"
|
|
34
34
|
},
|
|
35
35
|
"engines": {
|
|
36
36
|
"node": ">=14.0.0"
|