Add npm man page, --clean flag for bundle:compile, fix subclass checks

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
root
2025-12-09 21:16:16 +00:00
parent 46b45e6762
commit d71f7a6615
6 changed files with 315 additions and 26 deletions

View File

@@ -276,7 +276,7 @@ class Scss_ManifestModule extends ManifestModule_Abstract
// Check for JavaScript class extending Component
if (isset($file_data['extension']) && $file_data['extension'] === 'js' &&
isset($file_data['class']) && $file_data['class'] === $class_name &&
isset($file_data['extends']) && $file_data['extends'] === 'Component') {
\App\RSpade\Core\Manifest\Manifest::js_is_subclass_of($class_name, 'Component')) {
$found_match = true;
}
}