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:
root
2026-01-14 10:38:22 +00:00
parent bb9046af1b
commit d523f0f600
2355 changed files with 231384 additions and 32223 deletions

12
node_modules/stylehacks/package.json generated vendored
View File

@@ -1,6 +1,6 @@
{
"name": "stylehacks",
"version": "5.1.1",
"version": "7.0.7",
"description": "Detect/remove browser hacks from CSS files.",
"main": "src/index.js",
"types": "types/index.d.ts",
@@ -28,19 +28,19 @@
},
"repository": "cssnano/cssnano",
"dependencies": {
"browserslist": "^4.21.4",
"postcss-selector-parser": "^6.0.4"
"browserslist": "^4.27.0",
"postcss-selector-parser": "^7.1.0"
},
"bugs": {
"url": "https://github.com/cssnano/cssnano/issues"
},
"engines": {
"node": "^10 || ^12 || >=14.0"
"node": "^18.12.0 || ^20.9.0 || >=22.0"
},
"devDependencies": {
"postcss": "^8.2.15"
"postcss": "^8.5.6"
},
"peerDependencies": {
"postcss": "^8.2.15"
"postcss": "^8.4.32"
}
}

63
node_modules/stylehacks/src/index.js generated vendored
View File

@@ -1,8 +1,13 @@
'use strict';
const { dirname } = require('path');
const browserslist = require('browserslist');
const plugins = require('./plugins');
/** @typedef {{lint?: boolean}} Options */
/**
* @typedef {{ overrideBrowserslist?: string | string[] }} AutoprefixerOptions
* @typedef {Pick<browserslist.Options, 'stats' | 'path' | 'env'>} BrowserslistOptions
* @typedef {{lint?: boolean} & AutoprefixerOptions & BrowserslistOptions} Options
*/
/**
* @type {import('postcss').PluginCreator<Options>}
@@ -13,36 +18,42 @@ function pluginCreator(opts = {}) {
return {
postcssPlugin: 'stylehacks',
OnceExit(css, { result }) {
/** @type {typeof result.opts & browserslist.Options} */
const resultOpts = result.opts || {};
const browsers = browserslist(null, {
stats: resultOpts.stats,
path: __dirname,
env: resultOpts.env,
/**
* @param {import('postcss').Result & {opts: BrowserslistOptions & {file?: string}}} result
*/
prepare(result) {
const { stats, env, from, file } = result.opts || {};
const browsers = browserslist(opts.overrideBrowserslist, {
stats: opts.stats || stats,
path: opts.path || dirname(from || file || __filename),
env: opts.env || env,
});
/** @type {import('./plugin').Plugin[]} */
const processors = [];
for (const Plugin of plugins) {
const hack = new Plugin(result);
if (!browsers.some((browser) => hack.targets.has(browser))) {
processors.push(hack);
}
}
css.walk((node) => {
processors.forEach((proc) => {
if (!proc.nodeTypes.has(node.type)) {
return;
return {
OnceExit(css) {
/** @type {import('./plugin').Plugin[]} */
const processors = [];
for (const Plugin of plugins) {
const hack = new Plugin(result);
if (!browsers.some((browser) => hack.targets.has(browser))) {
processors.push(hack);
}
}
css.walk((node) => {
processors.forEach((proc) => {
if (!proc.nodeTypes.has(node.type)) {
return;
}
if (opts.lint) {
return proc.detectAndWarn(node);
}
if (opts.lint) {
return proc.detectAndWarn(node);
}
return proc.detectAndResolve(node);
});
});
return proc.detectAndResolve(node);
});
});
},
};
},
};
}

View File

@@ -4,3 +4,4 @@ export const IE_6: "ie 6";
export const IE_7: "ie 7";
export const IE_8: "ie 8";
export const OP_9: "opera 9";
//# sourceMappingURL=browsers.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"browsers.d.ts","sourceRoot":"","sources":["../../src/dictionary/browsers.js"],"names":[],"mappings":"AACA,mBAAa,WAAW,CAAC;AACzB,qBAAe,QAAQ,CAAC;AACxB,mBAAa,MAAM,CAAC;AACpB,mBAAa,MAAM,CAAC;AACpB,mBAAa,MAAM,CAAC;AACpB,mBAAa,SAAS,CAAC"}

View File

@@ -2,3 +2,4 @@ export const MEDIA_QUERY: "media query";
export const PROPERTY: "property";
export const SELECTOR: "selector";
export const VALUE: "value";
//# sourceMappingURL=identifiers.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"identifiers.d.ts","sourceRoot":"","sources":["../../src/dictionary/identifiers.js"],"names":[],"mappings":"AACA,0BAAoB,aAAa,CAAC;AAClC,uBAAiB,UAAU,CAAC;AAC5B,uBAAiB,UAAU,CAAC;AAC5B,oBAAc,OAAO,CAAC"}

View File

@@ -1,3 +1,4 @@
export const ATRULE: "atrule";
export const DECL: "decl";
export const RULE: "rule";
//# sourceMappingURL=postcss.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"postcss.d.ts","sourceRoot":"","sources":["../../src/dictionary/postcss.js"],"names":[],"mappings":"AACA,qBAAe,QAAQ,CAAC;AACxB,mBAAa,MAAM,CAAC;AACpB,mBAAa,MAAM,CAAC"}

View File

@@ -1,2 +1,3 @@
export const BODY: "body";
export const HTML: "html";
//# sourceMappingURL=tags.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"tags.d.ts","sourceRoot":"","sources":["../../src/dictionary/tags.js"],"names":[],"mappings":"AACA,mBAAa,MAAM,CAAC;AACpB,mBAAa,MAAM,CAAC"}

View File

@@ -1,2 +1,3 @@
declare function _exports(selector: import('postcss-selector-parser').Selector, index: number, value: string): boolean | undefined | '';
declare function _exports(selector: import("postcss-selector-parser").Selector, index: number, value: string): boolean | undefined | "";
export = _exports;
//# sourceMappingURL=exists.d.ts.map

1
node_modules/stylehacks/types/exists.d.ts.map generated vendored Normal file
View File

@@ -0,0 +1 @@
{"version":3,"file":"exists.d.ts","sourceRoot":"","sources":["../src/exists.js"],"names":[],"mappings":"AAQiB,oCALN,OAAO,yBAAyB,EAAE,QAAQ,SAC1C,MAAM,SACN,MAAM,GACL,OAAO,GAAG,SAAS,GAAG,EAAE,CAMnC"}

View File

@@ -1,16 +1,26 @@
export = pluginCreator;
/** @typedef {{lint?: boolean}} Options */
/**
* @typedef {{ overrideBrowserslist?: string | string[] }} AutoprefixerOptions
* @typedef {Pick<browserslist.Options, 'stats' | 'path' | 'env'>} BrowserslistOptions
* @typedef {{lint?: boolean} & AutoprefixerOptions & BrowserslistOptions} Options
*/
/**
* @type {import('postcss').PluginCreator<Options>}
* @param {Options} opts
* @return {import('postcss').Plugin}
*/
declare function pluginCreator(opts?: Options): import('postcss').Plugin;
declare function pluginCreator(opts?: Options): import("postcss").Plugin;
declare namespace pluginCreator {
export { detect, postcss, Options };
export { detect, postcss, AutoprefixerOptions, BrowserslistOptions, Options };
}
declare function detect(node: import("postcss").Node): boolean;
declare var postcss: true;
type AutoprefixerOptions = {
overrideBrowserslist?: string | string[];
};
type BrowserslistOptions = Pick<browserslist.Options, "stats" | "path" | "env">;
type Options = {
lint?: boolean;
};
declare function detect(node: import('postcss').Node): boolean;
declare var postcss: true;
} & AutoprefixerOptions & BrowserslistOptions;
import browserslist = require("browserslist");
//# sourceMappingURL=index.d.ts.map

1
node_modules/stylehacks/types/index.d.ts.map generated vendored Normal file
View File

@@ -0,0 +1 @@
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.js"],"names":[],"mappings":";AAKA;;;;GAIG;AAEH;;;;GAIG;AACH,sCAHW,OAAO,GACN,OAAO,SAAS,EAAE,MAAM,CA4CnC;;;;AAEU,8BAAO,OAAO,SAAS,EAAE,IAAI,GAAK,OAAO,CAAA;;2BAtDvC;IAAE,oBAAoB,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,CAAA;CAAE;2BAC5C,IAAI,CAAC,YAAY,CAAC,OAAO,EAAE,OAAO,GAAG,MAAM,GAAG,KAAK,CAAC;eACpD;IAAC,IAAI,CAAC,EAAE,OAAO,CAAA;CAAC,GAAG,mBAAmB,GAAG,mBAAmB"}

View File

@@ -1,2 +1,3 @@
declare function _exports(node: import('postcss').Rule): boolean;
declare function _exports(node: import("postcss").Rule): boolean;
export = _exports;
//# sourceMappingURL=isMixin.d.ts.map

1
node_modules/stylehacks/types/isMixin.d.ts.map generated vendored Normal file
View File

@@ -0,0 +1 @@
{"version":3,"file":"isMixin.d.ts","sourceRoot":"","sources":["../src/isMixin.js"],"names":[],"mappings":"AAKiB,gCAHN,OAAO,SAAS,EAAE,IAAI,GACrB,OAAO,CAWlB"}

View File

@@ -5,18 +5,18 @@ declare class BasePlugin {
* @param {string[]} nodeTypes
* @param {import('postcss').Result=} result
*/
constructor(targets: string[], nodeTypes: string[], result?: import('postcss').Result | undefined);
constructor(targets: string[], nodeTypes: string[], result?: import("postcss").Result | undefined);
/** @type {NodeWithInfo[]} */
nodes: NodeWithInfo[];
targets: Set<string>;
nodeTypes: Set<string>;
result: import("postcss").Result | undefined;
result: import("postcss").Result<import("postcss").Document | import("postcss").Root> | undefined;
/**
* @param {import('postcss').Node} node
* @param {{identifier: string, hack: string}} metadata
* @return {void}
*/
push(node: import('postcss').Node, metadata: {
push(node: import("postcss").Node, metadata: {
identifier: string;
hack: string;
}): void;
@@ -24,19 +24,19 @@ declare class BasePlugin {
* @param {import('postcss').Node} node
* @return {boolean}
*/
any(node: import('postcss').Node): boolean;
any(node: import("postcss").Node): boolean;
/**
* @param {import('postcss').Node} node
* @return {void}
*/
detectAndResolve(node: import('postcss').Node): void;
detectAndResolve(node: import("postcss").Node): void;
/**
* @param {import('postcss').Node} node
* @return {void}
*/
detectAndWarn(node: import('postcss').Node): void;
detectAndWarn(node: import("postcss").Node): void;
/** @param {import('postcss').Node} node */
detect(node: import('postcss').Node): void;
detect(node: import("postcss").Node): void;
/** @return {void} */
resolve(): void;
warn(): void;
@@ -44,7 +44,13 @@ declare class BasePlugin {
declare namespace BasePlugin {
export { Plugin, NodeWithInfo };
}
type NodeWithInfo = import('postcss').Node & {
type Plugin = {
targets: Set<string>;
nodeTypes: Set<string>;
detectAndResolve: (node: import("postcss").Node) => void;
detectAndWarn: (node: import("postcss").Node) => void;
};
type NodeWithInfo = import("postcss").Node & {
_stylehacks: {
message: string;
browsers: Set<string>;
@@ -52,9 +58,4 @@ type NodeWithInfo = import('postcss').Node & {
hack: string;
};
};
type Plugin = {
targets: Set<string>;
nodeTypes: Set<string>;
detectAndResolve: (node: import('postcss').Node) => void;
detectAndWarn: (node: import('postcss').Node) => void;
};
//# sourceMappingURL=plugin.d.ts.map

1
node_modules/stylehacks/types/plugin.d.ts.map generated vendored Normal file
View File

@@ -0,0 +1 @@
{"version":3,"file":"plugin.d.ts","sourceRoot":"","sources":["../src/plugin.js"],"names":[],"mappings":";AAiBiB;IACf;;;;OAIG;IACH,qBAJW,MAAM,EAAE,aACR,MAAM,EAAE,WACR,OAAO,SAAS,EAAE,MAAM,YAAC,EAQnC;IALC,6BAA6B;IAC7B,OADW,YAAY,EAAE,CACV;IACf,qBAA+B;IAC/B,uBAAmC;IACnC,kGAAoB;IAGtB;;;;OAIG;IACH,WAJW,OAAO,SAAS,EAAE,IAAI,YACtB;QAAC,UAAU,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAC,GACjC,IAAI,CAaf;IAED;;;OAGG;IACH,UAHW,OAAO,SAAS,EAAE,IAAI,GACrB,OAAO,CAUlB;IAED;;;OAGG;IACH,uBAHW,OAAO,SAAS,EAAE,IAAI,GACrB,IAAI,CAQf;IAED;;;OAGG;IACH,oBAHW,OAAO,SAAS,EAAE,IAAI,GACrB,IAAI,CAQf;IACD,2CAA2C;IAE3C,aAFY,OAAO,SAAS,EAAE,IAAI,QAIjC;IAED,qBAAqB;IACrB,WADa,IAAI,CAGhB;IAED,aASC;CACF;;;;;aAxGS,GAAG,CAAC,MAAM,CAAC;eACX,GAAG,CAAC,MAAM,CAAC;sBACX,CAAC,IAAI,EAAE,OAAO,SAAS,EAAE,IAAI,KAAK,IAAI;mBACtC,CAAC,IAAI,EAAE,OAAO,SAAS,EAAE,IAAI,KAAK,IAAI;;oBAInC,OAAO,SAAS,EAAE,IAAI,GAAG;IAAC,WAAW,EAAE;QACV,OAAO,EAAE,MAAM,CAAC;QAChB,QAAQ,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC;QACtB,UAAU,EAAE,MAAM,CAAC;QACnB,IAAI,EAAE,MAAM,CAAA;KAAE,CAAA;CAAC"}

View File

@@ -1,17 +1,18 @@
export = BodyEmpty;
declare class BodyEmpty extends BasePlugin {
/** @param {import('postcss').Result} result */
constructor(result: import('postcss').Result);
constructor(result: import("postcss").Result);
/**
* @param {import('postcss').Rule} rule
* @return {void}
*/
detect(rule: import('postcss').Rule): void;
detect(rule: import("postcss").Rule): void;
/**
* @param {import('postcss').Rule} rule
* @return {parser.SyncProcessor<void>}
*/
analyse(rule: import('postcss').Rule): parser.SyncProcessor<void>;
analyse(rule: import("postcss").Rule): parser.SyncProcessor<void>;
}
import BasePlugin = require("../plugin");
import parser = require("postcss-selector-parser");
//# sourceMappingURL=bodyEmpty.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"bodyEmpty.d.ts","sourceRoot":"","sources":["../../src/plugins/bodyEmpty.js"],"names":[],"mappings":";AAUiB;IACf,+CAA+C;IAC/C,oBADY,OAAO,SAAS,EAAE,MAAM,EAGnC;IAED;;;OAGG;IACH,aAHW,OAAO,SAAS,EAAE,IAAI,GACrB,IAAI,CAOf;IAED;;;OAGG;IACH,cAHW,OAAO,SAAS,EAAE,IAAI,GACrB,MAAM,CAAC,aAAa,CAAC,IAAI,CAAC,CAkBrC;CACF"}

View File

@@ -1,16 +1,17 @@
export = HtmlCombinatorCommentBody;
declare class HtmlCombinatorCommentBody extends BasePlugin {
/** @param {import('postcss').Result} result */
constructor(result: import('postcss').Result);
constructor(result: import("postcss").Result);
/**
* @param {import('postcss').Rule} rule
* @return {void}
*/
detect(rule: import('postcss').Rule): void;
detect(rule: import("postcss").Rule): void;
/** @param {import('postcss').Rule} rule
* @return {parser.SyncProcessor<void>}
*/
analyse(rule: import('postcss').Rule): parser.SyncProcessor<void>;
analyse(rule: import("postcss").Rule): parser.SyncProcessor<void>;
}
import BasePlugin = require("../plugin");
import parser = require("postcss-selector-parser");
//# sourceMappingURL=htmlCombinatorCommentBody.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"htmlCombinatorCommentBody.d.ts","sourceRoot":"","sources":["../../src/plugins/htmlCombinatorCommentBody.js"],"names":[],"mappings":";AAUiB;IACf,+CAA+C;IAC/C,oBADY,OAAO,SAAS,EAAE,MAAM,EAGnC;IAED;;;OAGG;IACH,aAHW,OAAO,SAAS,EAAE,IAAI,GACrB,IAAI,CASf;IAED;;OAEG;IACH,cAHY,OAAO,SAAS,EAAE,IAAI,GACrB,MAAM,CAAC,aAAa,CAAC,IAAI,CAAC,CAsBtC;CACF"}

View File

@@ -1,17 +1,18 @@
export = HtmlFirstChild;
declare class HtmlFirstChild extends BasePlugin {
/** @param {import('postcss').Result} result */
constructor(result: import('postcss').Result);
constructor(result: import("postcss").Result);
/**
* @param {import('postcss').Rule} rule
* @return {void}
*/
detect(rule: import('postcss').Rule): void;
detect(rule: import("postcss").Rule): void;
/**
* @param {import('postcss').Rule} rule
* @return {parser.SyncProcessor<void>}
*/
analyse(rule: import('postcss').Rule): parser.SyncProcessor<void>;
analyse(rule: import("postcss").Rule): parser.SyncProcessor<void>;
}
import BasePlugin = require("../plugin");
import parser = require("postcss-selector-parser");
//# sourceMappingURL=htmlFirstChild.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"htmlFirstChild.d.ts","sourceRoot":"","sources":["../../src/plugins/htmlFirstChild.js"],"names":[],"mappings":";AAUiB;IACf,+CAA+C;IAC/C,oBADY,OAAO,SAAS,EAAE,MAAM,EAGnC;IAED;;;OAGG;IACH,aAHW,OAAO,SAAS,EAAE,IAAI,GACrB,IAAI,CAQf;IAED;;;OAGG;IACH,cAHW,OAAO,SAAS,EAAE,IAAI,GACrB,MAAM,CAAC,aAAa,CAAC,IAAI,CAAC,CAkBrC;CACF"}

View File

@@ -1,11 +1,12 @@
export = Important;
declare class Important extends BasePlugin {
/** @param {import('postcss').Result=} result */
constructor(result?: import('postcss').Result | undefined);
constructor(result?: import("postcss").Result | undefined);
/**
* @param {import('postcss').Declaration} decl
* @return {void}
*/
detect(decl: import('postcss').Declaration): void;
detect(decl: import("postcss").Declaration): void;
}
import BasePlugin = require("../plugin");
//# sourceMappingURL=important.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"important.d.ts","sourceRoot":"","sources":["../../src/plugins/important.js"],"names":[],"mappings":";AAKiB;IACf,gDAAgD;IAChD,qBADY,OAAO,SAAS,EAAE,MAAM,YAAC,EAGpC;IACD;;;OAGG;IACH,aAHW,OAAO,SAAS,EAAE,WAAW,GAC5B,IAAI,CAWf;CACF"}

View File

@@ -4,3 +4,6 @@ declare const _exports: ({
new (result?: import("postcss").Result | undefined): trailingSlashComma;
})[];
export = _exports;
import important = require("./important");
import trailingSlashComma = require("./trailingSlashComma");
//# sourceMappingURL=index.d.ts.map

1
node_modules/stylehacks/types/plugins/index.d.ts.map generated vendored Normal file
View File

@@ -0,0 +1 @@
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/plugins/index.js"],"names":[],"mappings":""}

View File

@@ -1,11 +1,12 @@
export = LeadingStar;
declare class LeadingStar extends BasePlugin {
/** @param {import('postcss').Result=} result */
constructor(result?: import('postcss').Result | undefined);
constructor(result?: import("postcss").Result | undefined);
/**
* @param {import('postcss').Declaration | import('postcss').AtRule} node
* @return {void}
*/
detect(node: import('postcss').Declaration | import('postcss').AtRule): void;
detect(node: import("postcss").Declaration | import("postcss").AtRule): void;
}
import BasePlugin = require("../plugin");
//# sourceMappingURL=leadingStar.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"leadingStar.d.ts","sourceRoot":"","sources":["../../src/plugins/leadingStar.js"],"names":[],"mappings":";AAQiB;IACf,gDAAgD;IAChD,qBADY,OAAO,SAAS,EAAE,MAAM,YAAC,EAGpC;IAED;;;OAGG;IACH,aAHW,OAAO,SAAS,EAAE,WAAW,GAAG,OAAO,SAAS,EAAE,MAAM,GACvD,IAAI,CAqCf;CACF"}

View File

@@ -1,11 +1,12 @@
export = LeadingUnderscore;
declare class LeadingUnderscore extends BasePlugin {
/** @param {import('postcss').Result=} result */
constructor(result?: import('postcss').Result | undefined);
constructor(result?: import("postcss").Result | undefined);
/**
* @param {import('postcss').Declaration} decl
* @return {void}
*/
detect(decl: import('postcss').Declaration): void;
detect(decl: import("postcss").Declaration): void;
}
import BasePlugin = require("../plugin");
//# sourceMappingURL=leadingUnderscore.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"leadingUnderscore.d.ts","sourceRoot":"","sources":["../../src/plugins/leadingUnderscore.js"],"names":[],"mappings":";AAmBiB;IACf,gDAAgD;IAChD,qBADY,OAAO,SAAS,EAAE,MAAM,YAAC,EAGpC;IAED;;;OAGG;IACH,aAHW,OAAO,SAAS,EAAE,WAAW,GAC5B,IAAI,CAsBf;CACF"}

View File

@@ -1,11 +1,12 @@
export = MediaSlash0;
declare class MediaSlash0 extends BasePlugin {
/** @param {import('postcss').Result} result */
constructor(result: import('postcss').Result);
constructor(result: import("postcss").Result);
/**
* @param {import('postcss').AtRule} rule
* @return {void}
*/
detect(rule: import('postcss').AtRule): void;
detect(rule: import("postcss").AtRule): void;
}
import BasePlugin = require("../plugin");
//# sourceMappingURL=mediaSlash0.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"mediaSlash0.d.ts","sourceRoot":"","sources":["../../src/plugins/mediaSlash0.js"],"names":[],"mappings":";AAMiB;IACf,+CAA+C;IAC/C,oBADY,OAAO,SAAS,EAAE,MAAM,EAGnC;IACD;;;OAGG;IACH,aAHW,OAAO,SAAS,EAAE,MAAM,GACvB,IAAI,CAWf;CACF"}

View File

@@ -1,11 +1,12 @@
export = MediaSlash0Slash9;
declare class MediaSlash0Slash9 extends BasePlugin {
/** @param {import('postcss').Result} result */
constructor(result: import('postcss').Result);
constructor(result: import("postcss").Result);
/**
* @param {import('postcss').AtRule} rule
* @return {void}
*/
detect(rule: import('postcss').AtRule): void;
detect(rule: import("postcss").AtRule): void;
}
import BasePlugin = require("../plugin");
//# sourceMappingURL=mediaSlash0Slash9.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"mediaSlash0Slash9.d.ts","sourceRoot":"","sources":["../../src/plugins/mediaSlash0Slash9.js"],"names":[],"mappings":";AAMiB;IACf,+CAA+C;IAC/C,oBADY,OAAO,SAAS,EAAE,MAAM,EAGnC;IAED;;;OAGG;IACH,aAHW,OAAO,SAAS,EAAE,MAAM,GACvB,IAAI,CAWf;CACF"}

View File

@@ -1,11 +1,12 @@
export = MediaSlash9;
declare class MediaSlash9 extends BasePlugin {
/** @param {import('postcss').Result} result */
constructor(result: import('postcss').Result);
constructor(result: import("postcss").Result);
/**
* @param {import('postcss').AtRule} rule
* @return {void}
*/
detect(rule: import('postcss').AtRule): void;
detect(rule: import("postcss").AtRule): void;
}
import BasePlugin = require("../plugin");
//# sourceMappingURL=mediaSlash9.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"mediaSlash9.d.ts","sourceRoot":"","sources":["../../src/plugins/mediaSlash9.js"],"names":[],"mappings":";AAMiB;IACf,+CAA+C;IAC/C,oBADY,OAAO,SAAS,EAAE,MAAM,EAGnC;IAED;;;OAGG;IACH,aAHW,OAAO,SAAS,EAAE,MAAM,GACvB,IAAI,CAWf;CACF"}

View File

@@ -1,11 +1,12 @@
export = Slash9;
declare class Slash9 extends BasePlugin {
/** @param {import('postcss').Result=} result */
constructor(result?: import('postcss').Result | undefined);
constructor(result?: import("postcss").Result | undefined);
/**
* @param {import('postcss').Declaration} decl
* @return {void}
*/
detect(decl: import('postcss').Declaration): void;
detect(decl: import("postcss").Declaration): void;
}
import BasePlugin = require("../plugin.js");
//# sourceMappingURL=slash9.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"slash9.d.ts","sourceRoot":"","sources":["../../src/plugins/slash9.js"],"names":[],"mappings":";AAMiB;IACf,gDAAgD;IAChD,qBADY,OAAO,SAAS,EAAE,MAAM,YAAC,EAGpC;IAED;;;OAGG;IACH,aAHW,OAAO,SAAS,EAAE,WAAW,GAC5B,IAAI,CAUf;CACF"}

View File

@@ -1,17 +1,18 @@
export = StarHtml;
declare class StarHtml extends BasePlugin {
/** @param {import('postcss').Result=} result */
constructor(result?: import('postcss').Result | undefined);
constructor(result?: import("postcss").Result | undefined);
/**
* @param {import('postcss').Rule} rule
* @return {void}
*/
detect(rule: import('postcss').Rule): void;
detect(rule: import("postcss").Rule): void;
/**
* @param {import('postcss').Rule} rule
* @return {parser.SyncProcessor<void>}
*/
analyse(rule: import('postcss').Rule): parser.SyncProcessor<void>;
analyse(rule: import("postcss").Rule): parser.SyncProcessor<void>;
}
import BasePlugin = require("../plugin");
import parser = require("postcss-selector-parser");
//# sourceMappingURL=starHtml.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"starHtml.d.ts","sourceRoot":"","sources":["../../src/plugins/starHtml.js"],"names":[],"mappings":";AAUiB;IACf,gDAAgD;IAChD,qBADY,OAAO,SAAS,EAAE,MAAM,YAAC,EAGpC;IAED;;;OAGG;IACH,aAHW,OAAO,SAAS,EAAE,IAAI,GACrB,IAAI,CAOf;IAED;;;OAGG;IACH,cAHW,OAAO,SAAS,EAAE,IAAI,GACrB,MAAM,CAAC,aAAa,CAAC,IAAI,CAAC,CAmBrC;CACF"}

View File

@@ -1,11 +1,12 @@
export = TrailingSlashComma;
declare class TrailingSlashComma extends BasePlugin {
/** @param {import('postcss').Result=} result */
constructor(result?: import('postcss').Result | undefined);
constructor(result?: import("postcss").Result | undefined);
/**
* @param {import('postcss').Rule} rule
* @return {void}
*/
detect(rule: import('postcss').Rule): void;
detect(rule: import("postcss").Rule): void;
}
import BasePlugin = require("../plugin");
//# sourceMappingURL=trailingSlashComma.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"trailingSlashComma.d.ts","sourceRoot":"","sources":["../../src/plugins/trailingSlashComma.js"],"names":[],"mappings":";AAOiB;IACf,gDAAgD;IAChD,qBADY,OAAO,SAAS,EAAE,MAAM,YAAC,EAGpC;IAED;;;OAGG;IACH,aAHW,OAAO,SAAS,EAAE,IAAI,GACrB,IAAI,CAmBf;CACF"}