@rushstack/trace-import 0.3.43 → 0.3.44

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/lib/start.js CHANGED
@@ -10,7 +10,7 @@ console.log();
10
10
  console.log(terminal_1.Colorize.bold(`trace-import ${toolVersion}`) + ' - ' + terminal_1.Colorize.cyan('https://rushstack.io'));
11
11
  console.log();
12
12
  const commandLine = new TraceImportCommandLineParser_1.TraceImportCommandLineParser();
13
- commandLine.execute().catch((error) => {
13
+ commandLine.executeAsync().catch((error) => {
14
14
  console.error(error);
15
15
  });
16
16
  //# sourceMappingURL=start.js.map
package/lib/start.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"start.js","sourceRoot":"","sources":["../src/start.ts"],"names":[],"mappings":";AAAA,4FAA4F;AAC5F,2DAA2D;;AAE3D,oEAAiE;AACjE,kDAA+C;AAE/C,iFAA8E;AAE9E,MAAM,WAAW,GAAW,qCAAiB,CAAC,kBAAkB,CAAC,SAAS,CAAC,CAAC,OAAO,CAAC;AAEpF,OAAO,CAAC,GAAG,EAAE,CAAC;AACd,OAAO,CAAC,GAAG,CAAC,mBAAQ,CAAC,IAAI,CAAC,gBAAgB,WAAW,EAAE,CAAC,GAAG,KAAK,GAAG,mBAAQ,CAAC,IAAI,CAAC,sBAAsB,CAAC,CAAC,CAAC;AAC1G,OAAO,CAAC,GAAG,EAAE,CAAC;AAEd,MAAM,WAAW,GAAiC,IAAI,2DAA4B,EAAE,CAAC;AACrF,WAAW,CAAC,OAAO,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,EAAE,EAAE;IACpC,OAAO,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;AACvB,CAAC,CAAC,CAAC","sourcesContent":["// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.\n// See LICENSE in the project root for license information.\n\nimport { PackageJsonLookup } from '@rushstack/node-core-library';\nimport { Colorize } from '@rushstack/terminal';\n\nimport { TraceImportCommandLineParser } from './TraceImportCommandLineParser';\n\nconst toolVersion: string = PackageJsonLookup.loadOwnPackageJson(__dirname).version;\n\nconsole.log();\nconsole.log(Colorize.bold(`trace-import ${toolVersion}`) + ' - ' + Colorize.cyan('https://rushstack.io'));\nconsole.log();\n\nconst commandLine: TraceImportCommandLineParser = new TraceImportCommandLineParser();\ncommandLine.execute().catch((error) => {\n console.error(error);\n});\n"]}
1
+ {"version":3,"file":"start.js","sourceRoot":"","sources":["../src/start.ts"],"names":[],"mappings":";AAAA,4FAA4F;AAC5F,2DAA2D;;AAE3D,oEAAiE;AACjE,kDAA+C;AAE/C,iFAA8E;AAE9E,MAAM,WAAW,GAAW,qCAAiB,CAAC,kBAAkB,CAAC,SAAS,CAAC,CAAC,OAAO,CAAC;AAEpF,OAAO,CAAC,GAAG,EAAE,CAAC;AACd,OAAO,CAAC,GAAG,CAAC,mBAAQ,CAAC,IAAI,CAAC,gBAAgB,WAAW,EAAE,CAAC,GAAG,KAAK,GAAG,mBAAQ,CAAC,IAAI,CAAC,sBAAsB,CAAC,CAAC,CAAC;AAC1G,OAAO,CAAC,GAAG,EAAE,CAAC;AAEd,MAAM,WAAW,GAAiC,IAAI,2DAA4B,EAAE,CAAC;AACrF,WAAW,CAAC,YAAY,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,EAAE,EAAE;IACzC,OAAO,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;AACvB,CAAC,CAAC,CAAC","sourcesContent":["// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.\n// See LICENSE in the project root for license information.\n\nimport { PackageJsonLookup } from '@rushstack/node-core-library';\nimport { Colorize } from '@rushstack/terminal';\n\nimport { TraceImportCommandLineParser } from './TraceImportCommandLineParser';\n\nconst toolVersion: string = PackageJsonLookup.loadOwnPackageJson(__dirname).version;\n\nconsole.log();\nconsole.log(Colorize.bold(`trace-import ${toolVersion}`) + ' - ' + Colorize.cyan('https://rushstack.io'));\nconsole.log();\n\nconst commandLine: TraceImportCommandLineParser = new TraceImportCommandLineParser();\ncommandLine.executeAsync().catch((error) => {\n console.error(error);\n});\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rushstack/trace-import",
3
- "version": "0.3.43",
3
+ "version": "0.3.44",
4
4
  "description": "CLI tool for understanding how require() and \"import\" statements get resolved",
5
5
  "repository": {
6
6
  "type": "git",
@@ -15,14 +15,14 @@
15
15
  "resolve": "~1.22.1",
16
16
  "semver": "~7.5.4",
17
17
  "typescript": "~5.4.2",
18
- "@rushstack/node-core-library": "4.2.1",
19
- "@rushstack/ts-command-line": "4.19.5",
20
- "@rushstack/terminal": "0.10.3"
18
+ "@rushstack/terminal": "0.10.4",
19
+ "@rushstack/ts-command-line": "4.20.0",
20
+ "@rushstack/node-core-library": "4.3.0"
21
21
  },
22
22
  "devDependencies": {
23
23
  "@types/resolve": "1.20.2",
24
24
  "@types/semver": "7.5.0",
25
- "@rushstack/heft": "0.66.6",
25
+ "@rushstack/heft": "0.66.7",
26
26
  "local-node-rig": "1.0.0"
27
27
  },
28
28
  "scripts": {