creevey 0.10.0-beta.17 → 0.10.0-beta.18

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/dist/index.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  /// <reference types="../types/chai" />
2
+ /// <reference types="../types/global" />
2
3
  export * from './types.js';
3
4
  export { loadStories as browserStoriesProvider } from './server/storybook/providers/browser.js';
4
5
  export { loadStories as hybridStoriesProvider } from './server/storybook/providers/hybrid.js';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "creevey",
3
3
  "description": "Cross-browser screenshot testing tool for Storybook with fancy UI Runner",
4
- "version": "0.10.0-beta.17",
4
+ "version": "0.10.0-beta.18",
5
5
  "type": "commonjs",
6
6
  "bin": "dist/cli.js",
7
7
  "main": "./dist/index.js",
package/types/global.d.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  /* eslint-disable no-var */
2
2
 
3
+ declare var __CREEVEY_ENV__: boolean;
3
4
  declare var __CREEVEY_SERVER_HOST__: string;
4
5
  declare var __CREEVEY_SERVER_PORT__: number | null;
5
6
  declare var __CREEVEY_CLIENT_PORT__: number | null;