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:
43
node_modules/css-declaration-sorter/package.json
generated
vendored
43
node_modules/css-declaration-sorter/package.json
generated
vendored
@@ -1,45 +1,48 @@
|
||||
{
|
||||
"name": "css-declaration-sorter",
|
||||
"version": "6.4.1",
|
||||
"version": "7.3.1",
|
||||
"description": "Sorts CSS declarations fast and automatically in a certain order.",
|
||||
"type": "module",
|
||||
"main": "./dist/main.cjs",
|
||||
"exports": {
|
||||
"import": "./src/main.mjs",
|
||||
"require": "./dist/main.cjs"
|
||||
"import": {
|
||||
"types": "./src/core/main.d.mts",
|
||||
"default": "./src/core/main.mjs"
|
||||
},
|
||||
"require": {
|
||||
"types": "./src/core/main.d.cts",
|
||||
"default": "./dist/main.cjs"
|
||||
}
|
||||
},
|
||||
"types": "./src/main.d.ts",
|
||||
"types": "./src/core/main.d.cts",
|
||||
"main": "./dist/main.cjs",
|
||||
"files": [
|
||||
"src/main.mjs",
|
||||
"src/main.d.ts",
|
||||
"src/shorthand-data.mjs",
|
||||
"src/bubble-sort.mjs",
|
||||
"orders",
|
||||
"dist"
|
||||
"src/core/",
|
||||
"src/orders/",
|
||||
"dist/"
|
||||
],
|
||||
"scripts": {
|
||||
"build": "rollup -c",
|
||||
"preversion": "npm test",
|
||||
"test": "uvu src .+\\.test\\.mjs",
|
||||
"test:ci": "npm test && npm run lint -- --max-warnings 0",
|
||||
"lint": "eslint src/*.mjs",
|
||||
"scrape": "node --experimental-import-meta-resolve src/property-scraper.mjs",
|
||||
"lint": "eslint src/core/*.mjs",
|
||||
"scrape": "node src/property-scraper.mjs",
|
||||
"prepack": "npm run build"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@mdn/browser-compat-data": "^5.2.23",
|
||||
"@rollup/plugin-dynamic-import-vars": "^2.0.2",
|
||||
"@rollup/plugin-replace": "^5.0.2",
|
||||
"eslint": "^8.35.0",
|
||||
"postcss": "^8.4.18",
|
||||
"rollup": "^3.15.0",
|
||||
"@eslint/js": "^9.35.0",
|
||||
"@mdn/browser-compat-data": "^7.1.7",
|
||||
"@rollup/plugin-dynamic-import-vars": "^2.1.5",
|
||||
"eslint": "^9.35.0",
|
||||
"postcss": "^8.5.6",
|
||||
"rollup": "^4.52.4",
|
||||
"uvu": "^0.5.6"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"postcss": "^8.0.9"
|
||||
},
|
||||
"engines": {
|
||||
"node": "^10 || ^12 || >=14"
|
||||
"node": "^14 || ^16 || >=18"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
||||
Reference in New Issue
Block a user