Fix code quality violations and enhance ROUTE-EXISTS-01 rule
Implement JQHTML function cache ID system and fix bundle compilation Implement underscore prefix for system tables Fix JS syntax linter to support decorators and grant exception to Task system SPA: Update planning docs and wishlists with remaining features SPA: Document Navigation API abandonment and future enhancements Implement SPA browser integration with History API (Phase 1) Convert contacts view page to SPA action Convert clients pages to SPA actions and document conversion procedure SPA: Merge GET parameters and update documentation Implement SPA route URL generation in JavaScript and PHP Implement SPA bootstrap controller architecture Add SPA routing manual page (rsx:man spa) Add SPA routing documentation to CLAUDE.md Phase 4 Complete: Client-side SPA routing implementation Update get_routes() consumers for unified route structure Complete SPA Phase 3: PHP-side route type detection and is_spa flag Restore unified routes structure and Manifest_Query class Refactor route indexing and add SPA infrastructure Phase 3 Complete: SPA route registration in manifest Implement SPA Phase 2: Extract router code and test decorators Rename Jqhtml_Component to Component and complete SPA foundation setup 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
6
node_modules/webpack/lib/config/target.js
generated
vendored
6
node_modules/webpack/lib/config/target.js
generated
vendored
@@ -42,6 +42,7 @@ const getDefaultTarget = (context) => {
|
||||
* @property {boolean | null} require has require function available
|
||||
* @property {boolean | null} nodeBuiltins has node.js built-in modules available
|
||||
* @property {boolean | null} nodePrefixForCoreModules node.js allows to use `node:` prefix for core modules
|
||||
* @property {boolean | null} importMetaDirnameAndFilename node.js allows to use `import.meta.dirname` and `import.meta.filename`
|
||||
* @property {boolean | null} document has document available (allows script tags)
|
||||
* @property {boolean | null} importScripts has importScripts available
|
||||
* @property {boolean | null} importScriptsInWorker has importScripts available when creating a worker
|
||||
@@ -178,6 +179,9 @@ You can also more options via the 'target' option: 'browserslist' / 'browserslis
|
||||
nodeBuiltins: true,
|
||||
// v16.0.0, v14.18.0
|
||||
nodePrefixForCoreModules: Number(major) < 15 ? v(14, 18) : v(16),
|
||||
// Added in: v21.2.0, v20.11.0, but Node.js will output experimental warning, we don't want it
|
||||
// v24.0.0, v22.16.0 - This property is no longer experimental.
|
||||
importMetaDirnameAndFilename: v(22, 16),
|
||||
global: true,
|
||||
document: false,
|
||||
fetchWasm: false,
|
||||
@@ -223,6 +227,8 @@ You can also more options via the 'target' option: 'browserslist' / 'browserslis
|
||||
// 15.0.0 - Node.js v16.5
|
||||
// 14.0.0 - Mode.js v14.17, but prefixes only since v14.18
|
||||
nodePrefixForCoreModules: v(15),
|
||||
// 37.0.0 - Node.js v22.16
|
||||
importMetaDirnameAndFilename: v(37),
|
||||
|
||||
require: true,
|
||||
document: context === "renderer",
|
||||
|
||||
Reference in New Issue
Block a user