@monodog/backend 1.1.20 → 1.1.21
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/cli.js +1 -1
- package/package.json +1 -1
- package/src/cli.ts +1 -1
package/dist/cli.js
CHANGED
|
@@ -147,7 +147,7 @@ function copyPackageToWorkspace(rootDir) {
|
|
|
147
147
|
recursive: true,
|
|
148
148
|
dereference: true,
|
|
149
149
|
// Filter out node_modules inside the package itself to avoid deep recursion
|
|
150
|
-
filter: (src) => !src.includes('node_modules'),
|
|
150
|
+
// filter: (src: string): boolean => !src.includes('node_modules'),
|
|
151
151
|
});
|
|
152
152
|
console.log(`\n✅ Success! Contents of '${packageName}' copied to '${destinationPath}'`);
|
|
153
153
|
// Post-copy instructions
|
package/package.json
CHANGED
package/src/cli.ts
CHANGED
|
@@ -128,7 +128,7 @@ function copyPackageToWorkspace(rootDir: string): void {
|
|
|
128
128
|
recursive: true,
|
|
129
129
|
dereference: true,
|
|
130
130
|
// Filter out node_modules inside the package itself to avoid deep recursion
|
|
131
|
-
filter: (src: string): boolean => !src.includes('node_modules'),
|
|
131
|
+
// filter: (src: string): boolean => !src.includes('node_modules'),
|
|
132
132
|
});
|
|
133
133
|
|
|
134
134
|
console.log(`\n✅ Success! Contents of '${packageName}' copied to '${destinationPath}'`);
|