@venizia/ignis-boot 0.0.5-9 → 0.0.6-0

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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  # :fire: IGNIS - @venizia/ignis-boot
4
4
 
5
- **Convention-based auto-discovery and bootstrapping for the Ignis Framework**
5
+ **Convention-based auto-discovery and bootstrapping for the IGNIS Framework**
6
6
 
7
7
  [![npm](https://img.shields.io/npm/v/@venizia/ignis-boot.svg?style=flat-square&color=cb3837)](https://www.npmjs.com/package/@venizia/ignis-boot)
8
8
  [![License](https://img.shields.io/badge/License-MIT-3DA639.svg?style=flat-square)](https://opensource.org/licenses/MIT)
@@ -2125,7 +2125,7 @@ controllers: {
2125
2125
  }
2126
2126
  ```
2127
2127
 
2128
- However, the standard Ignis workflow uses compiled output, so `.js` is the correct default.
2128
+ However, the standard IGNIS workflow uses compiled output, so `.js` is the correct default.
2129
2129
 
2130
2130
  ### Naming convention for artifact files
2131
2131
 
@@ -2151,7 +2151,7 @@ The default directory names match the artifact types:
2151
2151
  | Repositories | `repositories/` |
2152
2152
  | DataSources | `datasources/` |
2153
2153
 
2154
- These are relative to the project root (the `@app/project_root` binding). In a typical Ignis application built with `tsc`, the project root is the `dist/cjs/` directory.
2154
+ These are relative to the project root (the `@app/project_root` binding). In a typical IGNIS application built with `tsc`, the project root is the `dist/cjs/` directory.
2155
2155
 
2156
2156
  ---
2157
2157
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@venizia/ignis-boot",
3
- "version": "0.0.5-9",
3
+ "version": "0.0.6-0",
4
4
  "description": "Convention-based auto-discovery and bootstrapping system for TypeScript applications. Three-phase lifecycle (configure, discover, load) using glob-based file matching and Template Method pattern. Auto-registers controllers, services, repositories, and datasources into the IoC container by file naming conventions. Inspired by LoopBack 4 boot system. Extensible via custom booters for any artifact type.",
5
5
  "keywords": [
6
6
  "artifact-discovery",
@@ -98,8 +98,8 @@
98
98
  "test:watch": "NODE_ENV=test bun test --watch --env-file=.env.test dist/cjs/__tests__/{**/**,**}/*.test.js"
99
99
  },
100
100
  "dependencies": {
101
- "@venizia/ignis-helpers": "^0.0.8-13",
102
- "@venizia/ignis-inversion": "^0.0.6-2",
101
+ "@venizia/ignis-helpers": "^0.0.9-0",
102
+ "@venizia/ignis-inversion": "^0.0.6",
103
103
  "glob": "^13.0.6",
104
104
  "lodash": "^4.18.1",
105
105
  "reflect-metadata": "^0.2.2"
@@ -107,7 +107,7 @@
107
107
  "devDependencies": {
108
108
  "@types/bun": "^1.3.14",
109
109
  "@types/lodash": "^4.17.23",
110
- "@venizia/dev-configs": "^0.0.7-2",
110
+ "@venizia/dev-configs": "^0.0.7",
111
111
  "eslint": "^10.4.0",
112
112
  "prettier": "^3.8.3",
113
113
  "tsc-alias": "^1.8.17",