fix(update): don't update apps-config npmdeps
All checks were successful
Discord / discord commits (push) Has been skipped
All checks were successful
Discord / discord commits (push) Has been skipped
This commit is contained in:
parent
39222ed9ca
commit
0ba41b16e4
1 changed files with 2 additions and 1 deletions
|
@ -61,7 +61,8 @@ export default async() => {
|
||||||
for (const path of packages) {
|
for (const path of packages) {
|
||||||
if (
|
if (
|
||||||
path.name === 'package.json' &&
|
path.name === 'package.json' &&
|
||||||
!path.parentPath.includes('node_modules')
|
!path.parentPath.includes('node_modules') &&
|
||||||
|
!path.parentPath.includes('apps/config')
|
||||||
) {
|
) {
|
||||||
await updatePackageJson(path.parentPath, updates);
|
await updatePackageJson(path.parentPath, updates);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue