@famgia/omnify-laravel 0.0.20 → 0.0.22
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 +4 -4
- package/scripts/postinstall.js +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@famgia/omnify-laravel",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.22",
|
|
4
4
|
"description": "Laravel migration and TypeScript type generator for omnify-schema",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -24,9 +24,9 @@
|
|
|
24
24
|
"README.md"
|
|
25
25
|
],
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@famgia/omnify-types": "0.0.
|
|
28
|
-
"@famgia/omnify-core": "0.0.
|
|
29
|
-
"@famgia/omnify-atlas": "0.0.
|
|
27
|
+
"@famgia/omnify-types": "0.0.12",
|
|
28
|
+
"@famgia/omnify-core": "0.0.16",
|
|
29
|
+
"@famgia/omnify-atlas": "0.0.12"
|
|
30
30
|
},
|
|
31
31
|
"scripts": {
|
|
32
32
|
"build": "tsup",
|
package/scripts/postinstall.js
CHANGED
|
@@ -261,9 +261,9 @@ function main() {
|
|
|
261
261
|
return;
|
|
262
262
|
}
|
|
263
263
|
|
|
264
|
-
// Skip if
|
|
264
|
+
// Skip if in omnify-ts monorepo (source code), but allow examples/
|
|
265
265
|
const projectDir = process.env.INIT_CWD || process.cwd();
|
|
266
|
-
if (projectDir.includes('omnify-ts/
|
|
266
|
+
if (projectDir.includes('omnify-ts') && !projectDir.includes('omnify-ts/examples')) {
|
|
267
267
|
return;
|
|
268
268
|
}
|
|
269
269
|
|