xshell 1.0.39 → 1.0.40

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/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
+ export * from './path.js';
1
2
  export * from './prototype.js';
2
3
  export * from './utils.js';
3
4
  export * from './file.js';
package/index.js CHANGED
@@ -1,3 +1,4 @@
1
+ export * from './path.js';
1
2
  export * from './prototype.js';
2
3
  export * from './utils.js';
3
4
  export * from './file.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "xshell",
3
- "version": "1.0.39",
3
+ "version": "1.0.40",
4
4
  "type": "module",
5
5
  "main": "./index.js",
6
6
  "bin": {
package/path.d.ts CHANGED
@@ -69,6 +69,7 @@ export declare function format(pathObject: FormatInputPathObject): string;
69
69
  export declare function toNamespacedPath(path: string): any;
70
70
  export declare const posix: npath.PlatformPath;
71
71
  export declare const win32: npath.PlatformPath;
72
+ /** 统一使用 / 作为分隔符的 path 模块 */
72
73
  export declare let path: {
73
74
  to_fp: typeof to_fp;
74
75
  normalize: typeof normalize;
package/path.js CHANGED
@@ -99,6 +99,7 @@ export function toNamespacedPath(path) {
99
99
  }
100
100
  export const posix = npath.posix;
101
101
  export const win32 = npath.win32;
102
+ /** 统一使用 / 作为分隔符的 path 模块 */
102
103
  export let path = {
103
104
  to_fp,
104
105
  normalize,