@theproductguy/create-mission-control 1.0.14 → 1.0.17
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/bin/cli.js +2 -2
- package/package.json +1 -1
- package/src/template/control-center/frontend/src/App.tsx +583 -522
package/bin/cli.js
CHANGED
|
@@ -91,8 +91,8 @@ async function init() {
|
|
|
91
91
|
// Copy Control Center
|
|
92
92
|
// Copy helper to exclude node_modules
|
|
93
93
|
const copyOptions = {
|
|
94
|
-
recursive: true
|
|
95
|
-
filter: (src) => !src.includes('node_modules')
|
|
94
|
+
recursive: true
|
|
95
|
+
// filter: (src) => !src.includes('node_modules') // ERROR: This filters out everything if CLI is installed in node_modules!
|
|
96
96
|
};
|
|
97
97
|
|
|
98
98
|
// Copy Control Center
|