@sprucelabs/resolve-path-aliases 2.0.1 → 2.0.2

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.
Files changed (2) hide show
  1. package/build/index.js +2 -2
  2. package/package.json +1 -1
package/build/index.js CHANGED
@@ -5,9 +5,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  exports.resolvePathAliases = void 0;
7
7
  const globby_1 = __importDefault(require("globby"));
8
- const PathResolve_1 = require("./PathResolve");
8
+ const PathResolver_1 = require("./PathResolver");
9
9
  function resolvePathAliases(destination, options = {}, globUtil = globby_1.default) {
10
- const resolver = PathResolve_1.PathResolve.Resolver(globUtil);
10
+ const resolver = PathResolver_1.PathResolver.Resolver(globUtil);
11
11
  return resolver.resolvePathAliases(destination, options);
12
12
  }
13
13
  exports.resolvePathAliases = resolvePathAliases;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sprucelabs/resolve-path-aliases",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "description": "Script that resolves paths from your tsconfig",
5
5
  "main": "build/index.js",
6
6
  "repository": "git@github.com:sprucelabsai-community/resolve-path-aliases.git",