@akanjs/test 0.0.66 → 0.0.67

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akanjs/test",
3
- "version": "0.0.66",
3
+ "version": "0.0.67",
4
4
  "type": "commonjs",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -18,6 +18,7 @@
18
18
  "@nx/devkit": "^20.7.2",
19
19
  "@nx/playwright": "^20.7.2",
20
20
  "@playwright/test": "^1.51.1",
21
+ "@web-std/file": "^3.0.3",
21
22
  "chance": "^1.1.12",
22
23
  "dotenv": "^16.4.7",
23
24
  "mongodb-memory-server": "^10.1.3",
package/src/index.d.ts CHANGED
@@ -1,2 +1,3 @@
1
1
  export { sampleOf } from "./sampleOf";
2
2
  export { sample } from "./sample";
3
+ export { WebFile } from "./webFile";
package/src/index.js CHANGED
@@ -17,9 +17,11 @@ var __copyProps = (to, from, except, desc) => {
17
17
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
18
18
  var src_exports = {};
19
19
  __export(src_exports, {
20
+ WebFile: () => import_webFile.WebFile,
20
21
  sample: () => import_sample.sample,
21
22
  sampleOf: () => import_sampleOf.sampleOf
22
23
  });
23
24
  module.exports = __toCommonJS(src_exports);
24
25
  var import_sampleOf = require("./sampleOf");
25
26
  var import_sample = require("./sample");
27
+ var import_webFile = require("./webFile");
package/src/index.mjs CHANGED
@@ -1,6 +1,8 @@
1
1
  import { sampleOf } from "./sampleOf";
2
2
  import { sample } from "./sample";
3
+ import { WebFile } from "./webFile";
3
4
  export {
5
+ WebFile,
4
6
  sample,
5
7
  sampleOf
6
8
  };
@@ -0,0 +1 @@
1
+ export { File as WebFile } from "@web-std/file";
package/src/webFile.js ADDED
@@ -0,0 +1,23 @@
1
+ var __defProp = Object.defineProperty;
2
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
+ var __getOwnPropNames = Object.getOwnPropertyNames;
4
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
5
+ var __export = (target, all) => {
6
+ for (var name in all)
7
+ __defProp(target, name, { get: all[name], enumerable: true });
8
+ };
9
+ var __copyProps = (to, from, except, desc) => {
10
+ if (from && typeof from === "object" || typeof from === "function") {
11
+ for (let key of __getOwnPropNames(from))
12
+ if (!__hasOwnProp.call(to, key) && key !== except)
13
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
14
+ }
15
+ return to;
16
+ };
17
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
18
+ var webFile_exports = {};
19
+ __export(webFile_exports, {
20
+ WebFile: () => import_file.File
21
+ });
22
+ module.exports = __toCommonJS(webFile_exports);
23
+ var import_file = require("@web-std/file");
@@ -0,0 +1,4 @@
1
+ import { File } from "@web-std/file";
2
+ export {
3
+ File as WebFile
4
+ };