@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@famgia/omnify-laravel",
3
- "version": "0.0.20",
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.10",
28
- "@famgia/omnify-core": "0.0.14",
29
- "@famgia/omnify-atlas": "0.0.10"
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",
@@ -261,9 +261,9 @@ function main() {
261
261
  return;
262
262
  }
263
263
 
264
- // Skip if this is a dev install (in the omnify-ts monorepo packages, but allow examples)
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/packages')) {
266
+ if (projectDir.includes('omnify-ts') && !projectDir.includes('omnify-ts/examples')) {
267
267
  return;
268
268
  }
269
269