next-style 2.2.1 → 2.2.2

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.
@@ -1,15 +1,10 @@
1
1
  import postcss from 'postcss';
2
2
 
3
- /**
4
- * Resolves the cache file path from the PostCSS `result.opts.from` field.
5
- * Falls back to `process.cwd()` when `from` is absent (e.g. standalone runs).
6
- */
7
3
  declare function resolveCacheFile(from: string | undefined): string;
8
4
  interface PluginOptions {
9
5
  /**
10
6
  * Override the cache file path.
11
- * When omitted, the path is derived from the CSS file being processed
12
- * (`result.opts.from`) by walking up to the nearest `package.json`.
7
+ * When omitted, derived from the CSS file being processed.
13
8
  */
14
9
  cacheFile?: string;
15
10
  }