@tsed/cli-testing 6.1.9 → 6.1.10-rc.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.
@@ -1,5 +1,5 @@
1
+ import * as fs from "node:fs";
1
2
  import { isString } from "@tsed/core";
2
- import * as fs from "fs";
3
3
  import { normalizePath } from "./normalizePath.js";
4
4
  export class FakeCliFs {
5
5
  static { this.entries = new Map(); }
@@ -1,4 +1,4 @@
1
- import type { PathLike } from "fs";
1
+ import type { PathLike } from "node:fs";
2
2
  import type { EnsureDirOptions, WriteFileOptions } from "fs-extra";
3
3
  export declare class FakeCliFs {
4
4
  static entries: Map<any, string>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tsed/cli-testing",
3
3
  "description": "Utils to test you CLI based on Ts.ED CLI",
4
- "version": "6.1.9",
4
+ "version": "6.1.10-rc.1",
5
5
  "type": "module",
6
6
  "main": "./lib/esm/index.js",
7
7
  "source": "./src/index.ts",
@@ -29,11 +29,11 @@
29
29
  "decorators"
30
30
  ],
31
31
  "dependencies": {
32
- "@tsed/cli-core": "6.1.9",
32
+ "@tsed/cli-core": "6.1.10-rc.1",
33
33
  "tslib": "2.7.0"
34
34
  },
35
35
  "devDependencies": {
36
- "@tsed/typescript": "6.1.9",
36
+ "@tsed/typescript": "6.1.10-rc.1",
37
37
  "cross-env": "7.0.3",
38
38
  "typescript": "5.6.2",
39
39
  "vitest": "2.1.1"
@@ -45,5 +45,8 @@
45
45
  },
46
46
  "homepage": "https://github.com/tsedio/tsed-cli/tree/master/packages/cli-testing",
47
47
  "author": "Romain Lenzotti",
48
- "license": "MIT"
48
+ "license": "MIT",
49
+ "publishConfig": {
50
+ "tag": "rc"
51
+ }
49
52
  }