Add 100+ automated unit tests from .expect file specifications Add session system test Add rsx:constants:regenerate command test Add rsx:logrotate command test Add rsx:clean command test Add rsx:manifest:stats command test Add model enum system test Add model mass assignment prevention test Add rsx:check command test Add migrate:status command test 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
33 lines
797 B
PHP
33 lines
797 B
PHP
<?php
|
|
|
|
namespace App\RSpade\Integrations\Jqhtml;
|
|
|
|
use App\RSpade\Core\Bundle\Rsx_Bundle_Abstract;
|
|
|
|
/**
|
|
* JQHTML Runtime Bundle
|
|
*
|
|
* Provides the JQHTML runtime JavaScript files needed for template rendering.
|
|
* The Jqhtml_BundleProcessor handles compilation of .jqhtml files separately.
|
|
*/
|
|
class Jqhtml_Bundle extends Rsx_Bundle_Abstract
|
|
{
|
|
/**
|
|
* Define the bundle configuration
|
|
*
|
|
* @return array Bundle configuration
|
|
*/
|
|
public static function define(): array
|
|
{
|
|
return [
|
|
'include' => [
|
|
__DIR__,
|
|
],
|
|
'npm' => [
|
|
'jqhtml' => "import jqhtml from '@jqhtml/core'",
|
|
'_Base_Jqhtml_Component' => "import { Jqhtml_Component } from '@jqhtml/core'",
|
|
],
|
|
];
|
|
}
|
|
}
|