Fix code quality violations and exclude Manifest from checks
Document application modes (development/debug/production) Add global file drop handler, order column normalization, SPA hash fix Serve CDN assets via /_vendor/ URLs instead of merging into bundles Add production minification with license preservation Improve JSON formatting for debugging and production optimization Add CDN asset caching with CSS URL inlining for production builds Add three-mode system (development, debug, production) Update Manifest CLAUDE.md to reflect helper class architecture Refactor Manifest.php into helper classes for better organization Pre-manifest-refactor checkpoint: Add app_mode documentation 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
6
node_modules/css-tree/lib/syntax/function/expression.js
generated
vendored
6
node_modules/css-tree/lib/syntax/function/expression.js
generated
vendored
@@ -1,7 +1,7 @@
|
||||
// legacy IE function
|
||||
// expression( <any-value> )
|
||||
module.exports = function() {
|
||||
export default function() {
|
||||
return this.createSingleNodeList(
|
||||
this.Raw(this.scanner.tokenIndex, null, false)
|
||||
this.Raw(null, false)
|
||||
);
|
||||
};
|
||||
}
|
||||
|
||||
26
node_modules/css-tree/lib/syntax/function/var.js
generated
vendored
26
node_modules/css-tree/lib/syntax/function/var.js
generated
vendored
@@ -1,31 +1,27 @@
|
||||
var TYPE = require('../../tokenizer').TYPE;
|
||||
var rawMode = require('../node/Raw').mode;
|
||||
|
||||
var COMMA = TYPE.Comma;
|
||||
var WHITESPACE = TYPE.WhiteSpace;
|
||||
import { Comma, WhiteSpace } from '../../tokenizer/index.js';
|
||||
|
||||
// var( <ident> , <value>? )
|
||||
module.exports = function() {
|
||||
var children = this.createList();
|
||||
export default function() {
|
||||
const children = this.createList();
|
||||
|
||||
this.scanner.skipSC();
|
||||
this.skipSC();
|
||||
|
||||
// NOTE: Don't check more than a first argument is an ident, rest checks are for lexer
|
||||
children.push(this.Identifier());
|
||||
|
||||
this.scanner.skipSC();
|
||||
this.skipSC();
|
||||
|
||||
if (this.scanner.tokenType === COMMA) {
|
||||
if (this.tokenType === Comma) {
|
||||
children.push(this.Operator());
|
||||
|
||||
const startIndex = this.scanner.tokenIndex;
|
||||
const startIndex = this.tokenIndex;
|
||||
const value = this.parseCustomProperty
|
||||
? this.Value(null)
|
||||
: this.Raw(this.scanner.tokenIndex, rawMode.exclamationMarkOrSemicolon, false);
|
||||
: this.Raw(this.consumeUntilExclamationMarkOrSemicolon, false);
|
||||
|
||||
if (value.type === 'Value' && value.children.isEmpty()) {
|
||||
for (let offset = startIndex - this.scanner.tokenIndex; offset <= 0; offset++) {
|
||||
if (this.scanner.lookupType(offset) === WHITESPACE) {
|
||||
if (value.type === 'Value' && value.children.isEmpty) {
|
||||
for (let offset = startIndex - this.tokenIndex; offset <= 0; offset++) {
|
||||
if (this.lookupType(offset) === WhiteSpace) {
|
||||
value.children.appendData({
|
||||
type: 'WhiteSpace',
|
||||
loc: null,
|
||||
|
||||
Reference in New Issue
Block a user