@monodog/backend 1.1.18 → 1.1.19
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/.turbo/turbo-build.log +1 -1
- package/dist/cli.js +1 -1
- package/package.json +1 -1
- package/src/cli.ts +1 -1
package/.turbo/turbo-build.log
CHANGED
package/dist/cli.js
CHANGED
|
@@ -146,7 +146,7 @@ function copyPackageToWorkspace(rootDir) {
|
|
|
146
146
|
recursive: true,
|
|
147
147
|
dereference: true,
|
|
148
148
|
// Filter out node_modules inside the package itself to avoid deep recursion
|
|
149
|
-
filter: (src) => !src.includes('node_modules')
|
|
149
|
+
filter: (src) => !src.includes('node_modules'),
|
|
150
150
|
});
|
|
151
151
|
console.log(`\n✅ Success! Contents of '${packageName}' copied to '${destinationPath}'`);
|
|
152
152
|
// 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) => !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}'`);
|