ts-arc 1.1.13 → 1.1.14

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/dist/loader.js +0 -3
  2. package/package.json +1 -1
package/dist/loader.js CHANGED
@@ -56,14 +56,11 @@ async function resolve2(specifier, context, nextResolve) {
56
56
  }
57
57
  const isPathLike = specifier.startsWith(".") || specifier.startsWith("/");
58
58
  if (isPathLike) {
59
- console.log("Attempting to resolve a path-like specifier:", specifier);
60
59
  const resolved = await resolveLocal(parentPath, specifier);
61
60
  return { ...resolved, shortCircuit: true };
62
61
  } else {
63
- console.log("Attempting to resolve non path-like specifier:", specifier);
64
62
  const { paths } = config;
65
63
  const effectiveBase = getEffectiveBase();
66
- console.log("That specifiers effectiveBase is:", specifier);
67
64
  for (const key of Object.keys(paths)) {
68
65
  let capture = null;
69
66
  const isWildcard = key.endsWith("/*");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ts-arc",
3
- "version": "1.1.13",
3
+ "version": "1.1.14",
4
4
  "type": "module",
5
5
  "description": "A simple typescript runtime.",
6
6
  "main": "dist/bin.js",