functionalscript 0.31.0 → 0.31.1

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.
@@ -27,8 +27,7 @@ import os from 'node:os';
27
27
  import process from 'node:process';
28
28
  import { once } from 'node:events';
29
29
  import * as testContext from 'node:test';
30
- import { concat } from "../../path/module.f.js";
31
- import { normalize } from "../../path/module.f.js";
30
+ import { concat, normalize, toPosix } from "../../path/module.f.js";
32
31
  import {} from "../module.f.js";
33
32
  import { asyncRun } from "../module.js";
34
33
  import { memoryOperationMap } from "./memory/module.js";
@@ -234,7 +233,7 @@ const playwrightTestContext = wrapInlineTest(pwTest);
234
233
  const options = {
235
234
  args: process.argv.slice(2),
236
235
  env: process.env,
237
- home: os.homedir(),
236
+ home: toPosix(os.homedir()),
238
237
  std: { stdout: process.stdout, stderr: process.stderr },
239
238
  testContext,
240
239
  bunTestContext,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "functionalscript",
3
- "version": "0.31.0",
3
+ "version": "0.31.1",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "**/*.js",