@parcel/utils 2.7.0 → 2.8.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.
- package/lib/index.js +1320 -205
- package/lib/index.js.map +1 -1
- package/package.json +8 -8
- package/src/getModuleParts.js +23 -0
- package/src/index.js +1 -0
- package/src/prettyDiagnostic.js +4 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@parcel/utils",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.8.0",
|
|
4
4
|
"description": "Blazing fast, zero configuration web application bundler",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"publishConfig": {
|
|
@@ -33,12 +33,12 @@
|
|
|
33
33
|
}
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@parcel/codeframe": "2.
|
|
37
|
-
"@parcel/diagnostic": "2.
|
|
38
|
-
"@parcel/hash": "2.
|
|
39
|
-
"@parcel/logger": "2.
|
|
40
|
-
"@parcel/markdown-ansi": "2.
|
|
41
|
-
"@parcel/source-map": "^2.
|
|
36
|
+
"@parcel/codeframe": "2.8.0",
|
|
37
|
+
"@parcel/diagnostic": "2.8.0",
|
|
38
|
+
"@parcel/hash": "2.8.0",
|
|
39
|
+
"@parcel/logger": "2.8.0",
|
|
40
|
+
"@parcel/markdown-ansi": "2.8.0",
|
|
41
|
+
"@parcel/source-map": "^2.1.1",
|
|
42
42
|
"chalk": "^4.1.0"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
@@ -63,5 +63,5 @@
|
|
|
63
63
|
"./src/http-server.js": false,
|
|
64
64
|
"./src/openInBrowser.js": false
|
|
65
65
|
},
|
|
66
|
-
"gitHead": "
|
|
66
|
+
"gitHead": "c3bbe0a6160186f496ca2f9e9bead9376c0522f1"
|
|
67
67
|
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
// @flow strict-local
|
|
2
|
+
import path from 'path';
|
|
3
|
+
|
|
4
|
+
import {normalizeSeparators} from './path';
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Returns the package name and the optional subpath
|
|
8
|
+
*/
|
|
9
|
+
export default function getModuleParts(_name: string): [string, ?string] {
|
|
10
|
+
let name = path.normalize(_name);
|
|
11
|
+
let splitOn = name.indexOf(path.sep);
|
|
12
|
+
if (name.charAt(0) === '@') {
|
|
13
|
+
splitOn = name.indexOf(path.sep, splitOn + 1);
|
|
14
|
+
}
|
|
15
|
+
if (splitOn < 0) {
|
|
16
|
+
return [normalizeSeparators(name), undefined];
|
|
17
|
+
} else {
|
|
18
|
+
return [
|
|
19
|
+
normalizeSeparators(name.substring(0, splitOn)),
|
|
20
|
+
name.substring(splitOn + 1) || undefined,
|
|
21
|
+
];
|
|
22
|
+
}
|
|
23
|
+
}
|
package/src/index.js
CHANGED
|
@@ -11,6 +11,7 @@ export {default as countLines} from './countLines';
|
|
|
11
11
|
export {default as generateBuildMetrics} from './generateBuildMetrics';
|
|
12
12
|
export {default as generateCertificate} from './generateCertificate';
|
|
13
13
|
export {default as getCertificate} from './getCertificate';
|
|
14
|
+
export {default as getModuleParts} from './getModuleParts';
|
|
14
15
|
export {default as getRootDir} from './getRootDir';
|
|
15
16
|
export {default as isDirectoryInside} from './isDirectoryInside';
|
|
16
17
|
export {default as isURL} from './is-url';
|
package/src/prettyDiagnostic.js
CHANGED
|
@@ -6,7 +6,6 @@ import formatCodeFrame from '@parcel/codeframe';
|
|
|
6
6
|
import mdAnsi from '@parcel/markdown-ansi';
|
|
7
7
|
import chalk from 'chalk';
|
|
8
8
|
import path from 'path';
|
|
9
|
-
import nullthrows from 'nullthrows';
|
|
10
9
|
// $FlowFixMe
|
|
11
10
|
import terminalLink from 'terminal-link';
|
|
12
11
|
|
|
@@ -60,10 +59,10 @@ export default async function prettyDiagnostic(
|
|
|
60
59
|
}
|
|
61
60
|
|
|
62
61
|
let highlights = codeFrame.codeHighlights;
|
|
63
|
-
let code =
|
|
64
|
-
|
|
65
|
-
(
|
|
66
|
-
|
|
62
|
+
let code = codeFrame.code;
|
|
63
|
+
if (code == null && options && filePath != null) {
|
|
64
|
+
code = await options.inputFS.readFile(filePath, 'utf8');
|
|
65
|
+
}
|
|
67
66
|
|
|
68
67
|
let formattedCodeFrame = '';
|
|
69
68
|
if (code != null) {
|