@anu8151/adonisjs-blueprint 0.4.2 → 0.4.3

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.
@@ -4,16 +4,16 @@
4
4
  })
5
5
  }}}
6
6
  {{{ modelImports }}}
7
- @each(relationship in relationships)
8
- {{{ relationship.importLine }}}
7
+ @each(rel in relationships)
8
+ {{{ rel.importLine }}}
9
9
  @end
10
10
 
11
11
  {{{ modelSignature }}}
12
- @each(attribute in attributes)
13
- {{{ attribute.line }}}
14
- @end
12
+ @each(attr in attributes)
13
+ {{{ attr.line }}}
14
+ @end
15
15
 
16
- @each(relationship in relationships)
17
- {{{ relationship.line }}}
18
- @end
16
+ @each(rel in relationships)
17
+ {{{ rel.line }}}
18
+ @end
19
19
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@anu8151/adonisjs-blueprint",
3
3
  "description": "Blueprint for AdonisJS 7",
4
- "version": "0.4.2",
4
+ "version": "0.4.3",
5
5
  "engines": {
6
6
  "node": ">=24.0.0"
7
7
  },
@@ -4,16 +4,16 @@
4
4
  })
5
5
  }}}
6
6
  {{{ modelImports }}}
7
- @each(relationship in relationships)
8
- {{{ relationship.importLine }}}
7
+ @each(rel in relationships)
8
+ {{{ rel.importLine }}}
9
9
  @end
10
10
 
11
11
  {{{ modelSignature }}}
12
- @each(attribute in attributes)
13
- {{{ attribute.line }}}
14
- @end
12
+ @each(attr in attributes)
13
+ {{{ attr.line }}}
14
+ @end
15
15
 
16
- @each(relationship in relationships)
17
- {{{ relationship.line }}}
18
- @end
16
+ @each(rel in relationships)
17
+ {{{ rel.line }}}
18
+ @end
19
19
  }