create-levelo-app 1.0.0 → 1.0.1

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.
Files changed (2) hide show
  1. package/cli.js +1 -1
  2. package/package.json +1 -1
package/cli.js CHANGED
@@ -36,7 +36,7 @@ function copyFolderSync(from, to) {
36
36
  const destPath = path.join(to, element);
37
37
 
38
38
  // Safety guardrail to ignore bloating storage caches and runtime artifacts
39
- if (element === 'node_modules' || element === '.levelo' || element === 'package-lock.json') return;
39
+ if (element === 'node_modules' || element === 'package-lock.json') return;
40
40
 
41
41
  if (fs.lstatSync(sourcePath).isDirectory()) {
42
42
  copyFolderSync(sourcePath, destPath);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-levelo-app",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "The official standard boilerplate bootstrapper for Levelo JS applications",
5
5
  "main": "cli.js",
6
6
  "type": "module",