exguard-backend 1.0.24 → 1.0.26
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 +1 -1
- package/scripts/setup-nestjs.cjs +1 -1
package/package.json
CHANGED
package/scripts/setup-nestjs.cjs
CHANGED
|
@@ -614,7 +614,7 @@ function updateAppModule() {
|
|
|
614
614
|
const newImportsContent = importsContent.trim() + ',\n ExGuardModule';
|
|
615
615
|
appModuleContent = appModuleContent.replace(
|
|
616
616
|
importsArrayMatch[0],
|
|
617
|
-
`imports: [
|
|
617
|
+
`imports: [${newImportsContent}]`
|
|
618
618
|
);
|
|
619
619
|
} else {
|
|
620
620
|
// Add imports array after @Module({
|