@alexlit/lint-kit 183.4.0 → 183.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/packages/config-eslint/package.json +4 -4
- package/packages/config-stylelint/node_modules/ansi-regex/index.d.ts +33 -0
- package/packages/config-stylelint/node_modules/ansi-regex/index.js +14 -0
- package/packages/config-stylelint/node_modules/ansi-regex/license +9 -0
- package/packages/config-stylelint/node_modules/ansi-regex/package.json +61 -0
- package/packages/config-stylelint/node_modules/ansi-regex/readme.md +66 -0
- package/packages/config-stylelint/node_modules/file-entry-cache/LICENSE +19 -0
- package/packages/config-stylelint/node_modules/file-entry-cache/README.md +630 -0
- package/packages/config-stylelint/node_modules/file-entry-cache/dist/index.cjs +559 -0
- package/packages/config-stylelint/node_modules/file-entry-cache/dist/index.d.cts +304 -0
- package/packages/config-stylelint/node_modules/file-entry-cache/dist/index.d.ts +304 -0
- package/packages/config-stylelint/node_modules/file-entry-cache/dist/index.js +525 -0
- package/packages/config-stylelint/node_modules/file-entry-cache/package.json +62 -0
- package/packages/config-stylelint/node_modules/flat-cache/LICENSE +19 -0
- package/packages/config-stylelint/node_modules/flat-cache/README.md +235 -0
- package/packages/config-stylelint/node_modules/flat-cache/dist/index.cjs +495 -0
- package/packages/config-stylelint/node_modules/flat-cache/dist/index.d.cts +255 -0
- package/packages/config-stylelint/node_modules/flat-cache/dist/index.d.ts +255 -0
- package/packages/config-stylelint/node_modules/flat-cache/dist/index.js +455 -0
- package/packages/config-stylelint/node_modules/flat-cache/package.json +81 -0
- package/packages/config-stylelint/node_modules/globby/ignore.js +337 -0
- package/packages/config-stylelint/node_modules/globby/index.d.ts +394 -0
- package/packages/config-stylelint/node_modules/globby/index.js +488 -0
- package/packages/config-stylelint/node_modules/globby/license +9 -0
- package/packages/config-stylelint/node_modules/globby/package.json +94 -0
- package/packages/config-stylelint/node_modules/globby/readme.md +388 -0
- package/packages/config-stylelint/node_modules/globby/utilities.js +382 -0
- package/packages/config-stylelint/node_modules/meow/build/dependencies.js +7347 -0
- package/packages/config-stylelint/node_modules/meow/build/index.d.ts +2684 -0
- package/packages/config-stylelint/node_modules/meow/build/index.js +185 -0
- package/packages/config-stylelint/node_modules/meow/build/licenses.md +1254 -0
- package/packages/config-stylelint/node_modules/meow/build/options.js +147 -0
- package/packages/config-stylelint/node_modules/meow/build/parser.js +113 -0
- package/packages/config-stylelint/node_modules/meow/build/utils.js +7 -0
- package/packages/config-stylelint/node_modules/meow/build/validate.js +145 -0
- package/packages/config-stylelint/node_modules/meow/license +9 -0
- package/packages/config-stylelint/node_modules/meow/package.json +103 -0
- package/packages/config-stylelint/node_modules/meow/readme.md +387 -0
- package/packages/config-stylelint/node_modules/postcss-safe-parser/LICENSE +20 -0
- package/packages/config-stylelint/node_modules/postcss-safe-parser/README.md +25 -0
- package/packages/config-stylelint/node_modules/postcss-safe-parser/lib/safe-parse.js +12 -0
- package/packages/config-stylelint/node_modules/postcss-safe-parser/lib/safe-parser.js +100 -0
- package/packages/config-stylelint/node_modules/postcss-safe-parser/package.json +36 -0
- package/packages/config-stylelint/node_modules/slash/index.d.ts +23 -0
- package/packages/config-stylelint/node_modules/slash/index.js +9 -0
- package/packages/config-stylelint/node_modules/slash/license +9 -0
- package/packages/config-stylelint/node_modules/slash/package.json +39 -0
- package/packages/config-stylelint/node_modules/slash/readme.md +36 -0
- package/packages/config-stylelint/node_modules/string-width/index.d.ts +39 -0
- package/packages/config-stylelint/node_modules/string-width/index.js +119 -0
- package/packages/config-stylelint/node_modules/string-width/license +9 -0
- package/packages/config-stylelint/node_modules/string-width/package.json +65 -0
- package/packages/config-stylelint/node_modules/string-width/readme.md +66 -0
- package/packages/config-stylelint/node_modules/strip-ansi/index.d.ts +15 -0
- package/packages/config-stylelint/node_modules/strip-ansi/index.js +19 -0
- package/packages/config-stylelint/node_modules/strip-ansi/license +9 -0
- package/packages/config-stylelint/node_modules/strip-ansi/package.json +59 -0
- package/packages/config-stylelint/node_modules/strip-ansi/readme.md +37 -0
- package/packages/config-stylelint/node_modules/stylelint/LICENSE +20 -0
- package/packages/config-stylelint/node_modules/stylelint/README.md +113 -0
- package/packages/config-stylelint/node_modules/stylelint/bin/stylelint.mjs +7 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/assignDisabledRanges.mjs +483 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/augmentConfig.mjs +586 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/cli.mjs +746 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/constants.mjs +25 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/createPartialStylelintResult.mjs +114 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/createPlugin.mjs +9 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/createStylelint.mjs +37 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/descriptionlessDisables.mjs +51 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/formatters/calcSeverityCounts.mjs +21 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/formatters/compactFormatter.mjs +23 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/formatters/index.mjs +23 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/formatters/jsonFormatter.mjs +10 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/formatters/preprocessWarnings.mjs +74 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/formatters/stringFormatter.mjs +308 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/formatters/tapFormatter.mjs +85 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/formatters/terminalLink.mjs +21 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/formatters/unixFormatter.mjs +32 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/formatters/verboseFormatter.mjs +175 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/getConfigForFile.mjs +110 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/getPostcssResult.mjs +131 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/index.mjs +38 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/invalidScopeDisables.mjs +41 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/isPathIgnored.mjs +48 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/lintPostcssResult.mjs +172 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/lintSource.mjs +135 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/needlessDisables.mjs +91 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/normalizeAllRuleSettings.mjs +29 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/normalizeRuleSettings.mjs +56 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/postcssPlugin.mjs +50 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/prepareReturnValue.mjs +63 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/printConfig.mjs +44 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/reference/atKeywords.mjs +91 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/reference/functions.mjs +100 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/reference/keywords.mjs +663 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/reference/mediaFeatures.mjs +115 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/reference/mediaTypes.mjs +14 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/reference/prefixes.mjs +17 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/reference/properties.mjs +1111 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/reference/selectors.mjs +472 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/reference/units.mjs +82 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/reportDisables.mjs +48 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/reportUnknownRuleNames.mjs +76 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/resolveConfig.mjs +43 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/alpha-value-notation/index.mjs +207 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/annotation-no-unknown/index.mjs +88 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/at-rule-allowed-list/index.mjs +62 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/at-rule-descriptor-no-unknown/index.mjs +108 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/at-rule-descriptor-value-no-unknown/index.mjs +64 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/at-rule-disallowed-list/index.mjs +62 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/at-rule-empty-line-before/index.mjs +178 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/at-rule-no-deprecated/index.mjs +86 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/at-rule-no-unknown/index.mjs +80 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/at-rule-no-vendor-prefix/index.mjs +82 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/at-rule-prelude-no-invalid/index.mjs +76 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/at-rule-property-required-list/index.mjs +92 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/block-no-empty/index.mjs +116 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/block-no-redundant-nested-style-rules/index.mjs +52 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/color-function-alias-notation/index.mjs +87 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/color-function-notation/index.mjs +168 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/color-hex-alpha/index.mjs +75 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/color-hex-length/index.mjs +128 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/color-named/colordUtils.mjs +109 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/color-named/index.mjs +183 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/color-no-hex/index.mjs +69 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/color-no-invalid-hex/index.mjs +68 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/comment-empty-line-before/index.mjs +131 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/comment-no-empty/index.mjs +50 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/comment-pattern/index.mjs +51 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/comment-whitespace-inside/index.mjs +149 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/comment-word-disallowed-list/index.mjs +63 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/container-name-pattern/index.mjs +107 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/custom-media-pattern/index.mjs +61 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/custom-property-empty-line-before/index.mjs +156 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/custom-property-no-missing-var-function/index.mjs +148 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/custom-property-pattern/index.mjs +100 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/declaration-block-no-duplicate-custom-properties/index.mjs +82 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/declaration-block-no-duplicate-properties/index.mjs +301 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/declaration-block-no-redundant-longhand-properties/index.mjs +411 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/declaration-block-no-shorthand-property-overrides/index.mjs +74 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/declaration-block-single-line-max-declarations/index.mjs +62 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/declaration-empty-line-before/index.mjs +160 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/declaration-no-important/index.mjs +51 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/declaration-property-max-values/index.mjs +79 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/declaration-property-unit-allowed-list/index.mjs +108 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/declaration-property-unit-disallowed-list/index.mjs +94 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/declaration-property-value-allowed-list/index.mjs +66 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/declaration-property-value-disallowed-list/index.mjs +66 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/declaration-property-value-keyword-no-deprecated/index.mjs +207 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/declaration-property-value-no-unknown/index.mjs +466 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/display-notation/index.mjs +225 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/font-family-name-quotes/index.mjs +243 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/font-family-no-duplicate-names/index.mjs +122 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/font-family-no-missing-generic-family-keyword/index.mjs +122 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/font-weight-notation/index.mjs +221 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/function-allowed-list/index.mjs +114 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/function-calc-no-unspaced-operator/index.mjs +589 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/function-disallowed-list/index.mjs +73 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/function-linear-gradient-no-nonstandard-direction/index.mjs +145 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/function-name-case/index.mjs +120 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/function-no-unknown/index.mjs +83 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/function-url-no-scheme-relative/index.mjs +67 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/function-url-quotes/index.mjs +230 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/function-url-scheme-allowed-list/index.mjs +70 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/function-url-scheme-disallowed-list/index.mjs +70 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/hue-degree-notation/index.mjs +123 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/import-notation/index.mjs +104 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/index.mjs +180 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/keyframe-block-no-duplicate-selectors/index.mjs +68 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/keyframe-declaration-no-important/index.mjs +54 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/keyframe-selector-notation/index.mjs +202 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/keyframes-name-pattern/index.mjs +63 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/layer-name-pattern/index.mjs +91 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/length-zero-no-unit/index.mjs +221 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/lightness-notation/index.mjs +165 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/max-nesting-depth/index.mjs +195 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/media-feature-name-allowed-list/index.mjs +67 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/media-feature-name-disallowed-list/index.mjs +67 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/media-feature-name-no-unknown/index.mjs +79 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/media-feature-name-no-vendor-prefix/index.mjs +94 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/media-feature-name-unit-allowed-list/index.mjs +110 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/media-feature-name-value-allowed-list/index.mjs +100 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/media-feature-name-value-no-unknown/index.mjs +296 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/media-feature-range-notation/index.mjs +187 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/media-query-no-invalid/index.mjs +193 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/media-type-no-deprecated/index.mjs +82 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/named-grid-areas-no-invalid/index.mjs +117 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/named-grid-areas-no-invalid/utils/findNotContiguousOrRectangular.mjs +57 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/nesting-selector-no-missing-scoping-root/index.mjs +165 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/no-descending-specificity/index.mjs +200 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/no-duplicate-at-import-rules/index.mjs +156 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/no-duplicate-selectors/index.mjs +218 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/no-empty-source/index.mjs +61 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/no-invalid-double-slash-comments/index.mjs +77 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/no-invalid-position-at-import-rule/index.mjs +76 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/no-invalid-position-declaration/index.mjs +92 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/no-irregular-whitespace/index.mjs +236 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/no-unknown-animations/index.mjs +71 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/no-unknown-custom-media/index.mjs +77 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/no-unknown-custom-properties/index.mjs +72 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/number-max-precision/index.mjs +209 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/property-allowed-list/index.mjs +58 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/property-disallowed-list/index.mjs +58 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/property-no-deprecated/index.mjs +143 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/property-no-unknown/index.mjs +126 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/property-no-vendor-prefix/index.mjs +100 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/rule-empty-line-before/index.mjs +156 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/rule-nesting-at-rule-required-list/index.mjs +85 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/rule-selector-property-disallowed-list/index.mjs +119 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-anb-no-unmatchable/index.mjs +121 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-attribute-name-disallowed-list/index.mjs +69 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-attribute-operator-allowed-list/index.mjs +70 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-attribute-operator-disallowed-list/index.mjs +70 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-attribute-quotes/index.mjs +107 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-class-pattern/index.mjs +71 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-combinator-allowed-list/index.mjs +81 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-combinator-disallowed-list/index.mjs +81 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-disallowed-list/index.mjs +115 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-id-pattern/index.mjs +66 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-max-attribute/index.mjs +92 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-max-class/index.mjs +75 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-max-combinators/index.mjs +77 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-max-compound-selectors/index.mjs +123 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-max-id/index.mjs +107 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-max-pseudo-class/index.mjs +85 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-max-specificity/index.mjs +146 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-max-type/index.mjs +219 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-max-universal/index.mjs +95 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-nested-pattern/index.mjs +95 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-no-qualifying-type/index.mjs +323 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-no-vendor-prefix/index.mjs +92 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-not-notation/index.mjs +217 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-pseudo-class-allowed-list/index.mjs +84 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-pseudo-class-disallowed-list/index.mjs +84 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-pseudo-class-no-unknown/index.mjs +179 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-pseudo-element-allowed-list/index.mjs +75 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-pseudo-element-colon-notation/index.mjs +93 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-pseudo-element-disallowed-list/index.mjs +74 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-pseudo-element-no-unknown/index.mjs +91 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-type-case/index.mjs +118 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/selector-type-no-unknown/index.mjs +148 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/shorthand-property-no-redundant-values/index.mjs +359 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/string-no-newline/index.mjs +120 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/syntax-string-no-invalid/index.mjs +80 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/time-min-milliseconds/index.mjs +167 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/unit-allowed-list/index.mjs +116 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/unit-disallowed-list/index.mjs +211 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/unit-no-unknown/index.mjs +207 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/value-keyword-case/index.mjs +253 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/rules/value-no-vendor-prefix/index.mjs +92 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/standalone.mjs +383 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/timing.mjs +134 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/unscopedDisables.mjs +66 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/FileCache.mjs +115 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/addEmptyLineBefore.mjs +21 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/addSemicolonForEditInfo.mjs +35 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/appendRuleName.mjs +13 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/arrayEqual.mjs +14 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/beforeBlockString.mjs +28 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/blockString.mjs +19 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/blurInterpolation.mjs +8 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/cachedImport.mjs +68 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/checkAgainstRule.mjs +71 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/checkInvalidCLIOptions.mjs +105 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/configurationComment.mjs +74 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/containsString.mjs +52 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/createMapWithSet.mjs +19 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/dynamicImport.mjs +13 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/eachDeclarationBlock.mjs +59 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/eachNodeUpToRoot.mjs +22 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/emitWarning.mjs +84 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/errors.mjs +55 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/filterFilePaths.mjs +17 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/findAnimationName.mjs +74 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/findAtRuleContext.mjs +27 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/findFontFamily.mjs +148 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/findMediaFeatureNames.mjs +151 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/findNodeUpToRoot.mjs +25 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/fixEmptyLinesBefore.mjs +26 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/functionArgumentsSearch.mjs +65 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getAtRuleParams.mjs +7 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getDeclarationValue.mjs +9 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getDimension.mjs +62 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getFileIgnorer.mjs +41 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getFormatter.mjs +43 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getFormatterOptionsText.mjs +12 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getImportantPosition.mjs +15 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getLexer.mjs +39 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getModulePath.mjs +35 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getNextNonSharedLineCommentNode.mjs +34 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getPreviousNonSharedLineCommentNode.mjs +36 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getRelativePath.mjs +12 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getRuleSelector.mjs +9 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getSchemeFromUrl.mjs +36 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getSelectorSourceIndex.mjs +12 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getStrippedSelectorSource.mjs +47 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/getStylelintRule.mjs +22 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/hasBlock.mjs +9 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/hasEmptyLine.mjs +13 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/hasInterpolation.mjs +24 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/hasLessInterpolation.mjs +11 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/hasPsvInterpolation.mjs +11 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/hasScssInterpolation.mjs +11 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/hasTplInterpolation.mjs +11 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/hash.mjs +10 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isAfterBlock.mjs +15 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isAfterComment.mjs +15 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isAfterSingleLineComment.mjs +19 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isAfterStandardPropertyDeclaration.mjs +19 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isAutoprefixable.mjs +364 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isBlocklessAtRuleAfterBlocklessAtRule.mjs +21 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isBlocklessAtRuleAfterSameNameBlocklessAtRule.mjs +21 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isContextFunctionalPseudoClass.mjs +24 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isCounterIncrementCustomIdentValue.mjs +19 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isCounterResetCustomIdentValue.mjs +19 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isCustomElement.mjs +34 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isCustomFunction.mjs +9 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isCustomMediaQuery.mjs +8 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isCustomProperty.mjs +8 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isCustomSelector.mjs +9 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isDescriptorDeclaration.mjs +22 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isFirstNested.mjs +83 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isFirstNodeOfRoot.mjs +17 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isHexColor.mjs +9 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isInDocument.mjs +32 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isKeyframeRule.mjs +17 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isKeyframeSelector.mjs +29 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isMathFunction.mjs +11 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isNonNegativeInteger.mjs +6 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isNumbery.mjs +9 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isOnlyWhitespace.mjs +17 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isPathNotFoundError.mjs +9 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isScssVariable.mjs +19 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isSharedLineComment.mjs +53 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isSingleLineString.mjs +10 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isStandardSyntaxAtRule.mjs +32 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isStandardSyntaxColorFunction.mjs +24 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isStandardSyntaxCombinator.mjs +32 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isStandardSyntaxComment.mjs +13 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isStandardSyntaxDeclaration.mjs +57 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isStandardSyntaxFunction.mjs +28 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isStandardSyntaxHexColor.mjs +14 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isStandardSyntaxKeyframesName.mjs +15 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isStandardSyntaxProperty.mjs +32 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isStandardSyntaxRule.mjs +24 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isStandardSyntaxSelector.mjs +56 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isStandardSyntaxTypeSelector.mjs +56 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isStandardSyntaxUrl.mjs +49 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isStandardSyntaxValue.mjs +51 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isUnicodeRangeDescriptor.mjs +24 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isUnicodeSupported.mjs +26 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isUrlFunction.mjs +9 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isValidFontSize.mjs +38 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isValidHex.mjs +11 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isValidIdentifier.mjs +39 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isVarFunction.mjs +9 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isVariable.mjs +9 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/isWhitespace.mjs +9 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/matchesStringOrRegExp.mjs +97 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/mergeSyntaxDefinitions.mjs +137 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/narrowFixRange.mjs +68 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/nodeContextLookup.mjs +41 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/nodeFieldIndices.mjs +119 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/normalizeFilePath.mjs +26 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/normalizeFixMode.mjs +22 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/normalizeSelector.mjs +231 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/optionsMatches.mjs +20 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/optionsMatchesEntry.mjs +29 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/parseCustomMediaQuery.mjs +15 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/parseMediaQuery.mjs +15 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/parseSelector.mjs +19 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/pathExists.mjs +16 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/pluralize.mjs +10 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/putIfAbsent.mjs +20 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/rangesOverlap.mjs +19 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/rawNodeString.mjs +29 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/regexes.mjs +135 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/removeEmptyLinesBefore.mjs +13 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/report.mjs +321 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/reportCommentProblem.mjs +39 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/resolveFilePath.mjs +38 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/resolveNestedSelectorsForRule.mjs +108 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/resolveOptionValue.mjs +30 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/resolveSilent.mjs +144 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/ruleMessages.mjs +18 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/setAtRuleParams.mjs +18 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/setDeclarationValue.mjs +18 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/suppressionsService.mjs +317 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/toPath.mjs +23 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/typeGuards.mjs +90 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/uniteSets.mjs +9 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/validateObjectWithArrayProps.mjs +29 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/validateObjectWithProps.mjs +28 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/validateOptions.mjs +176 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/validateTypes.mjs +148 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/utils/vendor.mjs +43 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/validateDisableSettings.mjs +67 -0
- package/packages/config-stylelint/node_modules/stylelint/lib/writeOutputFile.mjs +15 -0
- package/packages/config-stylelint/node_modules/stylelint/package.json +211 -0
- package/packages/config-stylelint/node_modules/stylelint/types/stylelint/index.d.ts +1594 -0
- package/packages/config-stylelint/node_modules/unicorn-magic/default.d.ts +13 -0
- package/packages/config-stylelint/node_modules/unicorn-magic/default.js +14 -0
- package/packages/config-stylelint/node_modules/unicorn-magic/license +9 -0
- package/packages/config-stylelint/node_modules/unicorn-magic/node.d.ts +125 -0
- package/packages/config-stylelint/node_modules/unicorn-magic/node.js +49 -0
- package/packages/config-stylelint/node_modules/unicorn-magic/package.json +68 -0
- package/packages/config-stylelint/node_modules/unicorn-magic/readme.md +31 -0
- package/packages/config-stylelint/package.json +3 -3
- package/packages/config-stylelint/plugins/color-format.js +2 -2
|
@@ -0,0 +1,255 @@
|
|
|
1
|
+
import { CacheableMemory } from 'cacheable';
|
|
2
|
+
import { Hookified } from 'hookified';
|
|
3
|
+
|
|
4
|
+
type FlatCacheOptions = {
|
|
5
|
+
ttl?: number | string;
|
|
6
|
+
useClone?: boolean;
|
|
7
|
+
lruSize?: number;
|
|
8
|
+
expirationInterval?: number;
|
|
9
|
+
persistInterval?: number;
|
|
10
|
+
cacheDir?: string;
|
|
11
|
+
cacheId?: string;
|
|
12
|
+
deserialize?: (data: string) => any;
|
|
13
|
+
serialize?: (data: any) => string;
|
|
14
|
+
};
|
|
15
|
+
declare enum FlatCacheEvents {
|
|
16
|
+
SAVE = "save",
|
|
17
|
+
LOAD = "load",
|
|
18
|
+
DELETE = "delete",
|
|
19
|
+
CLEAR = "clear",
|
|
20
|
+
DESTROY = "destroy",
|
|
21
|
+
ERROR = "error",
|
|
22
|
+
EXPIRED = "expired"
|
|
23
|
+
}
|
|
24
|
+
declare class FlatCache extends Hookified {
|
|
25
|
+
private readonly _cache;
|
|
26
|
+
private _cacheDir;
|
|
27
|
+
private _cacheId;
|
|
28
|
+
private _persistInterval;
|
|
29
|
+
private _persistTimer;
|
|
30
|
+
private _changesSinceLastSave;
|
|
31
|
+
private readonly _parse;
|
|
32
|
+
private readonly _stringify;
|
|
33
|
+
constructor(options?: FlatCacheOptions);
|
|
34
|
+
/**
|
|
35
|
+
* The cache object
|
|
36
|
+
* @property cache
|
|
37
|
+
* @type {CacheableMemory}
|
|
38
|
+
*/
|
|
39
|
+
get cache(): CacheableMemory;
|
|
40
|
+
/**
|
|
41
|
+
* The cache directory
|
|
42
|
+
* @property cacheDir
|
|
43
|
+
* @type {String}
|
|
44
|
+
* @default '.cache'
|
|
45
|
+
*/
|
|
46
|
+
get cacheDir(): string;
|
|
47
|
+
/**
|
|
48
|
+
* Set the cache directory
|
|
49
|
+
* @property cacheDir
|
|
50
|
+
* @type {String}
|
|
51
|
+
* @default '.cache'
|
|
52
|
+
*/
|
|
53
|
+
set cacheDir(value: string);
|
|
54
|
+
/**
|
|
55
|
+
* The cache id
|
|
56
|
+
* @property cacheId
|
|
57
|
+
* @type {String}
|
|
58
|
+
* @default 'cache1'
|
|
59
|
+
*/
|
|
60
|
+
get cacheId(): string;
|
|
61
|
+
/**
|
|
62
|
+
* Set the cache id
|
|
63
|
+
* @property cacheId
|
|
64
|
+
* @type {String}
|
|
65
|
+
* @default 'cache1'
|
|
66
|
+
*/
|
|
67
|
+
set cacheId(value: string);
|
|
68
|
+
/**
|
|
69
|
+
* The flag to indicate if there are changes since the last save
|
|
70
|
+
* @property changesSinceLastSave
|
|
71
|
+
* @type {Boolean}
|
|
72
|
+
* @default false
|
|
73
|
+
*/
|
|
74
|
+
get changesSinceLastSave(): boolean;
|
|
75
|
+
/**
|
|
76
|
+
* The interval to persist the cache to disk. 0 means no timed persistence
|
|
77
|
+
* @property persistInterval
|
|
78
|
+
* @type {Number}
|
|
79
|
+
* @default 0
|
|
80
|
+
*/
|
|
81
|
+
get persistInterval(): number;
|
|
82
|
+
/**
|
|
83
|
+
* Set the interval to persist the cache to disk. 0 means no timed persistence
|
|
84
|
+
* @property persistInterval
|
|
85
|
+
* @type {Number}
|
|
86
|
+
* @default 0
|
|
87
|
+
*/
|
|
88
|
+
set persistInterval(value: number);
|
|
89
|
+
/**
|
|
90
|
+
* Load a cache identified by the given Id. If the element does not exists, then initialize an empty
|
|
91
|
+
* cache storage. If specified `cacheDir` will be used as the directory to persist the data to. If omitted
|
|
92
|
+
* then the cache module directory `.cacheDir` will be used instead
|
|
93
|
+
*
|
|
94
|
+
* @method load
|
|
95
|
+
* @param cacheId {String} the id of the cache, would also be used as the name of the file cache
|
|
96
|
+
* @param cacheDir {String} directory for the cache entry
|
|
97
|
+
*/
|
|
98
|
+
load(cacheId?: string, cacheDir?: string): void;
|
|
99
|
+
/**
|
|
100
|
+
* Load the cache from the provided file
|
|
101
|
+
* @method loadFile
|
|
102
|
+
* @param {String} pathToFile the path to the file containing the info for the cache
|
|
103
|
+
*/
|
|
104
|
+
loadFile(pathToFile: string): void;
|
|
105
|
+
loadFileStream(pathToFile: string, onProgress: (progress: number, total: number) => void, onEnd: () => void, onError?: (error: Error) => void): void;
|
|
106
|
+
/**
|
|
107
|
+
* Returns the entire persisted object
|
|
108
|
+
* @method all
|
|
109
|
+
* @returns {*}
|
|
110
|
+
*/
|
|
111
|
+
all(): Record<string, any>;
|
|
112
|
+
/**
|
|
113
|
+
* Returns an array with all the items in the cache { key, value, expires }
|
|
114
|
+
* @method items
|
|
115
|
+
* @returns {Array}
|
|
116
|
+
*/
|
|
117
|
+
get items(): Array<{
|
|
118
|
+
key: string;
|
|
119
|
+
value: any;
|
|
120
|
+
expires?: number;
|
|
121
|
+
}>;
|
|
122
|
+
/**
|
|
123
|
+
* Returns the path to the file where the cache is persisted
|
|
124
|
+
* @method cacheFilePath
|
|
125
|
+
* @returns {String}
|
|
126
|
+
*/
|
|
127
|
+
get cacheFilePath(): string;
|
|
128
|
+
/**
|
|
129
|
+
* Returns the path to the cache directory
|
|
130
|
+
* @method cacheDirPath
|
|
131
|
+
* @returns {String}
|
|
132
|
+
*/
|
|
133
|
+
get cacheDirPath(): string;
|
|
134
|
+
/**
|
|
135
|
+
* Returns an array with all the keys in the cache
|
|
136
|
+
* @method keys
|
|
137
|
+
* @returns {Array}
|
|
138
|
+
*/
|
|
139
|
+
keys(): string[];
|
|
140
|
+
/**
|
|
141
|
+
* (Legacy) set key method. This method will be deprecated in the future
|
|
142
|
+
* @method setKey
|
|
143
|
+
* @param key {string} the key to set
|
|
144
|
+
* @param value {object} the value of the key. Could be any object that can be serialized with JSON.stringify
|
|
145
|
+
*/
|
|
146
|
+
setKey(key: string, value: any, ttl?: number | string): void;
|
|
147
|
+
/**
|
|
148
|
+
* Sets a key to a given value
|
|
149
|
+
* @method set
|
|
150
|
+
* @param key {string} the key to set
|
|
151
|
+
* @param value {object} the value of the key. Could be any object that can be serialized with JSON.stringify
|
|
152
|
+
* @param [ttl] {number} the time to live in milliseconds
|
|
153
|
+
*/
|
|
154
|
+
set(key: string, value: any, ttl?: number | string): void;
|
|
155
|
+
/**
|
|
156
|
+
* (Legacy) Remove a given key from the cache. This method will be deprecated in the future
|
|
157
|
+
* @method removeKey
|
|
158
|
+
* @param key {String} the key to remove from the object
|
|
159
|
+
*/
|
|
160
|
+
removeKey(key: string): void;
|
|
161
|
+
/**
|
|
162
|
+
* Remove a given key from the cache
|
|
163
|
+
* @method delete
|
|
164
|
+
* @param key {String} the key to remove from the object
|
|
165
|
+
*/
|
|
166
|
+
delete(key: string): void;
|
|
167
|
+
/**
|
|
168
|
+
* (Legacy) Return the value of the provided key. This method will be deprecated in the future
|
|
169
|
+
* @method getKey<T>
|
|
170
|
+
* @param key {String} the name of the key to retrieve
|
|
171
|
+
* @returns {*} at T the value from the key
|
|
172
|
+
*/
|
|
173
|
+
getKey<T>(key: string): T;
|
|
174
|
+
/**
|
|
175
|
+
* Return the value of the provided key
|
|
176
|
+
* @method get<T>
|
|
177
|
+
* @param key {String} the name of the key to retrieve
|
|
178
|
+
* @returns {*} at T the value from the key
|
|
179
|
+
*/
|
|
180
|
+
get<T>(key: string): T;
|
|
181
|
+
/**
|
|
182
|
+
* Clear the cache and save the state to disk
|
|
183
|
+
* @method clear
|
|
184
|
+
*/
|
|
185
|
+
clear(): void;
|
|
186
|
+
/**
|
|
187
|
+
* Save the state of the cache identified by the docId to disk
|
|
188
|
+
* as a JSON structure
|
|
189
|
+
* @method save
|
|
190
|
+
*/
|
|
191
|
+
save(force?: boolean): void;
|
|
192
|
+
/**
|
|
193
|
+
* Remove the file where the cache is persisted
|
|
194
|
+
* @method removeCacheFile
|
|
195
|
+
* @return {Boolean} true or false if the file was successfully deleted
|
|
196
|
+
*/
|
|
197
|
+
removeCacheFile(): boolean;
|
|
198
|
+
/**
|
|
199
|
+
* Destroy the cache. This will remove the directory, file, and memory cache
|
|
200
|
+
* @method destroy
|
|
201
|
+
* @param [includeCacheDir=false] {Boolean} if true, the cache directory will be removed
|
|
202
|
+
* @return {undefined}
|
|
203
|
+
*/
|
|
204
|
+
destroy(includeCacheDirectory?: boolean): void;
|
|
205
|
+
/**
|
|
206
|
+
* Start the auto persist interval
|
|
207
|
+
* @method startAutoPersist
|
|
208
|
+
*/
|
|
209
|
+
startAutoPersist(): void;
|
|
210
|
+
/**
|
|
211
|
+
* Stop the auto persist interval
|
|
212
|
+
* @method stopAutoPersist
|
|
213
|
+
*/
|
|
214
|
+
stopAutoPersist(): void;
|
|
215
|
+
}
|
|
216
|
+
declare class FlatCacheDefault {
|
|
217
|
+
static create: typeof create;
|
|
218
|
+
static createFromFile: typeof createFromFile;
|
|
219
|
+
static clearCacheById: typeof clearCacheById;
|
|
220
|
+
static clearAll: typeof clearAll;
|
|
221
|
+
}
|
|
222
|
+
/**
|
|
223
|
+
* Load a cache identified by the given Id. If the element does not exists, then initialize an empty
|
|
224
|
+
* cache storage.
|
|
225
|
+
*
|
|
226
|
+
* @method create
|
|
227
|
+
* @param docId {String} the id of the cache, would also be used as the name of the file cache
|
|
228
|
+
* @param cacheDirectory {String} directory for the cache entry
|
|
229
|
+
* @param options {FlatCacheOptions} options for the cache
|
|
230
|
+
* @returns {cache} cache instance
|
|
231
|
+
*/
|
|
232
|
+
declare function create(options?: FlatCacheOptions): FlatCache;
|
|
233
|
+
/**
|
|
234
|
+
* Load a cache from the provided file
|
|
235
|
+
* @method createFromFile
|
|
236
|
+
* @param {String} filePath the path to the file containing the info for the cache
|
|
237
|
+
* @param options {FlatCacheOptions} options for the cache
|
|
238
|
+
* @returns {cache} cache instance
|
|
239
|
+
*/
|
|
240
|
+
declare function createFromFile(filePath: string, options?: FlatCacheOptions): FlatCache;
|
|
241
|
+
/**
|
|
242
|
+
* Clear the cache identified by the given Id. This will only remove the cache from disk.
|
|
243
|
+
* @method clearCacheById
|
|
244
|
+
* @param cacheId {String} the id of the cache
|
|
245
|
+
* @param cacheDirectory {String} directory for the cache entry
|
|
246
|
+
*/
|
|
247
|
+
declare function clearCacheById(cacheId: string, cacheDirectory?: string): void;
|
|
248
|
+
/**
|
|
249
|
+
* Clear the cache directory
|
|
250
|
+
* @method clearAll
|
|
251
|
+
* @param cacheDir {String} directory for the cache entry
|
|
252
|
+
*/
|
|
253
|
+
declare function clearAll(cacheDirectory?: string): void;
|
|
254
|
+
|
|
255
|
+
export { FlatCache, FlatCacheEvents, type FlatCacheOptions, clearAll, clearCacheById, create, createFromFile, FlatCacheDefault as default };
|
|
@@ -0,0 +1,255 @@
|
|
|
1
|
+
import { CacheableMemory } from 'cacheable';
|
|
2
|
+
import { Hookified } from 'hookified';
|
|
3
|
+
|
|
4
|
+
type FlatCacheOptions = {
|
|
5
|
+
ttl?: number | string;
|
|
6
|
+
useClone?: boolean;
|
|
7
|
+
lruSize?: number;
|
|
8
|
+
expirationInterval?: number;
|
|
9
|
+
persistInterval?: number;
|
|
10
|
+
cacheDir?: string;
|
|
11
|
+
cacheId?: string;
|
|
12
|
+
deserialize?: (data: string) => any;
|
|
13
|
+
serialize?: (data: any) => string;
|
|
14
|
+
};
|
|
15
|
+
declare enum FlatCacheEvents {
|
|
16
|
+
SAVE = "save",
|
|
17
|
+
LOAD = "load",
|
|
18
|
+
DELETE = "delete",
|
|
19
|
+
CLEAR = "clear",
|
|
20
|
+
DESTROY = "destroy",
|
|
21
|
+
ERROR = "error",
|
|
22
|
+
EXPIRED = "expired"
|
|
23
|
+
}
|
|
24
|
+
declare class FlatCache extends Hookified {
|
|
25
|
+
private readonly _cache;
|
|
26
|
+
private _cacheDir;
|
|
27
|
+
private _cacheId;
|
|
28
|
+
private _persistInterval;
|
|
29
|
+
private _persistTimer;
|
|
30
|
+
private _changesSinceLastSave;
|
|
31
|
+
private readonly _parse;
|
|
32
|
+
private readonly _stringify;
|
|
33
|
+
constructor(options?: FlatCacheOptions);
|
|
34
|
+
/**
|
|
35
|
+
* The cache object
|
|
36
|
+
* @property cache
|
|
37
|
+
* @type {CacheableMemory}
|
|
38
|
+
*/
|
|
39
|
+
get cache(): CacheableMemory;
|
|
40
|
+
/**
|
|
41
|
+
* The cache directory
|
|
42
|
+
* @property cacheDir
|
|
43
|
+
* @type {String}
|
|
44
|
+
* @default '.cache'
|
|
45
|
+
*/
|
|
46
|
+
get cacheDir(): string;
|
|
47
|
+
/**
|
|
48
|
+
* Set the cache directory
|
|
49
|
+
* @property cacheDir
|
|
50
|
+
* @type {String}
|
|
51
|
+
* @default '.cache'
|
|
52
|
+
*/
|
|
53
|
+
set cacheDir(value: string);
|
|
54
|
+
/**
|
|
55
|
+
* The cache id
|
|
56
|
+
* @property cacheId
|
|
57
|
+
* @type {String}
|
|
58
|
+
* @default 'cache1'
|
|
59
|
+
*/
|
|
60
|
+
get cacheId(): string;
|
|
61
|
+
/**
|
|
62
|
+
* Set the cache id
|
|
63
|
+
* @property cacheId
|
|
64
|
+
* @type {String}
|
|
65
|
+
* @default 'cache1'
|
|
66
|
+
*/
|
|
67
|
+
set cacheId(value: string);
|
|
68
|
+
/**
|
|
69
|
+
* The flag to indicate if there are changes since the last save
|
|
70
|
+
* @property changesSinceLastSave
|
|
71
|
+
* @type {Boolean}
|
|
72
|
+
* @default false
|
|
73
|
+
*/
|
|
74
|
+
get changesSinceLastSave(): boolean;
|
|
75
|
+
/**
|
|
76
|
+
* The interval to persist the cache to disk. 0 means no timed persistence
|
|
77
|
+
* @property persistInterval
|
|
78
|
+
* @type {Number}
|
|
79
|
+
* @default 0
|
|
80
|
+
*/
|
|
81
|
+
get persistInterval(): number;
|
|
82
|
+
/**
|
|
83
|
+
* Set the interval to persist the cache to disk. 0 means no timed persistence
|
|
84
|
+
* @property persistInterval
|
|
85
|
+
* @type {Number}
|
|
86
|
+
* @default 0
|
|
87
|
+
*/
|
|
88
|
+
set persistInterval(value: number);
|
|
89
|
+
/**
|
|
90
|
+
* Load a cache identified by the given Id. If the element does not exists, then initialize an empty
|
|
91
|
+
* cache storage. If specified `cacheDir` will be used as the directory to persist the data to. If omitted
|
|
92
|
+
* then the cache module directory `.cacheDir` will be used instead
|
|
93
|
+
*
|
|
94
|
+
* @method load
|
|
95
|
+
* @param cacheId {String} the id of the cache, would also be used as the name of the file cache
|
|
96
|
+
* @param cacheDir {String} directory for the cache entry
|
|
97
|
+
*/
|
|
98
|
+
load(cacheId?: string, cacheDir?: string): void;
|
|
99
|
+
/**
|
|
100
|
+
* Load the cache from the provided file
|
|
101
|
+
* @method loadFile
|
|
102
|
+
* @param {String} pathToFile the path to the file containing the info for the cache
|
|
103
|
+
*/
|
|
104
|
+
loadFile(pathToFile: string): void;
|
|
105
|
+
loadFileStream(pathToFile: string, onProgress: (progress: number, total: number) => void, onEnd: () => void, onError?: (error: Error) => void): void;
|
|
106
|
+
/**
|
|
107
|
+
* Returns the entire persisted object
|
|
108
|
+
* @method all
|
|
109
|
+
* @returns {*}
|
|
110
|
+
*/
|
|
111
|
+
all(): Record<string, any>;
|
|
112
|
+
/**
|
|
113
|
+
* Returns an array with all the items in the cache { key, value, expires }
|
|
114
|
+
* @method items
|
|
115
|
+
* @returns {Array}
|
|
116
|
+
*/
|
|
117
|
+
get items(): Array<{
|
|
118
|
+
key: string;
|
|
119
|
+
value: any;
|
|
120
|
+
expires?: number;
|
|
121
|
+
}>;
|
|
122
|
+
/**
|
|
123
|
+
* Returns the path to the file where the cache is persisted
|
|
124
|
+
* @method cacheFilePath
|
|
125
|
+
* @returns {String}
|
|
126
|
+
*/
|
|
127
|
+
get cacheFilePath(): string;
|
|
128
|
+
/**
|
|
129
|
+
* Returns the path to the cache directory
|
|
130
|
+
* @method cacheDirPath
|
|
131
|
+
* @returns {String}
|
|
132
|
+
*/
|
|
133
|
+
get cacheDirPath(): string;
|
|
134
|
+
/**
|
|
135
|
+
* Returns an array with all the keys in the cache
|
|
136
|
+
* @method keys
|
|
137
|
+
* @returns {Array}
|
|
138
|
+
*/
|
|
139
|
+
keys(): string[];
|
|
140
|
+
/**
|
|
141
|
+
* (Legacy) set key method. This method will be deprecated in the future
|
|
142
|
+
* @method setKey
|
|
143
|
+
* @param key {string} the key to set
|
|
144
|
+
* @param value {object} the value of the key. Could be any object that can be serialized with JSON.stringify
|
|
145
|
+
*/
|
|
146
|
+
setKey(key: string, value: any, ttl?: number | string): void;
|
|
147
|
+
/**
|
|
148
|
+
* Sets a key to a given value
|
|
149
|
+
* @method set
|
|
150
|
+
* @param key {string} the key to set
|
|
151
|
+
* @param value {object} the value of the key. Could be any object that can be serialized with JSON.stringify
|
|
152
|
+
* @param [ttl] {number} the time to live in milliseconds
|
|
153
|
+
*/
|
|
154
|
+
set(key: string, value: any, ttl?: number | string): void;
|
|
155
|
+
/**
|
|
156
|
+
* (Legacy) Remove a given key from the cache. This method will be deprecated in the future
|
|
157
|
+
* @method removeKey
|
|
158
|
+
* @param key {String} the key to remove from the object
|
|
159
|
+
*/
|
|
160
|
+
removeKey(key: string): void;
|
|
161
|
+
/**
|
|
162
|
+
* Remove a given key from the cache
|
|
163
|
+
* @method delete
|
|
164
|
+
* @param key {String} the key to remove from the object
|
|
165
|
+
*/
|
|
166
|
+
delete(key: string): void;
|
|
167
|
+
/**
|
|
168
|
+
* (Legacy) Return the value of the provided key. This method will be deprecated in the future
|
|
169
|
+
* @method getKey<T>
|
|
170
|
+
* @param key {String} the name of the key to retrieve
|
|
171
|
+
* @returns {*} at T the value from the key
|
|
172
|
+
*/
|
|
173
|
+
getKey<T>(key: string): T;
|
|
174
|
+
/**
|
|
175
|
+
* Return the value of the provided key
|
|
176
|
+
* @method get<T>
|
|
177
|
+
* @param key {String} the name of the key to retrieve
|
|
178
|
+
* @returns {*} at T the value from the key
|
|
179
|
+
*/
|
|
180
|
+
get<T>(key: string): T;
|
|
181
|
+
/**
|
|
182
|
+
* Clear the cache and save the state to disk
|
|
183
|
+
* @method clear
|
|
184
|
+
*/
|
|
185
|
+
clear(): void;
|
|
186
|
+
/**
|
|
187
|
+
* Save the state of the cache identified by the docId to disk
|
|
188
|
+
* as a JSON structure
|
|
189
|
+
* @method save
|
|
190
|
+
*/
|
|
191
|
+
save(force?: boolean): void;
|
|
192
|
+
/**
|
|
193
|
+
* Remove the file where the cache is persisted
|
|
194
|
+
* @method removeCacheFile
|
|
195
|
+
* @return {Boolean} true or false if the file was successfully deleted
|
|
196
|
+
*/
|
|
197
|
+
removeCacheFile(): boolean;
|
|
198
|
+
/**
|
|
199
|
+
* Destroy the cache. This will remove the directory, file, and memory cache
|
|
200
|
+
* @method destroy
|
|
201
|
+
* @param [includeCacheDir=false] {Boolean} if true, the cache directory will be removed
|
|
202
|
+
* @return {undefined}
|
|
203
|
+
*/
|
|
204
|
+
destroy(includeCacheDirectory?: boolean): void;
|
|
205
|
+
/**
|
|
206
|
+
* Start the auto persist interval
|
|
207
|
+
* @method startAutoPersist
|
|
208
|
+
*/
|
|
209
|
+
startAutoPersist(): void;
|
|
210
|
+
/**
|
|
211
|
+
* Stop the auto persist interval
|
|
212
|
+
* @method stopAutoPersist
|
|
213
|
+
*/
|
|
214
|
+
stopAutoPersist(): void;
|
|
215
|
+
}
|
|
216
|
+
declare class FlatCacheDefault {
|
|
217
|
+
static create: typeof create;
|
|
218
|
+
static createFromFile: typeof createFromFile;
|
|
219
|
+
static clearCacheById: typeof clearCacheById;
|
|
220
|
+
static clearAll: typeof clearAll;
|
|
221
|
+
}
|
|
222
|
+
/**
|
|
223
|
+
* Load a cache identified by the given Id. If the element does not exists, then initialize an empty
|
|
224
|
+
* cache storage.
|
|
225
|
+
*
|
|
226
|
+
* @method create
|
|
227
|
+
* @param docId {String} the id of the cache, would also be used as the name of the file cache
|
|
228
|
+
* @param cacheDirectory {String} directory for the cache entry
|
|
229
|
+
* @param options {FlatCacheOptions} options for the cache
|
|
230
|
+
* @returns {cache} cache instance
|
|
231
|
+
*/
|
|
232
|
+
declare function create(options?: FlatCacheOptions): FlatCache;
|
|
233
|
+
/**
|
|
234
|
+
* Load a cache from the provided file
|
|
235
|
+
* @method createFromFile
|
|
236
|
+
* @param {String} filePath the path to the file containing the info for the cache
|
|
237
|
+
* @param options {FlatCacheOptions} options for the cache
|
|
238
|
+
* @returns {cache} cache instance
|
|
239
|
+
*/
|
|
240
|
+
declare function createFromFile(filePath: string, options?: FlatCacheOptions): FlatCache;
|
|
241
|
+
/**
|
|
242
|
+
* Clear the cache identified by the given Id. This will only remove the cache from disk.
|
|
243
|
+
* @method clearCacheById
|
|
244
|
+
* @param cacheId {String} the id of the cache
|
|
245
|
+
* @param cacheDirectory {String} directory for the cache entry
|
|
246
|
+
*/
|
|
247
|
+
declare function clearCacheById(cacheId: string, cacheDirectory?: string): void;
|
|
248
|
+
/**
|
|
249
|
+
* Clear the cache directory
|
|
250
|
+
* @method clearAll
|
|
251
|
+
* @param cacheDir {String} directory for the cache entry
|
|
252
|
+
*/
|
|
253
|
+
declare function clearAll(cacheDirectory?: string): void;
|
|
254
|
+
|
|
255
|
+
export { FlatCache, FlatCacheEvents, type FlatCacheOptions, clearAll, clearCacheById, create, createFromFile, FlatCacheDefault as default };
|