@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,525 @@
|
|
|
1
|
+
// src/index.ts
|
|
2
|
+
import crypto from "crypto";
|
|
3
|
+
import fs from "fs";
|
|
4
|
+
import path from "path";
|
|
5
|
+
import {
|
|
6
|
+
createFromFile as createFlatCacheFile,
|
|
7
|
+
FlatCache
|
|
8
|
+
} from "flat-cache";
|
|
9
|
+
function createFromFile(filePath, options) {
|
|
10
|
+
const fname = path.basename(filePath);
|
|
11
|
+
const directory = path.dirname(filePath);
|
|
12
|
+
return create(fname, directory, options);
|
|
13
|
+
}
|
|
14
|
+
function create(cacheId, cacheDirectory, options) {
|
|
15
|
+
const opts = {
|
|
16
|
+
...options,
|
|
17
|
+
cache: {
|
|
18
|
+
cacheId,
|
|
19
|
+
cacheDir: cacheDirectory
|
|
20
|
+
}
|
|
21
|
+
};
|
|
22
|
+
const fileEntryCache = new FileEntryCache(opts);
|
|
23
|
+
if (cacheDirectory) {
|
|
24
|
+
const cachePath = `${cacheDirectory}/${cacheId}`;
|
|
25
|
+
if (fs.existsSync(cachePath)) {
|
|
26
|
+
fileEntryCache.cache = createFlatCacheFile(cachePath, opts.cache);
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
return fileEntryCache;
|
|
30
|
+
}
|
|
31
|
+
var FileEntryDefault = class {
|
|
32
|
+
static create = create;
|
|
33
|
+
static createFromFile = createFromFile;
|
|
34
|
+
};
|
|
35
|
+
var FileEntryCache = class {
|
|
36
|
+
_cache = new FlatCache({ useClone: false });
|
|
37
|
+
_useCheckSum = false;
|
|
38
|
+
_hashAlgorithm = "md5";
|
|
39
|
+
_cwd = process.cwd();
|
|
40
|
+
_restrictAccessToCwd = false;
|
|
41
|
+
_logger;
|
|
42
|
+
_useAbsolutePathAsKey = false;
|
|
43
|
+
_useModifiedTime = true;
|
|
44
|
+
/**
|
|
45
|
+
* Create a new FileEntryCache instance
|
|
46
|
+
* @param options - The options for the FileEntryCache (all properties are optional with defaults)
|
|
47
|
+
*/
|
|
48
|
+
constructor(options) {
|
|
49
|
+
if (options?.cache) {
|
|
50
|
+
this._cache = new FlatCache(options.cache);
|
|
51
|
+
}
|
|
52
|
+
if (options?.useCheckSum) {
|
|
53
|
+
this._useCheckSum = options.useCheckSum;
|
|
54
|
+
}
|
|
55
|
+
if (options?.hashAlgorithm) {
|
|
56
|
+
this._hashAlgorithm = options.hashAlgorithm;
|
|
57
|
+
}
|
|
58
|
+
if (options?.cwd) {
|
|
59
|
+
this._cwd = options.cwd;
|
|
60
|
+
}
|
|
61
|
+
if (options?.useModifiedTime !== void 0) {
|
|
62
|
+
this._useModifiedTime = options.useModifiedTime;
|
|
63
|
+
}
|
|
64
|
+
if (options?.restrictAccessToCwd !== void 0) {
|
|
65
|
+
this._restrictAccessToCwd = options.restrictAccessToCwd;
|
|
66
|
+
}
|
|
67
|
+
if (options?.useAbsolutePathAsKey !== void 0) {
|
|
68
|
+
this._useAbsolutePathAsKey = options.useAbsolutePathAsKey;
|
|
69
|
+
}
|
|
70
|
+
if (options?.logger) {
|
|
71
|
+
this._logger = options.logger;
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
/**
|
|
75
|
+
* Get the cache
|
|
76
|
+
* @returns {FlatCache} The cache
|
|
77
|
+
*/
|
|
78
|
+
get cache() {
|
|
79
|
+
return this._cache;
|
|
80
|
+
}
|
|
81
|
+
/**
|
|
82
|
+
* Set the cache
|
|
83
|
+
* @param {FlatCache} cache - The cache to set
|
|
84
|
+
*/
|
|
85
|
+
set cache(cache) {
|
|
86
|
+
this._cache = cache;
|
|
87
|
+
}
|
|
88
|
+
/**
|
|
89
|
+
* Get the logger
|
|
90
|
+
* @returns {ILogger | undefined} The logger instance
|
|
91
|
+
*/
|
|
92
|
+
get logger() {
|
|
93
|
+
return this._logger;
|
|
94
|
+
}
|
|
95
|
+
/**
|
|
96
|
+
* Set the logger
|
|
97
|
+
* @param {ILogger | undefined} logger - The logger to set
|
|
98
|
+
*/
|
|
99
|
+
set logger(logger) {
|
|
100
|
+
this._logger = logger;
|
|
101
|
+
}
|
|
102
|
+
/**
|
|
103
|
+
* Use the hash to check if the file has changed
|
|
104
|
+
* @returns {boolean} if the hash is used to check if the file has changed (default: false)
|
|
105
|
+
*/
|
|
106
|
+
get useCheckSum() {
|
|
107
|
+
return this._useCheckSum;
|
|
108
|
+
}
|
|
109
|
+
/**
|
|
110
|
+
* Set the useCheckSum value
|
|
111
|
+
* @param {boolean} value - The value to set
|
|
112
|
+
*/
|
|
113
|
+
set useCheckSum(value) {
|
|
114
|
+
this._useCheckSum = value;
|
|
115
|
+
}
|
|
116
|
+
/**
|
|
117
|
+
* Get the hash algorithm
|
|
118
|
+
* @returns {string} The hash algorithm (default: 'md5')
|
|
119
|
+
*/
|
|
120
|
+
get hashAlgorithm() {
|
|
121
|
+
return this._hashAlgorithm;
|
|
122
|
+
}
|
|
123
|
+
/**
|
|
124
|
+
* Set the hash algorithm
|
|
125
|
+
* @param {string} value - The value to set
|
|
126
|
+
*/
|
|
127
|
+
set hashAlgorithm(value) {
|
|
128
|
+
this._hashAlgorithm = value;
|
|
129
|
+
}
|
|
130
|
+
/**
|
|
131
|
+
* Get the current working directory
|
|
132
|
+
* @returns {string} The current working directory (default: process.cwd())
|
|
133
|
+
*/
|
|
134
|
+
get cwd() {
|
|
135
|
+
return this._cwd;
|
|
136
|
+
}
|
|
137
|
+
/**
|
|
138
|
+
* Set the current working directory
|
|
139
|
+
* @param {string} value - The value to set
|
|
140
|
+
*/
|
|
141
|
+
set cwd(value) {
|
|
142
|
+
this._cwd = value;
|
|
143
|
+
}
|
|
144
|
+
/**
|
|
145
|
+
* Get whether to use modified time for change detection
|
|
146
|
+
* @returns {boolean} Whether modified time (mtime) is used for change detection (default: true)
|
|
147
|
+
*/
|
|
148
|
+
get useModifiedTime() {
|
|
149
|
+
return this._useModifiedTime;
|
|
150
|
+
}
|
|
151
|
+
/**
|
|
152
|
+
* Set whether to use modified time for change detection
|
|
153
|
+
* @param {boolean} value - The value to set
|
|
154
|
+
*/
|
|
155
|
+
set useModifiedTime(value) {
|
|
156
|
+
this._useModifiedTime = value;
|
|
157
|
+
}
|
|
158
|
+
/**
|
|
159
|
+
* Get whether to restrict paths to cwd boundaries
|
|
160
|
+
* @returns {boolean} Whether strict path checking is enabled (default: true)
|
|
161
|
+
*/
|
|
162
|
+
get restrictAccessToCwd() {
|
|
163
|
+
return this._restrictAccessToCwd;
|
|
164
|
+
}
|
|
165
|
+
/**
|
|
166
|
+
* Set whether to restrict paths to cwd boundaries
|
|
167
|
+
* @param {boolean} value - The value to set
|
|
168
|
+
*/
|
|
169
|
+
set restrictAccessToCwd(value) {
|
|
170
|
+
this._restrictAccessToCwd = value;
|
|
171
|
+
}
|
|
172
|
+
/**
|
|
173
|
+
* Get whether to use absolute path as cache key
|
|
174
|
+
* @returns {boolean} Whether cache keys use absolute paths (default: false)
|
|
175
|
+
*/
|
|
176
|
+
get useAbsolutePathAsKey() {
|
|
177
|
+
return this._useAbsolutePathAsKey;
|
|
178
|
+
}
|
|
179
|
+
/**
|
|
180
|
+
* Set whether to use absolute path as cache key
|
|
181
|
+
* @param {boolean} value - The value to set
|
|
182
|
+
*/
|
|
183
|
+
set useAbsolutePathAsKey(value) {
|
|
184
|
+
this._useAbsolutePathAsKey = value;
|
|
185
|
+
}
|
|
186
|
+
/**
|
|
187
|
+
* Given a buffer, calculate md5 hash of its content.
|
|
188
|
+
* @method getHash
|
|
189
|
+
* @param {Buffer} buffer buffer to calculate hash on
|
|
190
|
+
* @return {String} content hash digest
|
|
191
|
+
*/
|
|
192
|
+
getHash(buffer) {
|
|
193
|
+
return crypto.createHash(this._hashAlgorithm).update(buffer).digest("hex");
|
|
194
|
+
}
|
|
195
|
+
/**
|
|
196
|
+
* Create the key for the file path used for caching.
|
|
197
|
+
* @method createFileKey
|
|
198
|
+
* @param {String} filePath
|
|
199
|
+
* @return {String}
|
|
200
|
+
*/
|
|
201
|
+
createFileKey(filePath) {
|
|
202
|
+
let result = filePath;
|
|
203
|
+
if (this._useAbsolutePathAsKey && this.isRelativePath(filePath)) {
|
|
204
|
+
result = this.getAbsolutePathWithCwd(filePath, this._cwd);
|
|
205
|
+
}
|
|
206
|
+
return result;
|
|
207
|
+
}
|
|
208
|
+
/**
|
|
209
|
+
* Check if the file path is a relative path
|
|
210
|
+
* @method isRelativePath
|
|
211
|
+
* @param filePath - The file path to check
|
|
212
|
+
* @returns {boolean} if the file path is a relative path, false otherwise
|
|
213
|
+
*/
|
|
214
|
+
isRelativePath(filePath) {
|
|
215
|
+
return !path.isAbsolute(filePath);
|
|
216
|
+
}
|
|
217
|
+
/**
|
|
218
|
+
* Delete the cache file from the disk
|
|
219
|
+
* @method deleteCacheFile
|
|
220
|
+
* @return {boolean} true if the file was deleted, false otherwise
|
|
221
|
+
*/
|
|
222
|
+
deleteCacheFile() {
|
|
223
|
+
return this._cache.removeCacheFile();
|
|
224
|
+
}
|
|
225
|
+
/**
|
|
226
|
+
* Remove the cache from the file and clear the memory cache
|
|
227
|
+
* @method destroy
|
|
228
|
+
*/
|
|
229
|
+
destroy() {
|
|
230
|
+
this._cache.destroy();
|
|
231
|
+
}
|
|
232
|
+
/**
|
|
233
|
+
* Remove and Entry From the Cache
|
|
234
|
+
* @method removeEntry
|
|
235
|
+
* @param filePath - The file path to remove from the cache
|
|
236
|
+
*/
|
|
237
|
+
removeEntry(filePath) {
|
|
238
|
+
const key = this.createFileKey(filePath);
|
|
239
|
+
this._cache.removeKey(key);
|
|
240
|
+
}
|
|
241
|
+
/**
|
|
242
|
+
* Reconcile the cache
|
|
243
|
+
* @method reconcile
|
|
244
|
+
*/
|
|
245
|
+
reconcile() {
|
|
246
|
+
const { items } = this._cache;
|
|
247
|
+
for (const item of items) {
|
|
248
|
+
const fileDescriptor = this.getFileDescriptor(item.key);
|
|
249
|
+
if (fileDescriptor.notFound) {
|
|
250
|
+
this._cache.removeKey(item.key);
|
|
251
|
+
}
|
|
252
|
+
}
|
|
253
|
+
this._cache.save();
|
|
254
|
+
}
|
|
255
|
+
/**
|
|
256
|
+
* Check if the file has changed
|
|
257
|
+
* @method hasFileChanged
|
|
258
|
+
* @param filePath - The file path to check
|
|
259
|
+
* @returns {boolean} if the file has changed, false otherwise
|
|
260
|
+
*/
|
|
261
|
+
hasFileChanged(filePath) {
|
|
262
|
+
let result = false;
|
|
263
|
+
const fileDescriptor = this.getFileDescriptor(filePath);
|
|
264
|
+
if ((!fileDescriptor.err || !fileDescriptor.notFound) && fileDescriptor.changed) {
|
|
265
|
+
result = true;
|
|
266
|
+
}
|
|
267
|
+
return result;
|
|
268
|
+
}
|
|
269
|
+
/**
|
|
270
|
+
* Get the file descriptor for the file path
|
|
271
|
+
* @method getFileDescriptor
|
|
272
|
+
* @param filePath - The file path to get the file descriptor for
|
|
273
|
+
* @param options - The options for getting the file descriptor
|
|
274
|
+
* @returns The file descriptor
|
|
275
|
+
*/
|
|
276
|
+
getFileDescriptor(filePath, options) {
|
|
277
|
+
this._logger?.debug({ filePath, options }, "Getting file descriptor");
|
|
278
|
+
let fstat;
|
|
279
|
+
const result = {
|
|
280
|
+
key: this.createFileKey(filePath),
|
|
281
|
+
changed: false,
|
|
282
|
+
meta: {}
|
|
283
|
+
};
|
|
284
|
+
this._logger?.trace({ key: result.key }, "Created file key");
|
|
285
|
+
const metaCache = this._cache.getKey(result.key);
|
|
286
|
+
if (metaCache) {
|
|
287
|
+
this._logger?.trace({ metaCache }, "Found cached meta");
|
|
288
|
+
} else {
|
|
289
|
+
this._logger?.trace("No cached meta found");
|
|
290
|
+
}
|
|
291
|
+
result.meta = metaCache ? { ...metaCache } : {};
|
|
292
|
+
const absolutePath = this.getAbsolutePath(filePath);
|
|
293
|
+
this._logger?.trace({ absolutePath }, "Resolved absolute path");
|
|
294
|
+
const useCheckSumValue = options?.useCheckSum ?? this._useCheckSum;
|
|
295
|
+
this._logger?.debug(
|
|
296
|
+
{ useCheckSum: useCheckSumValue },
|
|
297
|
+
"Using checksum setting"
|
|
298
|
+
);
|
|
299
|
+
const useModifiedTimeValue = options?.useModifiedTime ?? this.useModifiedTime;
|
|
300
|
+
this._logger?.debug(
|
|
301
|
+
{ useModifiedTime: useModifiedTimeValue },
|
|
302
|
+
"Using modified time (mtime) setting"
|
|
303
|
+
);
|
|
304
|
+
try {
|
|
305
|
+
fstat = fs.statSync(absolutePath);
|
|
306
|
+
result.meta.size = fstat.size;
|
|
307
|
+
result.meta.mtime = fstat.mtime.getTime();
|
|
308
|
+
this._logger?.trace(
|
|
309
|
+
{ size: result.meta.size, mtime: result.meta.mtime },
|
|
310
|
+
"Read file stats"
|
|
311
|
+
);
|
|
312
|
+
if (useCheckSumValue) {
|
|
313
|
+
const buffer = fs.readFileSync(absolutePath);
|
|
314
|
+
result.meta.hash = this.getHash(buffer);
|
|
315
|
+
this._logger?.trace({ hash: result.meta.hash }, "Calculated file hash");
|
|
316
|
+
}
|
|
317
|
+
} catch (error) {
|
|
318
|
+
this._logger?.error({ filePath, error }, "Error reading file");
|
|
319
|
+
this.removeEntry(filePath);
|
|
320
|
+
let notFound = false;
|
|
321
|
+
if (error.message.includes("ENOENT")) {
|
|
322
|
+
notFound = true;
|
|
323
|
+
this._logger?.debug({ filePath }, "File not found");
|
|
324
|
+
}
|
|
325
|
+
return {
|
|
326
|
+
key: result.key,
|
|
327
|
+
err: error,
|
|
328
|
+
notFound,
|
|
329
|
+
meta: {}
|
|
330
|
+
};
|
|
331
|
+
}
|
|
332
|
+
if (!metaCache) {
|
|
333
|
+
result.changed = true;
|
|
334
|
+
this._cache.setKey(result.key, result.meta);
|
|
335
|
+
this._logger?.debug({ filePath }, "File not in cache, marked as changed");
|
|
336
|
+
return result;
|
|
337
|
+
}
|
|
338
|
+
if (useModifiedTimeValue && metaCache?.mtime !== result.meta?.mtime) {
|
|
339
|
+
result.changed = true;
|
|
340
|
+
this._logger?.debug(
|
|
341
|
+
{ filePath, oldMtime: metaCache.mtime, newMtime: result.meta.mtime },
|
|
342
|
+
"File changed: mtime differs"
|
|
343
|
+
);
|
|
344
|
+
}
|
|
345
|
+
if (metaCache?.size !== result.meta?.size) {
|
|
346
|
+
result.changed = true;
|
|
347
|
+
this._logger?.debug(
|
|
348
|
+
{ filePath, oldSize: metaCache.size, newSize: result.meta.size },
|
|
349
|
+
"File changed: size differs"
|
|
350
|
+
);
|
|
351
|
+
}
|
|
352
|
+
if (useCheckSumValue && metaCache?.hash !== result.meta?.hash) {
|
|
353
|
+
result.changed = true;
|
|
354
|
+
this._logger?.debug(
|
|
355
|
+
{ filePath, oldHash: metaCache.hash, newHash: result.meta.hash },
|
|
356
|
+
"File changed: hash differs"
|
|
357
|
+
);
|
|
358
|
+
}
|
|
359
|
+
this._cache.setKey(result.key, result.meta);
|
|
360
|
+
if (result.changed) {
|
|
361
|
+
this._logger?.info({ filePath }, "File has changed");
|
|
362
|
+
} else {
|
|
363
|
+
this._logger?.debug({ filePath }, "File unchanged");
|
|
364
|
+
}
|
|
365
|
+
return result;
|
|
366
|
+
}
|
|
367
|
+
/**
|
|
368
|
+
* Get the file descriptors for the files
|
|
369
|
+
* @method normalizeEntries
|
|
370
|
+
* @param files?: string[] - The files to get the file descriptors for
|
|
371
|
+
* @returns The file descriptors
|
|
372
|
+
*/
|
|
373
|
+
normalizeEntries(files) {
|
|
374
|
+
const result = [];
|
|
375
|
+
if (files) {
|
|
376
|
+
for (const file of files) {
|
|
377
|
+
const fileDescriptor = this.getFileDescriptor(file);
|
|
378
|
+
result.push(fileDescriptor);
|
|
379
|
+
}
|
|
380
|
+
return result;
|
|
381
|
+
}
|
|
382
|
+
const keys = this.cache.keys();
|
|
383
|
+
for (const key of keys) {
|
|
384
|
+
const fileDescriptor = this.getFileDescriptor(key);
|
|
385
|
+
if (!fileDescriptor.notFound && !fileDescriptor.err) {
|
|
386
|
+
result.push(fileDescriptor);
|
|
387
|
+
}
|
|
388
|
+
}
|
|
389
|
+
return result;
|
|
390
|
+
}
|
|
391
|
+
/**
|
|
392
|
+
* Analyze the files
|
|
393
|
+
* @method analyzeFiles
|
|
394
|
+
* @param files - The files to analyze
|
|
395
|
+
* @returns {AnalyzedFiles} The analysis of the files
|
|
396
|
+
*/
|
|
397
|
+
analyzeFiles(files) {
|
|
398
|
+
const result = {
|
|
399
|
+
changedFiles: [],
|
|
400
|
+
notFoundFiles: [],
|
|
401
|
+
notChangedFiles: []
|
|
402
|
+
};
|
|
403
|
+
const fileDescriptors = this.normalizeEntries(files);
|
|
404
|
+
for (const fileDescriptor of fileDescriptors) {
|
|
405
|
+
if (fileDescriptor.notFound) {
|
|
406
|
+
result.notFoundFiles.push(fileDescriptor.key);
|
|
407
|
+
} else if (fileDescriptor.changed) {
|
|
408
|
+
result.changedFiles.push(fileDescriptor.key);
|
|
409
|
+
} else {
|
|
410
|
+
result.notChangedFiles.push(fileDescriptor.key);
|
|
411
|
+
}
|
|
412
|
+
}
|
|
413
|
+
return result;
|
|
414
|
+
}
|
|
415
|
+
/**
|
|
416
|
+
* Get the updated files
|
|
417
|
+
* @method getUpdatedFiles
|
|
418
|
+
* @param files - The files to get the updated files for
|
|
419
|
+
* @returns {string[]} The updated files
|
|
420
|
+
*/
|
|
421
|
+
getUpdatedFiles(files) {
|
|
422
|
+
const result = [];
|
|
423
|
+
const fileDescriptors = this.normalizeEntries(files);
|
|
424
|
+
for (const fileDescriptor of fileDescriptors) {
|
|
425
|
+
if (fileDescriptor.changed) {
|
|
426
|
+
result.push(fileDescriptor.key);
|
|
427
|
+
}
|
|
428
|
+
}
|
|
429
|
+
return result;
|
|
430
|
+
}
|
|
431
|
+
/**
|
|
432
|
+
* Get the file descriptors by path prefix
|
|
433
|
+
* @method getFileDescriptorsByPath
|
|
434
|
+
* @param filePath - the path prefix to match
|
|
435
|
+
* @returns {FileDescriptor[]} The file descriptors
|
|
436
|
+
*/
|
|
437
|
+
getFileDescriptorsByPath(filePath) {
|
|
438
|
+
const result = [];
|
|
439
|
+
const keys = this._cache.keys();
|
|
440
|
+
for (const key of keys) {
|
|
441
|
+
if (key.startsWith(filePath)) {
|
|
442
|
+
const fileDescriptor = this.getFileDescriptor(key);
|
|
443
|
+
result.push(fileDescriptor);
|
|
444
|
+
}
|
|
445
|
+
}
|
|
446
|
+
return result;
|
|
447
|
+
}
|
|
448
|
+
/**
|
|
449
|
+
* Get the Absolute Path. If it is already absolute it will return the path as is.
|
|
450
|
+
* When restrictAccessToCwd is enabled, ensures the resolved path stays within cwd boundaries.
|
|
451
|
+
* @method getAbsolutePath
|
|
452
|
+
* @param filePath - The file path to get the absolute path for
|
|
453
|
+
* @returns {string}
|
|
454
|
+
* @throws {Error} When restrictAccessToCwd is true and path would resolve outside cwd
|
|
455
|
+
*/
|
|
456
|
+
getAbsolutePath(filePath) {
|
|
457
|
+
if (this.isRelativePath(filePath)) {
|
|
458
|
+
const sanitizedPath = filePath.replace(/\0/g, "");
|
|
459
|
+
const resolved = path.resolve(this._cwd, sanitizedPath);
|
|
460
|
+
if (this._restrictAccessToCwd) {
|
|
461
|
+
const normalizedResolved = path.normalize(resolved);
|
|
462
|
+
const normalizedCwd = path.normalize(this._cwd);
|
|
463
|
+
const isWithinCwd = normalizedResolved === normalizedCwd || normalizedResolved.startsWith(normalizedCwd + path.sep);
|
|
464
|
+
if (!isWithinCwd) {
|
|
465
|
+
throw new Error(
|
|
466
|
+
`Path traversal attempt blocked: "${filePath}" resolves outside of working directory "${this._cwd}"`
|
|
467
|
+
);
|
|
468
|
+
}
|
|
469
|
+
}
|
|
470
|
+
return resolved;
|
|
471
|
+
}
|
|
472
|
+
return filePath;
|
|
473
|
+
}
|
|
474
|
+
/**
|
|
475
|
+
* Get the Absolute Path with a custom working directory. If it is already absolute it will return the path as is.
|
|
476
|
+
* When restrictAccessToCwd is enabled, ensures the resolved path stays within the provided cwd boundaries.
|
|
477
|
+
* @method getAbsolutePathWithCwd
|
|
478
|
+
* @param filePath - The file path to get the absolute path for
|
|
479
|
+
* @param cwd - The custom working directory to resolve relative paths from
|
|
480
|
+
* @returns {string}
|
|
481
|
+
* @throws {Error} When restrictAccessToCwd is true and path would resolve outside the provided cwd
|
|
482
|
+
*/
|
|
483
|
+
getAbsolutePathWithCwd(filePath, cwd) {
|
|
484
|
+
if (this.isRelativePath(filePath)) {
|
|
485
|
+
const sanitizedPath = filePath.replace(/\0/g, "");
|
|
486
|
+
const resolved = path.resolve(cwd, sanitizedPath);
|
|
487
|
+
if (this._restrictAccessToCwd) {
|
|
488
|
+
const normalizedResolved = path.normalize(resolved);
|
|
489
|
+
const normalizedCwd = path.normalize(cwd);
|
|
490
|
+
const isWithinCwd = normalizedResolved === normalizedCwd || normalizedResolved.startsWith(normalizedCwd + path.sep);
|
|
491
|
+
if (!isWithinCwd) {
|
|
492
|
+
throw new Error(
|
|
493
|
+
`Path traversal attempt blocked: "${filePath}" resolves outside of working directory "${cwd}"`
|
|
494
|
+
);
|
|
495
|
+
}
|
|
496
|
+
}
|
|
497
|
+
return resolved;
|
|
498
|
+
}
|
|
499
|
+
return filePath;
|
|
500
|
+
}
|
|
501
|
+
/**
|
|
502
|
+
* Rename cache keys that start with a given path prefix.
|
|
503
|
+
* @method renameCacheKeys
|
|
504
|
+
* @param oldPath - The old path prefix to rename
|
|
505
|
+
* @param newPath - The new path prefix to rename to
|
|
506
|
+
*/
|
|
507
|
+
renameCacheKeys(oldPath, newPath) {
|
|
508
|
+
const keys = this._cache.keys();
|
|
509
|
+
for (const key of keys) {
|
|
510
|
+
if (key.startsWith(oldPath)) {
|
|
511
|
+
const newKey = key.replace(oldPath, newPath);
|
|
512
|
+
const meta = this._cache.getKey(key);
|
|
513
|
+
this._cache.removeKey(key);
|
|
514
|
+
this._cache.setKey(newKey, meta);
|
|
515
|
+
}
|
|
516
|
+
}
|
|
517
|
+
}
|
|
518
|
+
};
|
|
519
|
+
export {
|
|
520
|
+
FileEntryCache,
|
|
521
|
+
create,
|
|
522
|
+
createFromFile,
|
|
523
|
+
FileEntryDefault as default
|
|
524
|
+
};
|
|
525
|
+
/* v8 ignore next -- @preserve */
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "file-entry-cache",
|
|
3
|
+
"version": "11.1.2",
|
|
4
|
+
"description": "A lightweight cache for file metadata, ideal for processes that work on a specific set of files and only need to reprocess files that have changed since the last run",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"module": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"import": {
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
13
|
+
"default": "./dist/index.js"
|
|
14
|
+
},
|
|
15
|
+
"require": {
|
|
16
|
+
"types": "./dist/index.d.cts",
|
|
17
|
+
"default": "./dist/index.cjs"
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "git+https://github.com/jaredwray/cacheable.git",
|
|
24
|
+
"directory": "packages/file-entry-cache"
|
|
25
|
+
},
|
|
26
|
+
"author": "Jared Wray <me@jaredwray.com>",
|
|
27
|
+
"license": "MIT",
|
|
28
|
+
"private": false,
|
|
29
|
+
"keywords": [
|
|
30
|
+
"file cache",
|
|
31
|
+
"task cache files",
|
|
32
|
+
"file cache",
|
|
33
|
+
"key par",
|
|
34
|
+
"key value",
|
|
35
|
+
"cache"
|
|
36
|
+
],
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@biomejs/biome": "^2.3.11",
|
|
39
|
+
"@types/node": "^25.0.8",
|
|
40
|
+
"@vitest/coverage-v8": "^4.0.17",
|
|
41
|
+
"pino": "^10.1.1",
|
|
42
|
+
"rimraf": "^6.1.2",
|
|
43
|
+
"tsup": "^8.5.1",
|
|
44
|
+
"typescript": "^5.9.3",
|
|
45
|
+
"vitest": "^4.0.17"
|
|
46
|
+
},
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"flat-cache": "^6.1.20"
|
|
49
|
+
},
|
|
50
|
+
"files": [
|
|
51
|
+
"dist",
|
|
52
|
+
"license"
|
|
53
|
+
],
|
|
54
|
+
"scripts": {
|
|
55
|
+
"build": "rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean",
|
|
56
|
+
"prepublish": "pnpm build",
|
|
57
|
+
"lint": "biome check --write --error-on-warnings",
|
|
58
|
+
"test": "pnpm lint && vitest run --coverage",
|
|
59
|
+
"test:ci": "biome check --error-on-warnings && vitest run --coverage",
|
|
60
|
+
"clean": "rimraf ./dist ./coverage ./node_modules"
|
|
61
|
+
}
|
|
62
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
MIT License & © Jared Wray
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
4
|
+
of this software and associated documentation files (the "Software"), to
|
|
5
|
+
deal in the Software without restriction, including without limitation the
|
|
6
|
+
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
7
|
+
sell copies of the Software, and to permit persons to whom the Software is
|
|
8
|
+
furnished to do so, subject to the following conditions:
|
|
9
|
+
|
|
10
|
+
The above copyright notice and this permission notice shall be included in
|
|
11
|
+
all copies or substantial portions of the Software.
|
|
12
|
+
|
|
13
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
14
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
15
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
16
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
17
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
18
|
+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
19
|
+
DEALINGS IN THE SOFTWARE.
|