adminforth 1.1.6 → 1.1.7
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.
|
@@ -363,7 +363,7 @@ class CodeInjector {
|
|
|
363
363
|
}
|
|
364
364
|
yield this.runNpmShell({ command: 'ci', verbose, cwd: CodeInjector.SPA_TMP_PATH });
|
|
365
365
|
// get packages with version from customPackage
|
|
366
|
-
const IGNORE_PACKAGES = ['tsx', 'typescript', 'express', 'nodemon'];
|
|
366
|
+
const IGNORE_PACKAGES = ['tsx', 'typescript', 'express', 'nodemon', 'adminforth'];
|
|
367
367
|
const customPackgeNames = [...Object.keys(usersPackage.dependencies), ...Object.keys(usersPackage.devDependencies || [])]
|
|
368
368
|
.filter((packageName) => !IGNORE_PACKAGES.includes(packageName))
|
|
369
369
|
.reduce((acc, packageName) => {
|
package/modules/codeInjector.ts
CHANGED
|
@@ -416,7 +416,7 @@ class CodeInjector implements CodeInjectorType {
|
|
|
416
416
|
await this.runNpmShell({command: 'ci', verbose, cwd: CodeInjector.SPA_TMP_PATH});
|
|
417
417
|
|
|
418
418
|
// get packages with version from customPackage
|
|
419
|
-
const IGNORE_PACKAGES = ['tsx', 'typescript', 'express', 'nodemon'];
|
|
419
|
+
const IGNORE_PACKAGES = ['tsx', 'typescript', 'express', 'nodemon', 'adminforth'];
|
|
420
420
|
const customPackgeNames = [...Object.keys(usersPackage.dependencies), ...Object.keys(usersPackage.devDependencies || [])]
|
|
421
421
|
.filter((packageName) => !IGNORE_PACKAGES.includes(packageName))
|
|
422
422
|
.reduce(
|
package/package.json
CHANGED