@famgia/omnify 1.0.94 → 1.0.95
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/package.json +9 -9
- package/scripts/postinstall.js +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@famgia/omnify",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.95",
|
|
4
4
|
"description": "Schema-driven database migration system with TypeScript types and Laravel migrations",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -25,14 +25,14 @@
|
|
|
25
25
|
"README.md"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@famgia/omnify-cli": "0.0.
|
|
29
|
-
"@famgia/omnify-core": "0.0.
|
|
30
|
-
"@famgia/omnify-types": "0.0.
|
|
31
|
-
"@famgia/omnify-
|
|
32
|
-
"@famgia/omnify-
|
|
33
|
-
"@famgia/omnify-atlas": "0.0.
|
|
34
|
-
"@famgia/omnify-mcp": "0.0.
|
|
35
|
-
"@famgia/omnify-japan": "0.0.
|
|
28
|
+
"@famgia/omnify-cli": "0.0.91",
|
|
29
|
+
"@famgia/omnify-core": "0.0.85",
|
|
30
|
+
"@famgia/omnify-types": "0.0.83",
|
|
31
|
+
"@famgia/omnify-laravel": "0.0.94",
|
|
32
|
+
"@famgia/omnify-typescript": "0.0.73",
|
|
33
|
+
"@famgia/omnify-atlas": "0.0.79",
|
|
34
|
+
"@famgia/omnify-mcp": "0.0.71",
|
|
35
|
+
"@famgia/omnify-japan": "0.0.78"
|
|
36
36
|
},
|
|
37
37
|
"keywords": [
|
|
38
38
|
"omnify",
|
package/scripts/postinstall.js
CHANGED
|
@@ -153,13 +153,13 @@ function copyAiGuides(projectRoot) {
|
|
|
153
153
|
// This postinstall only creates placeholder files for first-time setup
|
|
154
154
|
const dest = path.join(projectRoot, '.claude', 'omnify');
|
|
155
155
|
if (!fs.existsSync(dest)) fs.mkdirSync(dest, { recursive: true });
|
|
156
|
-
|
|
156
|
+
|
|
157
157
|
// Only copy if guides/omnify doesn't exist (first install, generate not run yet)
|
|
158
158
|
const guidesOmnify = path.join(dest, 'guides', 'omnify');
|
|
159
159
|
if (fs.existsSync(guidesOmnify)) {
|
|
160
160
|
return []; // Already generated by plugin, skip
|
|
161
161
|
}
|
|
162
|
-
|
|
162
|
+
|
|
163
163
|
const src = path.join(__dirname, '..', 'ai-guides');
|
|
164
164
|
return copyFiles(src, dest);
|
|
165
165
|
}
|