@parcel/utils 2.0.0-nightly.97 → 2.1.0

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 (100) hide show
  1. package/.eslintrc.js +6 -6
  2. package/lib/DefaultMap.js +0 -8
  3. package/lib/Deferred.js +10 -2
  4. package/lib/PromiseQueue.js +21 -30
  5. package/lib/TapStream.js +10 -10
  6. package/lib/alternatives.js +134 -0
  7. package/lib/ansi-html.js +10 -2
  8. package/lib/blob.js +26 -8
  9. package/lib/collection.js +14 -11
  10. package/lib/config.js +145 -35
  11. package/lib/countLines.js +2 -2
  12. package/lib/dependency-location.js +3 -3
  13. package/lib/generateBuildMetrics.js +148 -0
  14. package/lib/generateCertificate.js +33 -8
  15. package/lib/getExisting.js +11 -3
  16. package/lib/getRootDir.js +18 -7
  17. package/lib/glob.js +53 -19
  18. package/lib/hash.js +44 -0
  19. package/lib/http-server.js +48 -10
  20. package/lib/index.js +298 -224
  21. package/lib/is-url.js +12 -2
  22. package/lib/isDirectoryInside.js +24 -0
  23. package/lib/objectHash.js +10 -2
  24. package/lib/openInBrowser.js +94 -0
  25. package/lib/path.js +33 -6
  26. package/lib/prettyDiagnostic.js +107 -25
  27. package/lib/relativeBundlePath.js +13 -7
  28. package/lib/relativeUrl.js +19 -3
  29. package/lib/replaceBundleReferences.js +91 -35
  30. package/lib/schema.js +104 -33
  31. package/lib/shared-buffer.js +31 -0
  32. package/lib/sourcemap.js +147 -0
  33. package/lib/stream.js +38 -3
  34. package/lib/urlJoin.js +25 -6
  35. package/package.json +27 -16
  36. package/src/DefaultMap.js +1 -1
  37. package/src/PromiseQueue.js +16 -12
  38. package/src/alternatives.js +143 -0
  39. package/src/ansi-html.js +2 -2
  40. package/src/blob.js +4 -3
  41. package/src/bundle-url.js +1 -1
  42. package/src/collection.js +14 -14
  43. package/src/config.js +100 -35
  44. package/src/countLines.js +5 -2
  45. package/src/debounce.js +1 -1
  46. package/src/dependency-location.js +11 -6
  47. package/src/generateBuildMetrics.js +158 -0
  48. package/src/generateCertificate.js +1 -1
  49. package/src/getCertificate.js +1 -1
  50. package/src/getExisting.js +1 -4
  51. package/src/getRootDir.js +1 -2
  52. package/src/glob.js +29 -11
  53. package/src/hash.js +34 -0
  54. package/src/http-server.js +10 -12
  55. package/src/index.js +52 -23
  56. package/src/is-url.js +1 -1
  57. package/src/isDirectoryInside.js +11 -0
  58. package/src/openInBrowser.js +64 -0
  59. package/src/path.js +38 -6
  60. package/src/prettyDiagnostic.js +58 -24
  61. package/src/relativeBundlePath.js +8 -13
  62. package/src/replaceBundleReferences.js +75 -39
  63. package/src/schema.js +101 -44
  64. package/src/shared-buffer.js +24 -0
  65. package/src/sourcemap.js +135 -0
  66. package/src/stream.js +31 -1
  67. package/src/urlJoin.js +3 -1
  68. package/test/DefaultMap.test.js +7 -4
  69. package/test/config.test.js +50 -0
  70. package/test/input/config/config.json +3 -0
  71. package/test/input/config/empty.json +0 -0
  72. package/test/input/config/empty.toml +0 -0
  73. package/test/input/sourcemap/referenced-min.js +2 -0
  74. package/test/input/sourcemap/referenced-min.js.map +6 -0
  75. package/test/input/sourcemap/source-root.js +2 -0
  76. package/test/input/sourcemap/source-root.js.map +7 -0
  77. package/test/objectHash.test.js +33 -0
  78. package/test/prettifyTime.test.js +17 -0
  79. package/test/replaceBundleReferences.test.js +268 -0
  80. package/test/sourcemap.test.js +207 -0
  81. package/test/throttle.test.js +1 -2
  82. package/test/urlJoin.test.js +37 -0
  83. package/lib/generateBundleReport.js +0 -38
  84. package/lib/loadSourceMapUrl.js +0 -33
  85. package/lib/md5.js +0 -35
  86. package/lib/prettyError.js +0 -43
  87. package/lib/promisify.js +0 -13
  88. package/lib/resolve.js +0 -93
  89. package/lib/serializeObject.js +0 -28
  90. package/src/.babelrc +0 -3
  91. package/src/generateBundleReport.js +0 -51
  92. package/src/loadSourceMapUrl.js +0 -33
  93. package/src/md5.js +0 -44
  94. package/src/prettyError.js +0 -54
  95. package/src/promisify.js +0 -13
  96. package/src/resolve.js +0 -123
  97. package/src/serializeObject.js +0 -22
  98. package/test/input/sourcemap/referenced.js +0 -7
  99. package/test/loadSourceMapUrl.test.js +0 -37
  100. package/test/prettyError.test.js +0 -104
package/src/glob.js CHANGED
@@ -6,24 +6,41 @@ import type {FileSystem} from '@parcel/fs';
6
6
  import _isGlob from 'is-glob';
7
7
  import fastGlob, {type FastGlobOptions} from 'fast-glob';
8
8
  import {isMatch} from 'micromatch';
9
+ import {normalizeSeparators} from './path';
9
10
 
10
- function normalizePath(p: string): string {
11
- return p.replace(/\\/g, '/');
11
+ export function isGlob(p: FilePath): any {
12
+ return _isGlob(normalizeSeparators(p));
12
13
  }
13
14
 
14
- export function isGlob(p: FilePath) {
15
- return _isGlob(normalizePath(p));
16
- }
17
-
18
- export function isGlobMatch(filePath: FilePath, glob: Glob) {
19
- return isMatch(filePath, normalizePath(glob));
15
+ export function isGlobMatch(filePath: FilePath, glob: Glob): any {
16
+ return isMatch(filePath, normalizeSeparators(glob));
20
17
  }
21
18
 
22
19
  export function globSync(
23
20
  p: FilePath,
24
- options: FastGlobOptions<FilePath>,
21
+ fs: FileSystem,
22
+ options?: FastGlobOptions<FilePath>,
25
23
  ): Array<FilePath> {
26
- return fastGlob.sync(normalizePath(p), options);
24
+ // $FlowFixMe
25
+ options = {
26
+ ...options,
27
+ fs: {
28
+ statSync: p => {
29
+ return fs.statSync(p);
30
+ },
31
+ lstatSync: p => {
32
+ // Our FileSystem interface doesn't have lstat support at the moment,
33
+ // but this is fine for our purposes since we follow symlinks by default.
34
+ return fs.statSync(p);
35
+ },
36
+ readdirSync: (p, opts) => {
37
+ return fs.readdirSync(p, opts);
38
+ },
39
+ },
40
+ };
41
+
42
+ // $FlowFixMe
43
+ return fastGlob.sync(normalizeSeparators(p), options);
27
44
  }
28
45
 
29
46
  export function glob(
@@ -66,5 +83,6 @@ export function glob(
66
83
  },
67
84
  };
68
85
 
69
- return fastGlob(normalizePath(p), options);
86
+ // $FlowFixMe Added in Flow 0.121.0 upgrade in #4381
87
+ return fastGlob(normalizeSeparators(p), options);
70
88
  }
package/src/hash.js ADDED
@@ -0,0 +1,34 @@
1
+ // @flow strict-local
2
+
3
+ import type {Readable} from 'stream';
4
+ import type {FileSystem} from '@parcel/fs';
5
+
6
+ import {objectSortedEntriesDeep} from './collection';
7
+ import {hashString, Hash} from '@parcel/hash';
8
+
9
+ export function hashStream(stream: Readable): Promise<string> {
10
+ let hash = new Hash();
11
+ return new Promise((resolve, reject) => {
12
+ stream.on('error', err => {
13
+ reject(err);
14
+ });
15
+ stream
16
+ .on('data', chunk => {
17
+ hash.writeBuffer(chunk);
18
+ })
19
+ .on('end', function () {
20
+ resolve(hash.finish());
21
+ })
22
+ .on('error', err => {
23
+ reject(err);
24
+ });
25
+ });
26
+ }
27
+
28
+ export function hashObject(obj: {+[string]: mixed, ...}): string {
29
+ return hashString(JSON.stringify(objectSortedEntriesDeep(obj)));
30
+ }
31
+
32
+ export function hashFile(fs: FileSystem, filePath: string): Promise<string> {
33
+ return hashStream(fs.createReadStream(filePath));
34
+ }
@@ -9,7 +9,7 @@ import type {FileSystem} from '@parcel/fs';
9
9
  import http from 'http';
10
10
  import https from 'https';
11
11
  import nullthrows from 'nullthrows';
12
- import {getCertificate, generateCertificate} from '../';
12
+ import {getCertificate, generateCertificate} from './';
13
13
 
14
14
  type CreateHTTPServerOpts = {|
15
15
  https: ?(HTTPSOptions | boolean),
@@ -34,19 +34,17 @@ export async function createHTTPServer(
34
34
  if (!options.https) {
35
35
  server = http.createServer(options.listener);
36
36
  } else if (options.https === true) {
37
- server = https.createServer(
38
- await generateCertificate(
39
- options.outputFS,
40
- options.cacheDir,
41
- options.host,
42
- ),
43
- options.listener,
37
+ let {cert, key} = await generateCertificate(
38
+ options.outputFS,
39
+ options.cacheDir,
40
+ options.host,
44
41
  );
42
+
43
+ server = https.createServer({cert, key}, options.listener);
45
44
  } else {
46
- server = https.createServer(
47
- await getCertificate(options.inputFS, options.https),
48
- options.listener,
49
- );
45
+ let {cert, key} = await getCertificate(options.inputFS, options.https);
46
+
47
+ server = https.createServer({cert, key}, options.listener);
50
48
  }
51
49
 
52
50
  // HTTPServer#close only stops accepting new connections, and does not close existing ones.
package/src/index.js CHANGED
@@ -1,43 +1,72 @@
1
1
  // @flow strict-local
2
- export type * from './generateBundleReport';
3
- export type * from './prettyError';
2
+ export type * from './config';
3
+ export type * from './Deferred';
4
+ export type * from './generateBuildMetrics';
5
+ export type * from './http-server';
6
+ export type * from './path';
4
7
  export type * from './prettyDiagnostic';
8
+ export type * from './schema';
5
9
 
6
10
  export {default as countLines} from './countLines';
7
- export {default as generateBundleReport} from './generateBundleReport';
11
+ export {default as generateBuildMetrics} from './generateBuildMetrics';
8
12
  export {default as generateCertificate} from './generateCertificate';
9
13
  export {default as getCertificate} from './getCertificate';
10
14
  export {default as getRootDir} from './getRootDir';
15
+ export {default as isDirectoryInside} from './isDirectoryInside';
11
16
  export {default as isURL} from './is-url';
12
17
  export {default as objectHash} from './objectHash';
13
18
  export {default as prettifyTime} from './prettifyTime';
14
- export {default as prettyError} from './prettyError';
15
19
  export {default as prettyDiagnostic} from './prettyDiagnostic';
16
20
  export {default as PromiseQueue} from './PromiseQueue';
17
- // $FlowFixMe this is untyped
18
- export {default as promisify} from './promisify';
19
21
  export {default as validateSchema} from './schema';
20
22
  export {default as TapStream} from './TapStream';
21
23
  export {default as urlJoin} from './urlJoin';
22
- export {default as loadSourceMapUrl} from './loadSourceMapUrl';
23
24
  export {default as relativeUrl} from './relativeUrl';
24
25
  export {default as createDependencyLocation} from './dependency-location';
25
26
  export {default as debounce} from './debounce';
26
27
  export {default as throttle} from './throttle';
28
+ export {default as openInBrowser} from './openInBrowser';
27
29
 
28
- export * from './blob';
29
- export * from './collection';
30
- export * from './config';
31
- export * from './DefaultMap';
32
- export * from './Deferred';
33
- export * from './glob';
34
- export * from './md5';
35
- export * from './schema';
36
- export * from './http-server';
37
- export * from './path';
38
- export * from './replaceBundleReferences';
39
- export * from './stream';
40
- export * from './resolve';
41
- export * from './relativeBundlePath';
42
- export * from './ansi-html';
43
- export * from './escape-html';
30
+ // Explicit re-exports instead of export * for lazy require performance
31
+ export {findAlternativeNodeModules, findAlternativeFiles} from './alternatives';
32
+ export {blobToBuffer, blobToString} from './blob';
33
+ export {
34
+ unique,
35
+ objectSortedEntries,
36
+ objectSortedEntriesDeep,
37
+ setDifference,
38
+ setIntersect,
39
+ setUnion,
40
+ } from './collection';
41
+ export {resolveConfig, resolveConfigSync, loadConfig} from './config';
42
+ export {DefaultMap, DefaultWeakMap} from './DefaultMap';
43
+ export {makeDeferredWithPromise} from './Deferred';
44
+ export {isGlob, isGlobMatch, globSync, glob} from './glob';
45
+ export {hashStream, hashObject, hashFile} from './hash';
46
+ export {SharedBuffer} from './shared-buffer';
47
+ export {fuzzySearch} from './schema';
48
+ export {createHTTPServer} from './http-server';
49
+ export {normalizePath, normalizeSeparators, relativePath} from './path';
50
+ export {
51
+ replaceURLReferences,
52
+ replaceInlineReferences,
53
+ } from './replaceBundleReferences';
54
+ export {
55
+ measureStreamLength,
56
+ readableFromStringOrBuffer,
57
+ bufferStream,
58
+ blobToStream,
59
+ streamFromPromise,
60
+ fallbackStream,
61
+ } from './stream';
62
+ export {relativeBundlePath} from './relativeBundlePath';
63
+ export {ansiHtml} from './ansi-html';
64
+ export {escapeHTML} from './escape-html';
65
+ export {
66
+ SOURCEMAP_RE,
67
+ SOURCEMAP_EXTENSIONS,
68
+ matchSourceMappingURL,
69
+ loadSourceMapUrl,
70
+ loadSourceMap,
71
+ remapSourceLocation,
72
+ } from './sourcemap';
package/src/is-url.js CHANGED
@@ -1,6 +1,6 @@
1
1
  // @flow
2
2
 
3
- const _isURL = require('is-url');
3
+ import _isURL from 'is-url';
4
4
 
5
5
  // Matches anchor (ie: #raptors)
6
6
  const ANCHOR_REGEXP = /^#/;
@@ -0,0 +1,11 @@
1
+ // @flow strict-local
2
+ import type {FilePath} from '@parcel/types';
3
+ import path from 'path';
4
+
5
+ export default function isDirectoryInside(
6
+ child: FilePath,
7
+ parent: FilePath,
8
+ ): boolean {
9
+ const relative = path.relative(parent, child);
10
+ return !relative.startsWith('..') && !path.isAbsolute(relative);
11
+ }
@@ -0,0 +1,64 @@
1
+ // @flow
2
+
3
+ import open from 'open';
4
+ import {execSync} from 'child_process';
5
+ import logger from '@parcel/logger';
6
+
7
+ // Chrome app name is platform dependent. we should not hard code it.
8
+ // https://github.com/react-native-community/cli/blob/e2be8a905285d9b37512fc78c9755b9635ecf805/packages/cli/src/commands/server/launchDebugger.ts#L28
9
+ function getChromeAppName(): string {
10
+ switch (process.platform) {
11
+ case 'darwin':
12
+ return 'google chrome';
13
+ case 'win32':
14
+ return 'chrome';
15
+ case 'linux':
16
+ if (commandExistsUnixSync('google-chrome')) {
17
+ return 'google-chrome';
18
+ }
19
+ if (commandExistsUnixSync('chromium-browser')) {
20
+ return 'chromium-browser';
21
+ }
22
+ return 'chromium';
23
+
24
+ default:
25
+ return 'google-chrome';
26
+ }
27
+ }
28
+
29
+ function commandExistsUnixSync(commandName: string) {
30
+ try {
31
+ const stdout = execSync(
32
+ `command -v ${commandName} 2>/dev/null` +
33
+ ` && { echo >&1 '${commandName} found'; exit 0; }`,
34
+ );
35
+ return !!stdout;
36
+ } catch (error) {
37
+ return false;
38
+ }
39
+ }
40
+
41
+ function getAppName(appName: string): string {
42
+ if (['google', 'chrome'].includes(appName)) {
43
+ return getChromeAppName();
44
+ } else if (['brave', 'Brave'].includes(appName)) {
45
+ return 'Brave Browser';
46
+ } else return appName;
47
+ }
48
+
49
+ export default async function openInBrowser(url: string, browser: string) {
50
+ try {
51
+ const options =
52
+ typeof browser === 'string' && browser.length > 0
53
+ ? {app: [getAppName(browser)]}
54
+ : undefined;
55
+
56
+ await open(url, options);
57
+ } catch (err) {
58
+ logger.error(
59
+ `Unexpected error while opening in browser: ${browser}`,
60
+ '@parcel/utils',
61
+ );
62
+ logger.error(err, '@parcel/utils');
63
+ }
64
+ }
package/src/path.js CHANGED
@@ -1,16 +1,48 @@
1
1
  // @flow strict-local
2
-
3
2
  import type {FilePath} from '@parcel/types';
4
3
  import path from 'path';
5
4
 
6
- const COMMON_SEPARATORS = ['/', '\\'];
5
+ const ABSOLUTE_PATH_REGEX = /^([a-zA-Z]:){0,1}[\\/]+/;
6
+ const SEPARATOR_REGEX = /[\\]+/g;
7
+
8
+ export function isAbsolute(filepath: string): boolean {
9
+ return ABSOLUTE_PATH_REGEX.test(filepath);
10
+ }
7
11
 
8
12
  export function normalizeSeparators(filePath: FilePath): FilePath {
9
- let ret = filePath;
13
+ return filePath.replace(SEPARATOR_REGEX, '/');
14
+ }
15
+
16
+ export type PathOptions = {
17
+ noLeadingDotSlash?: boolean,
18
+ ...
19
+ };
20
+
21
+ export function normalizePath(
22
+ filePath: FilePath,
23
+ leadingDotSlash: boolean = true,
24
+ ): FilePath {
25
+ if (
26
+ leadingDotSlash &&
27
+ (filePath[0] !== '.' ||
28
+ (filePath[1] !== '.' && filePath[1] !== '/' && filePath[1] !== '\\')) &&
29
+ !path.isAbsolute(filePath)
30
+ ) {
31
+ return normalizeSeparators('./' + filePath);
32
+ } else {
33
+ return normalizeSeparators(filePath);
34
+ }
35
+ }
10
36
 
11
- for (let separator of COMMON_SEPARATORS) {
12
- ret = ret.split(separator).join(path.sep);
37
+ export function relativePath(
38
+ from: string,
39
+ to: string,
40
+ leadingDotSlash: boolean = true,
41
+ ): FilePath {
42
+ // Fast path
43
+ if (to.startsWith(from + '/')) {
44
+ return (leadingDotSlash ? './' : '') + to.slice(from.length + 1);
13
45
  }
14
46
 
15
- return ret;
47
+ return normalizePath(path.relative(from, to), leadingDotSlash);
16
48
  }
@@ -1,61 +1,89 @@
1
1
  // @flow strict-local
2
2
  import type {Diagnostic} from '@parcel/diagnostic';
3
+ import type {PluginOptions} from '@parcel/types';
3
4
 
4
5
  import formatCodeFrame from '@parcel/codeframe';
5
6
  import mdAnsi from '@parcel/markdown-ansi';
6
7
  import chalk from 'chalk';
7
8
  import path from 'path';
9
+ import nullthrows from 'nullthrows';
10
+ // $FlowFixMe
11
+ import terminalLink from 'terminal-link';
8
12
 
9
13
  export type AnsiDiagnosticResult = {|
10
14
  message: string,
11
15
  stack: string,
12
16
  codeframe: string,
13
17
  hints: Array<string>,
18
+ documentation: string,
14
19
  |};
15
20
 
16
- export default function prettyDiagnostic(
21
+ export default async function prettyDiagnostic(
17
22
  diagnostic: Diagnostic,
18
- ): AnsiDiagnosticResult {
23
+ options?: PluginOptions,
24
+ terminalWidth?: number,
25
+ ): Promise<AnsiDiagnosticResult> {
19
26
  let {
20
27
  origin,
21
28
  message,
22
29
  stack,
23
- codeFrame,
30
+ codeFrames,
24
31
  hints,
25
- filePath,
26
- language,
27
32
  skipFormatting,
33
+ documentationURL,
28
34
  } = diagnostic;
29
35
 
30
36
  let result = {
31
37
  message:
32
38
  mdAnsi(`**${origin ?? 'unknown'}**: `) +
33
39
  (skipFormatting ? message : mdAnsi(message)),
34
- stack: stack ?? filePath ?? '',
40
+ stack: '',
35
41
  codeframe: '',
36
42
  hints: [],
43
+ documentation: '',
37
44
  };
38
45
 
39
- if (codeFrame !== undefined) {
40
- let highlights = Array.isArray(codeFrame.codeHighlights)
41
- ? codeFrame.codeHighlights
42
- : [codeFrame.codeHighlights];
46
+ if (codeFrames != null) {
47
+ for (let codeFrame of codeFrames) {
48
+ let filePath = codeFrame.filePath;
49
+ if (filePath != null && options && !path.isAbsolute(filePath)) {
50
+ filePath = path.join(options.projectRoot, filePath);
51
+ }
43
52
 
44
- let formattedCodeFrame = formatCodeFrame(codeFrame.code, highlights, {
45
- useColor: true,
46
- syntaxHighlighting: true,
47
- language:
48
- // $FlowFixMe sketchy null checks do not matter here...
49
- language || (filePath ? path.extname(filePath).substr(1) : undefined),
50
- });
53
+ let highlights = codeFrame.codeHighlights;
54
+ let code =
55
+ codeFrame.code ??
56
+ (options &&
57
+ (await options.inputFS.readFile(nullthrows(filePath), 'utf8')));
58
+
59
+ let formattedCodeFrame = '';
60
+ if (code != null) {
61
+ formattedCodeFrame = formatCodeFrame(code, highlights, {
62
+ useColor: true,
63
+ syntaxHighlighting: true,
64
+ language:
65
+ // $FlowFixMe sketchy null checks do not matter here...
66
+ codeFrame.language ||
67
+ (filePath != null ? path.extname(filePath).substr(1) : undefined),
68
+ terminalWidth,
69
+ });
70
+ }
71
+
72
+ result.codeframe +=
73
+ typeof filePath !== 'string'
74
+ ? ''
75
+ : chalk.gray.underline(
76
+ `${filePath}:${highlights[0].start.line}:${highlights[0].start.column}\n`,
77
+ );
78
+ result.codeframe += formattedCodeFrame;
79
+ if (codeFrame !== codeFrames[codeFrames.length - 1]) {
80
+ result.codeframe += '\n\n';
81
+ }
82
+ }
83
+ }
51
84
 
52
- result.codeframe +=
53
- typeof filePath !== 'string'
54
- ? ''
55
- : chalk.underline(
56
- `${filePath}:${highlights[0].start.line}:${highlights[0].start.column}\n`,
57
- );
58
- result.codeframe += formattedCodeFrame;
85
+ if (stack != null) {
86
+ result.stack = stack;
59
87
  }
60
88
 
61
89
  if (Array.isArray(hints) && hints.length) {
@@ -64,5 +92,11 @@ export default function prettyDiagnostic(
64
92
  });
65
93
  }
66
94
 
95
+ if (documentationURL != null) {
96
+ result.documentation = terminalLink('Learn more', documentationURL, {
97
+ fallback: (text, url) => `${text}: ${url}`,
98
+ });
99
+ }
100
+
67
101
  return result;
68
102
  }
@@ -1,21 +1,16 @@
1
1
  // @flow strict-local
2
2
 
3
- import type {Bundle} from '@parcel/types';
3
+ import type {FilePath, NamedBundle} from '@parcel/types';
4
4
 
5
5
  import path from 'path';
6
- import nullthrows from 'nullthrows';
6
+ import {relativePath} from './path';
7
7
 
8
8
  export function relativeBundlePath(
9
- from: Bundle,
10
- to: Bundle,
9
+ from: NamedBundle,
10
+ to: NamedBundle,
11
11
  opts: {|leadingDotSlash: boolean|} = {leadingDotSlash: true},
12
- ) {
13
- let p = path
14
- .relative(path.dirname(nullthrows(from.filePath)), nullthrows(to.filePath))
15
- .replace(/\\/g, '/');
16
- if (opts.leadingDotSlash && p[0] !== '.') {
17
- p = './' + p;
18
- }
19
-
20
- return p;
12
+ ): FilePath {
13
+ let fromPath = path.join(from.target.distDir, from.name);
14
+ let toPath = path.join(to.target.distDir, to.name);
15
+ return relativePath(path.dirname(fromPath), toPath, opts.leadingDotSlash);
21
16
  }