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:
11
node_modules/postcss-normalize-display-values/package.json
generated
vendored
11
node_modules/postcss-normalize-display-values/package.json
generated
vendored
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "postcss-normalize-display-values",
|
||||
"version": "5.1.0",
|
||||
"version": "7.0.1",
|
||||
"description": "Normalize multiple value display syntaxes into single values.",
|
||||
"main": "src/index.js",
|
||||
"types": "types/index.d.ts",
|
||||
@@ -24,13 +24,12 @@
|
||||
},
|
||||
"homepage": "https://github.com/cssnano/cssnano",
|
||||
"engines": {
|
||||
"node": "^10 || ^12 || >=14.0"
|
||||
"node": "^18.12.0 || ^20.9.0 || >=22.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"postcss": "^8.2.15"
|
||||
"postcss": "^8.5.3"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"postcss": "^8.2.15"
|
||||
},
|
||||
"readme": "# [postcss][postcss]-normalize-display-values\n\n> Normalize display property values with PostCSS.\n\n## Install\n\nWith [npm](https://npmjs.org/package/postcss-normalize-display-values) do:\n\n```\nnpm install postcss-normalize-display-values --save\n```\n\n## Example\n\n### Input\n\n```css\ndiv {\n display: inline flow-root\n}\n```\n\n### Output\n\n```css\ndiv {\n display: inline-block\n}\n``` \n\n## Usage\n\nSee the [PostCSS documentation](https://github.com/postcss/postcss#usage) for\nexamples for your environment.\n\n## Contributors\n\nSee [CONTRIBUTORS.md](https://github.com/cssnano/cssnano/blob/master/CONTRIBUTORS.md).\n\n## License\n\nMIT © [Ben Briggs](http://beneb.info)\n\n[postcss]: https://github.com/postcss/postcss\n"
|
||||
"postcss": "^8.4.32"
|
||||
}
|
||||
}
|
||||
5
node_modules/postcss-normalize-display-values/types/index.d.ts
generated
vendored
5
node_modules/postcss-normalize-display-values/types/index.d.ts
generated
vendored
@@ -3,7 +3,8 @@ export = pluginCreator;
|
||||
* @type {import('postcss').PluginCreator<void>}
|
||||
* @return {import('postcss').Plugin}
|
||||
*/
|
||||
declare function pluginCreator(): import('postcss').Plugin;
|
||||
declare function pluginCreator(): import("postcss").Plugin;
|
||||
declare namespace pluginCreator {
|
||||
const postcss: true;
|
||||
let postcss: true;
|
||||
}
|
||||
//# sourceMappingURL=index.d.ts.map
|
||||
1
node_modules/postcss-normalize-display-values/types/index.d.ts.map
generated
vendored
Executable file
1
node_modules/postcss-normalize-display-values/types/index.d.ts.map
generated
vendored
Executable file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.js"],"names":[],"mappings":";AAiCA;;;GAGG;AACH,kCAFY,OAAO,SAAS,EAAE,MAAM,CAgCnC"}
|
||||
16
node_modules/postcss-normalize-display-values/types/lib/map.d.ts
generated
vendored
16
node_modules/postcss-normalize-display-values/types/lib/map.d.ts
generated
vendored
@@ -1,15 +1,3 @@
|
||||
declare const _exports: {
|
||||
clear(): void;
|
||||
delete(key: string): boolean;
|
||||
forEach(callbackfn: (value: string, key: string, map: Map<string, string>) => void, thisArg?: any): void;
|
||||
get(key: string): string | undefined;
|
||||
has(key: string): boolean;
|
||||
set(key: string, value: string): Map<string, string>;
|
||||
readonly size: number;
|
||||
entries(): IterableIterator<[string, string]>;
|
||||
keys(): IterableIterator<string>;
|
||||
values(): IterableIterator<string>;
|
||||
[Symbol.iterator](): IterableIterator<[string, string]>;
|
||||
readonly [Symbol.toStringTag]: string;
|
||||
};
|
||||
declare const _exports: Map<string, string>;
|
||||
export = _exports;
|
||||
//# sourceMappingURL=map.d.ts.map
|
||||
1
node_modules/postcss-normalize-display-values/types/lib/map.d.ts.map
generated
vendored
Executable file
1
node_modules/postcss-normalize-display-values/types/lib/map.d.ts.map
generated
vendored
Executable file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"map.d.ts","sourceRoot":"","sources":["../../src/lib/map.js"],"names":[],"mappings":""}
|
||||
Reference in New Issue
Block a user