mango-cms 0.2.15 → 0.2.16
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/cli.js +1 -1
- package/package.json +1 -1
package/cli.js
CHANGED
|
@@ -166,7 +166,7 @@ program
|
|
|
166
166
|
// Create project directory and copy template
|
|
167
167
|
console.log(`Creating project in ${projectDir}...`);
|
|
168
168
|
fs.mkdirSync(projectDir);
|
|
169
|
-
fs.copySync(templateDir, projectDir);
|
|
169
|
+
fs.copySync(templateDir, projectDir, { filter: (src, dest) => true });
|
|
170
170
|
|
|
171
171
|
// Create config directory if it doesn't exist
|
|
172
172
|
const configDir = path.join(projectDir, 'mango');
|