-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest
executable file
·56 lines (55 loc) · 1.32 KB
/
test
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/usr/bin/env node
const assert = require('assert');
const sourceMapExplorer = require('source-map-explorer');
const { sep } = require('path');
const expectedPackages = [
'<unmapped>',
'css-selector-tokenizer',
'cssesc',
'fastparse',
'icss-replace-symbols',
'lodash._arrayeach',
'lodash._baseeach',
'lodash._bindcallback',
'lodash._getnative',
'lodash.foreach',
'lodash.isarguments',
'lodash.isarray',
'lodash.keys',
'postcss',
'postcss-modules-local-by-default',
'postcss-modules-parser',
'postcss-modules-scope',
'postcss-modules-values',
'postcss-value-parser',
'regenerate',
'regexpu-core',
'regjsgen',
'regjsparser',
'rollup-plugin-node-builtins',
'src/index.js',
];
const packages = Object.keys(sourceMapExplorer('index.esm.min.js').files)
.map(path =>
path.startsWith(`node_modules${sep}`)
? path
.split(new RegExp(`(?:^|${sep})node_modules${sep}`))
.slice(1)
.map(path => path.split('/')[0])
.join('.')
: path
)
.reduce(
(paths, path) => (paths.includes(path) ? paths : [...paths, path]),
[]
)
.sort();
try {
assert.deepStrictEqual(packages, expectedPackages);
} catch (error) {
console.error(
'Extra packages:',
packages.filter(package => !expectedPackages.includes(package)).join(', ')
);
throw error;
}