You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: Node.js/Grunt setup detection for improved build process (#114)
* feat: add Node.js/Grunt setup check and improve build process for gruntless themes like backend-theme
* feat: enhance build process for vendor themes and improve feedback
* feat: refactor Grunt task execution and integrate into theme builder
* feat: add spacing for vendor theme warning in build process
* feat: update output handling for grunt task execution in verbose mode
Copy file name to clipboardExpand all lines: docs/custom_theme_builders.md
+55Lines changed: 55 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -308,6 +308,61 @@ public function autoRepair(string $themePath, SymfonyStyle $io, OutputInterface
308
308
}
309
309
```
310
310
311
+
### Best Practice: Optional Build Tool Setup
312
+
313
+
If your builder uses optional build tools (like Node.js, Grunt, Webpack), consider checking if the setup exists before requiring it. This allows themes to intentionally skip certain build steps:
0 commit comments