@vitest/snapshot 1.0.0-beta.0 → 1.0.0-beta.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.
@@ -8,4 +8,4 @@ interface SnapshotEnvironment {
8
8
  removeSnapshotFile(filepath: string): Promise<void>;
9
9
  }
10
10
 
11
- export { SnapshotEnvironment as S };
11
+ export type { SnapshotEnvironment as S };
@@ -1,4 +1,4 @@
1
- import { S as SnapshotEnvironment } from './environment-b0891b0a.js';
1
+ import { S as SnapshotEnvironment } from './environment-e71c592b.js';
2
2
 
3
3
  declare class NodeSnapshotEnvironment implements SnapshotEnvironment {
4
4
  getVersion(): string;
@@ -1,5 +1,5 @@
1
1
  import { OptionsReceived } from 'pretty-format';
2
- import { S as SnapshotEnvironment } from './environment-b0891b0a.js';
2
+ import { S as SnapshotEnvironment } from './environment-e71c592b.js';
3
3
 
4
4
  interface RawSnapshotInfo {
5
5
  file: string;
@@ -56,4 +56,4 @@ interface SnapshotSummary {
56
56
  updated: number;
57
57
  }
58
58
 
59
- export { RawSnapshotInfo as R, SnapshotStateOptions as S, UncheckedSnapshot as U, SnapshotMatchOptions as a, SnapshotResult as b, SnapshotData as c, SnapshotUpdateState as d, SnapshotSummary as e };
59
+ export type { RawSnapshotInfo as R, SnapshotStateOptions as S, UncheckedSnapshot as U, SnapshotMatchOptions as a, SnapshotResult as b, SnapshotData as c, SnapshotUpdateState as d, SnapshotSummary as e };
package/dist/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
- import { S as SnapshotStateOptions, a as SnapshotMatchOptions, b as SnapshotResult, R as RawSnapshotInfo } from './index-69d272f6.js';
2
- export { c as SnapshotData, e as SnapshotSummary, d as SnapshotUpdateState, U as UncheckedSnapshot } from './index-69d272f6.js';
3
- import { S as SnapshotEnvironment } from './environment-b0891b0a.js';
1
+ import { S as SnapshotStateOptions, a as SnapshotMatchOptions, b as SnapshotResult, R as RawSnapshotInfo } from './index-d5eca340.js';
2
+ export { c as SnapshotData, e as SnapshotSummary, d as SnapshotUpdateState, U as UncheckedSnapshot } from './index-d5eca340.js';
3
+ import { S as SnapshotEnvironment } from './environment-e71c592b.js';
4
4
  import { Plugin, Plugins } from 'pretty-format';
5
5
 
6
6
  interface ParsedStack {
package/dist/manager.d.ts CHANGED
@@ -1,6 +1,6 @@
1
- import { S as SnapshotStateOptions, e as SnapshotSummary, b as SnapshotResult } from './index-69d272f6.js';
1
+ import { S as SnapshotStateOptions, e as SnapshotSummary, b as SnapshotResult } from './index-d5eca340.js';
2
2
  import 'pretty-format';
3
- import './environment-b0891b0a.js';
3
+ import './environment-e71c592b.js';
4
4
 
5
5
  declare class SnapshotManager {
6
6
  options: Omit<SnapshotStateOptions, 'snapshotEnvironment'>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vitest/snapshot",
3
3
  "type": "module",
4
- "version": "1.0.0-beta.0",
4
+ "version": "1.0.0-beta.2",
5
5
  "description": "Vitest snapshot manager",
6
6
  "license": "MIT",
7
7
  "funding": "https://opencollective.com/vitest",
@@ -45,7 +45,7 @@
45
45
  "devDependencies": {
46
46
  "@types/natural-compare": "^1.4.1",
47
47
  "natural-compare": "^1.4.0",
48
- "@vitest/utils": "1.0.0-beta.0"
48
+ "@vitest/utils": "1.0.0-beta.2"
49
49
  },
50
50
  "scripts": {
51
51
  "build": "rimraf dist && rollup -c",