@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.
@@ -1,4 +1,4 @@
1
1
 
2
- > @monodog/backend@1.1.17 build /home/manoj/Documents/MonoDog/packages/backend
2
+ > @monodog/backend@1.1.19 build /home/manoj/Documents/MonoDog/packages/backend
3
3
  > rm -rf dist && tsc -p tsconfig.json
4
4
 
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@monodog/backend",
3
- "version": "1.1.18",
3
+ "version": "1.1.19",
4
4
  "description": "Backend API server for monodog monorepo dashboard",
5
5
  "main": "dist/index.js",
6
6
  "license": "MIT",
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}'`);