@parcel/utils 2.6.0 → 2.7.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parcel/utils",
3
- "version": "2.6.0",
3
+ "version": "2.7.0",
4
4
  "description": "Blazing fast, zero configuration web application bundler",
5
5
  "license": "MIT",
6
6
  "publishConfig": {
@@ -33,11 +33,11 @@
33
33
  }
34
34
  },
35
35
  "dependencies": {
36
- "@parcel/codeframe": "2.6.0",
37
- "@parcel/diagnostic": "2.6.0",
38
- "@parcel/hash": "2.6.0",
39
- "@parcel/logger": "2.6.0",
40
- "@parcel/markdown-ansi": "2.6.0",
36
+ "@parcel/codeframe": "2.7.0",
37
+ "@parcel/diagnostic": "2.7.0",
38
+ "@parcel/hash": "2.7.0",
39
+ "@parcel/logger": "2.7.0",
40
+ "@parcel/markdown-ansi": "2.7.0",
41
41
  "@parcel/source-map": "^2.0.0",
42
42
  "chalk": "^4.1.0"
43
43
  },
@@ -63,5 +63,5 @@
63
63
  "./src/http-server.js": false,
64
64
  "./src/openInBrowser.js": false
65
65
  },
66
- "gitHead": "f2d0a3a27d6e493b23ddc2edbc8a4c0053ff34ab"
66
+ "gitHead": "9e5d05586577e89991ccf90400f2c741dca11aa3"
67
67
  }
package/src/collection.js CHANGED
@@ -55,3 +55,15 @@ export function setIntersect<T>(a: Set<T>, b: Set<T>): void {
55
55
  export function setUnion<T>(a: Iterable<T>, b: Iterable<T>): Set<T> {
56
56
  return new Set([...a, ...b]);
57
57
  }
58
+
59
+ export function setEqual<T>(a: Set<T>, b: Set<T>): boolean {
60
+ if (a.size != b.size) {
61
+ return false;
62
+ }
63
+ for (let entry of a) {
64
+ if (!b.has(entry)) {
65
+ return false;
66
+ }
67
+ }
68
+ return true;
69
+ }
package/src/config.js CHANGED
@@ -71,7 +71,7 @@ export async function loadConfig(
71
71
 
72
72
  try {
73
73
  let extname = path.extname(configFile).slice(1);
74
- if (extname === 'js') {
74
+ if (extname === 'js' || extname === 'cjs') {
75
75
  let output = {
76
76
  // $FlowFixMe
77
77
  config: clone(require(configFile)),
@@ -1,7 +1,15 @@
1
1
  // @flow strict-local
2
2
 
3
- import type {Server as HTTPOnlyServer} from 'http';
4
- import type {Server as HTTPSServer} from 'https';
3
+ import type {
4
+ Server as HTTPOnlyServer,
5
+ IncomingMessage as HTTPRequest,
6
+ ServerResponse as HTTPResponse,
7
+ } from 'http';
8
+ import type {
9
+ Server as HTTPSServer,
10
+ IncomingMessage as HTTPSRequest,
11
+ ServerResponse as HTTPSResponse,
12
+ } from 'https';
5
13
  import type {Socket} from 'net';
6
14
  import type {FilePath, HTTPSOptions} from '@parcel/types';
7
15
  import type {FileSystem} from '@parcel/fs';
@@ -12,12 +20,16 @@ import nullthrows from 'nullthrows';
12
20
  import {getCertificate, generateCertificate} from './';
13
21
 
14
22
  type CreateHTTPServerOpts = {|
15
- https: ?(HTTPSOptions | boolean),
16
- inputFS: FileSystem,
17
- outputFS: FileSystem,
18
- cacheDir: FilePath,
19
- listener?: (mixed, mixed) => void,
23
+ listener?: (HTTPRequest | HTTPSRequest, HTTPResponse | HTTPSResponse) => void,
20
24
  host?: string,
25
+ ...
26
+ | {|
27
+ https: ?(HTTPSOptions | boolean),
28
+ inputFS: FileSystem,
29
+ outputFS: FileSystem,
30
+ cacheDir: FilePath,
31
+ |}
32
+ | {||},
21
33
  |};
22
34
 
23
35
  export type HTTPServer = HTTPOnlyServer | HTTPSServer;
package/src/index.js CHANGED
@@ -35,12 +35,14 @@ export {
35
35
  objectSortedEntries,
36
36
  objectSortedEntriesDeep,
37
37
  setDifference,
38
+ setEqual,
38
39
  setIntersect,
39
40
  setUnion,
40
41
  } from './collection';
41
42
  export {resolveConfig, resolveConfigSync, loadConfig} from './config';
42
43
  export {DefaultMap, DefaultWeakMap} from './DefaultMap';
43
44
  export {makeDeferredWithPromise} from './Deferred';
45
+ export {getProgressMessage} from './progress-message.js';
44
46
  export {isGlob, isGlobMatch, globSync, glob, globToRegex} from './glob';
45
47
  export {hashStream, hashObject, hashFile} from './hash';
46
48
  export {SharedBuffer} from './shared-buffer';
@@ -0,0 +1,22 @@
1
+ // @flow strict-local
2
+ import type {BuildProgressEvent} from '@parcel/types';
3
+
4
+ import path from 'path';
5
+
6
+ export function getProgressMessage(event: BuildProgressEvent): ?string {
7
+ switch (event.phase) {
8
+ case 'transforming':
9
+ return `Building ${path.basename(event.filePath)}...`;
10
+
11
+ case 'bundling':
12
+ return 'Bundling...';
13
+
14
+ case 'packaging':
15
+ return `Packaging ${event.bundle.displayName}...`;
16
+
17
+ case 'optimizing':
18
+ return `Optimizing ${event.bundle.displayName}...`;
19
+ }
20
+
21
+ return null;
22
+ }
@@ -47,4 +47,52 @@ describe('loadConfig', () => {
47
47
  {},
48
48
  );
49
49
  });
50
+
51
+ it('should load with js', async () => {
52
+ assert.deepEqual(
53
+ (
54
+ await loadConfig(
55
+ fs,
56
+ path.join(__dirname, './input/config/config.js'),
57
+ ['config.js'],
58
+ path.join(__dirname, './input/config/'),
59
+ )
60
+ )?.config,
61
+ {
62
+ hoge: 'fuga',
63
+ },
64
+ );
65
+ });
66
+
67
+ it('should load with cjs', async () => {
68
+ assert.deepEqual(
69
+ (
70
+ await loadConfig(
71
+ fs,
72
+ path.join(__dirname, './input/config/config.cjs'),
73
+ ['config.cjs'],
74
+ path.join(__dirname, './input/config/'),
75
+ )
76
+ )?.config,
77
+ {
78
+ hoge: 'fuga',
79
+ },
80
+ );
81
+ });
82
+
83
+ it('should load without an extension as json', async () => {
84
+ assert.deepEqual(
85
+ (
86
+ await loadConfig(
87
+ fs,
88
+ path.join(__dirname, './input/config/.testrc'),
89
+ ['.testrc'],
90
+ path.join(__dirname, './input/config/'),
91
+ )
92
+ )?.config,
93
+ {
94
+ hoge: 'fuga',
95
+ },
96
+ );
97
+ });
50
98
  });
@@ -0,0 +1,3 @@
1
+ {
2
+ "hoge": "fuga"
3
+ }
@@ -0,0 +1,3 @@
1
+ module.exports = {
2
+ hoge: 'fuga',
3
+ };
@@ -0,0 +1,3 @@
1
+ module.exports = {
2
+ hoge: 'fuga',
3
+ };