@browsermation/test 0.0.6 → 0.0.7

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/bin/cli.js CHANGED
@@ -42872,7 +42872,7 @@ var {
42872
42872
  // package.json
42873
42873
  var package_default = {
42874
42874
  name: "@browsermation/test",
42875
- version: "0.0.6",
42875
+ version: "0.0.7",
42876
42876
  description: "The testing platform for Playwright by Browsermation.",
42877
42877
  main: "dist/index.js",
42878
42878
  types: "dist/index.d.ts",
@@ -42895,7 +42895,7 @@ var package_default = {
42895
42895
  build: "npm run build:cli && npm run build:index && npm run build:types",
42896
42896
  start: "node dist/bin/cli.js",
42897
42897
  "build:start": "npm run build && npm start",
42898
- publish: "npm run build && npm publish --access public"
42898
+ publish: "rm -rf dist && npm run build && npm publish --access public"
42899
42899
  },
42900
42900
  keywords: [
42901
42901
  "cli",
package/dist/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@browsermation/test",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "description": "The testing platform for Playwright by Browsermation.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -23,7 +23,7 @@
23
23
  "build": "npm run build:cli && npm run build:index && npm run build:types",
24
24
  "start": "node dist/bin/cli.js",
25
25
  "build:start": "npm run build && npm start",
26
- "publish": "npm run build && npm publish --access public"
26
+ "publish": "rm -rf dist && npm run build && npm publish --access public"
27
27
  },
28
28
  "keywords": [
29
29
  "cli",
package/dist/bin/cli.d.ts DELETED
@@ -1,2 +0,0 @@
1
- #!/usr/bin/env node
2
- import 'dotenv/config';
package/dist/core.d.ts DELETED
@@ -1,9 +0,0 @@
1
- import { Readable } from 'node:stream';
2
- import 'dotenv/config';
3
- /**
4
- * The main function that orchestrates zipping and uploading.
5
- * @param folderPath The path to the folder to process.
6
- * @param testFiles The list of test files to include in the upload.
7
- */
8
- export declare function zip(folder: string, testFiles: string[]): Promise<Buffer>;
9
- export declare function upload(zipBuffer: Buffer, shardNumber: number, totalShards: number, playwrightConfig: object, options: object, eventStream: Readable): Promise<void>;
@@ -1,2 +0,0 @@
1
- import { PlaywrightTestConfig } from 'playwright/test';
2
- export declare function defineConfig(config: PlaywrightTestConfig): Promise<PlaywrightTestConfig>;
package/dist/esbuild.d.ts DELETED
@@ -1 +0,0 @@
1
- export declare function compileFileUsingEsbuild(folder: string, filepath: string): Promise<unknown>;
package/dist/http.d.ts DELETED
@@ -1 +0,0 @@
1
- export declare function downloadFile(fileUrl: string, outputLocationPath: string): Promise<unknown>;
package/dist/index.d.ts DELETED
@@ -1,2 +0,0 @@
1
- export { defineConfig } from './defineConfig';
2
- export { test } from './test';