@ms-cloudpack/path-utilities 2.2.1 → 2.2.3

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/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # @ms-cloudpack/path-utilities
2
+
3
+ Utilities for resolving paths between source/intermediate/output locations in Cloudpack.
@@ -6,3 +6,4 @@
6
6
  * @param excludeNodeModules - If true, don't return a path that contains a `node_modules` segment.
7
7
  */
8
8
  export declare function findPackageRoot(startFolder: string, excludeNodeModules?: boolean): string | undefined;
9
+ //# sourceMappingURL=findPackageRoot.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"findPackageRoot.d.ts","sourceRoot":"","sources":["../src/findPackageRoot.ts"],"names":[],"mappings":"AAKA;;;;;;GAMG;AACH,wBAAgB,eAAe,CAAC,WAAW,EAAE,MAAM,EAAE,kBAAkB,CAAC,EAAE,OAAO,GAAG,MAAM,GAAG,SAAS,CAerG"}
package/lib/index.d.ts CHANGED
@@ -6,3 +6,4 @@ export { isFolder } from './isFolder.js';
6
6
  export { sourceToIntermediatePath } from './sourceToIntermediatePath.js';
7
7
  export { findPackageRoot } from './findPackageRoot.js';
8
8
  export { pathSymbolReplacement } from './pathSymbolReplacement.js';
9
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,wBAAwB,EAAE,MAAM,+BAA+B,CAAC;AACzE,OAAO,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAC7C,OAAO,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AACrC,OAAO,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AACjD,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AACzC,OAAO,EAAE,wBAAwB,EAAE,MAAM,+BAA+B,CAAC;AACzE,OAAO,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAC;AACvD,OAAO,EAAE,qBAAqB,EAAE,MAAM,4BAA4B,CAAC"}
@@ -3,3 +3,4 @@
3
3
  * (e.g. "/src/foo/foo.tsx"). Note: source files must exist so that the utility can resolve the source.
4
4
  */
5
5
  export declare function intermediateToSourcePath(relativeIntermediatePath: string, rootPath: string): string | undefined;
6
+ //# sourceMappingURL=intermediateToSourcePath.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"intermediateToSourcePath.d.ts","sourceRoot":"","sources":["../src/intermediateToSourcePath.ts"],"names":[],"mappings":"AAIA;;;GAGG;AACH,wBAAgB,wBAAwB,CAAC,wBAAwB,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS,CAgD/G"}
package/lib/isFile.d.ts CHANGED
@@ -1 +1,2 @@
1
1
  export declare function isFile(filePath: string): Promise<boolean>;
2
+ //# sourceMappingURL=isFile.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"isFile.d.ts","sourceRoot":"","sources":["../src/isFile.ts"],"names":[],"mappings":"AAEA,wBAAsB,MAAM,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC,CAS/D"}
@@ -1 +1,2 @@
1
1
  export declare function isFileSync(filePath: string): boolean;
2
+ //# sourceMappingURL=isFileSync.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"isFileSync.d.ts","sourceRoot":"","sources":["../src/isFileSync.ts"],"names":[],"mappings":"AAEA,wBAAgB,UAAU,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CASpD"}
package/lib/isFolder.d.ts CHANGED
@@ -1 +1,2 @@
1
1
  export declare function isFolder(itemPath: string): Promise<boolean>;
2
+ //# sourceMappingURL=isFolder.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"isFolder.d.ts","sourceRoot":"","sources":["../src/isFolder.ts"],"names":[],"mappings":"AAEA,wBAAsB,QAAQ,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC,CASjE"}
@@ -1 +1,2 @@
1
1
  export declare function isFolderSync(itemPath: string): boolean;
2
+ //# sourceMappingURL=isFolderSync.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"isFolderSync.d.ts","sourceRoot":"","sources":["../src/isFolderSync.ts"],"names":[],"mappings":"AAEA,wBAAgB,YAAY,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAStD"}
@@ -1 +1,2 @@
1
1
  export declare function pathSymbolReplacement(str: string): string;
2
+ //# sourceMappingURL=pathSymbolReplacement.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"pathSymbolReplacement.d.ts","sourceRoot":"","sources":["../src/pathSymbolReplacement.ts"],"names":[],"mappings":"AAUA,wBAAgB,qBAAqB,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAMzD"}
@@ -3,3 +3,4 @@
3
3
  * (e.g. "/lib/foo/bar.js").
4
4
  */
5
5
  export declare function sourceToIntermediatePath(sourcePath: string): string;
6
+ //# sourceMappingURL=sourceToIntermediatePath.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sourceToIntermediatePath.d.ts","sourceRoot":"","sources":["../src/sourceToIntermediatePath.ts"],"names":[],"mappings":"AAGA;;;GAGG;AACH,wBAAgB,wBAAwB,CAAC,UAAU,EAAE,MAAM,GAAG,MAAM,CAwBnE"}
@@ -1,11 +1,11 @@
1
- // This file is read by tools that parse documentation comments conforming to the TSDoc standard.
2
- // It should be published with your NPM package. It should not be tracked by Git.
3
- {
4
- "tsdocVersion": "0.12",
5
- "toolPackages": [
6
- {
7
- "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.34.4"
9
- }
10
- ]
11
- }
1
+ // This file is read by tools that parse documentation comments conforming to the TSDoc standard.
2
+ // It should be published with your NPM package. It should not be tracked by Git.
3
+ {
4
+ "tsdocVersion": "0.12",
5
+ "toolPackages": [
6
+ {
7
+ "packageName": "@microsoft/api-extractor",
8
+ "packageVersion": "7.35.2"
9
+ }
10
+ ]
11
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ms-cloudpack/path-utilities",
3
- "version": "2.2.1",
3
+ "version": "2.2.3",
4
4
  "description": "Utilities for resolving paths between source/intermediate/output locations in Cloudpack.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -13,7 +13,6 @@
13
13
  }
14
14
  },
15
15
  "scripts": {
16
- "api:update": "cloudpack-scripts api-update",
17
16
  "api": "cloudpack-scripts api",
18
17
  "build:watch": "cloudpack-scripts build-watch",
19
18
  "build": "cloudpack-scripts build",
@@ -24,11 +23,11 @@
24
23
  "test": "cloudpack-scripts test"
25
24
  },
26
25
  "dependencies": {
27
- "@ms-cloudpack/path-string-parsing": "^1.0.1"
26
+ "@ms-cloudpack/path-string-parsing": "^1.0.2"
28
27
  },
29
28
  "devDependencies": {
29
+ "@ms-cloudpack/eslint-plugin-internal": "*",
30
30
  "@ms-cloudpack/scripts": "*",
31
- "@ms-cloudpack/eslint-config-base": "*",
32
31
  "@ms-cloudpack/test-utilities": "*"
33
32
  },
34
33
  "files": [