javi-forge 1.7.1 → 1.8.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.
- package/dist/constants.d.ts +2 -0
- package/dist/constants.js +2 -0
- package/package.json +1 -1
package/dist/constants.d.ts
CHANGED
|
@@ -9,6 +9,8 @@ export declare const MODULES_DIR: string;
|
|
|
9
9
|
export declare const WORKFLOWS_DIR: string;
|
|
10
10
|
/** CI-local directory */
|
|
11
11
|
export declare const CI_LOCAL_DIR: string;
|
|
12
|
+
/** Git hook assets directory (installed by `javi-forge ci init`) */
|
|
13
|
+
export declare const HOOK_ASSETS_DIR: string;
|
|
12
14
|
/** Security hooks template directory */
|
|
13
15
|
export declare const SECURITY_HOOKS_DIR: string;
|
|
14
16
|
/** Local AI stack template directory */
|
package/dist/constants.js
CHANGED
|
@@ -11,6 +11,8 @@ export const MODULES_DIR = path.join(FORGE_ROOT, "modules");
|
|
|
11
11
|
export const WORKFLOWS_DIR = path.join(FORGE_ROOT, "workflows");
|
|
12
12
|
/** CI-local directory */
|
|
13
13
|
export const CI_LOCAL_DIR = path.join(FORGE_ROOT, "ci-local");
|
|
14
|
+
/** Git hook assets directory (installed by `javi-forge ci init`) */
|
|
15
|
+
export const HOOK_ASSETS_DIR = path.join(FORGE_ROOT, "assets", "hooks");
|
|
14
16
|
/** Security hooks template directory */
|
|
15
17
|
export const SECURITY_HOOKS_DIR = path.join(TEMPLATES_DIR, "security-hooks");
|
|
16
18
|
/** Local AI stack template directory */
|