netcore-blueprint 0.0.39 → 0.0.41

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.
@@ -136,8 +136,11 @@ function copyRecursive(src, dest) {
136
136
  }
137
137
 
138
138
  const entries = fs.readdirSync(src, { withFileTypes: true });
139
+ console.log(`📄 TruongDX8 src: ${src}`);
140
+ console.log(`📄 TruongDX8 dest: ${dest}`);
139
141
 
140
142
  for (const entry of entries) {
143
+ console.log(`📄 TruongDX8 Item: ${entry.name}`);
141
144
  const srcPath = path.join(src, entry.name);
142
145
  const destPath = path.join(dest, entry.name);
143
146
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "netcore-blueprint",
3
- "version": "0.0.39",
3
+ "version": "0.0.41",
4
4
  "description": "A custom project blueprint",
5
5
  "main": "create.js",
6
6
  "bin": {