2
2
3
3
const isNode = require ( 'detect-node' )
4
4
const flatmap = require ( 'flatmap' )
5
- const escape = require ( 'glob-escape' )
6
-
7
- function strip ( name , base ) {
8
- const smallBase = base
9
- . split ( '/' )
10
- . slice ( 0 , - 1 )
11
- . join ( '/' ) + '/'
12
- return name . replace ( smallBase , '' )
13
- }
14
5
15
6
function loadPaths ( opts , file ) {
16
7
const path = require ( 'path' )
@@ -29,41 +20,43 @@ function loadPaths (opts, file) {
29
20
if ( stats . isDirectory ( ) && opts . recursive ) {
30
21
// glob requires a POSIX filename
31
22
file = file . split ( path . sep ) . join ( '/' )
32
- const globEscapedDir = escape ( file ) + ( file . endsWith ( '/' ) ? '' : '/' )
33
- const mg = new glob . sync . GlobSync ( `${ globEscapedDir } ` + '**/*' , {
23
+ const fullDir = file + ( file . endsWith ( '/' ) ? '' : '/' )
24
+ let dirName = fullDir . split ( '/' )
25
+ dirName = dirName [ dirName . length - 2 ] + '/'
26
+ const mg = new glob . sync . GlobSync ( '**/*' , {
27
+ cwd : file ,
34
28
follow : followSymlinks ,
35
29
dot : opts . hidden ,
36
- ignore : ( opts . ignore || [ ] ) . map ( ( ignoreGlob ) => {
37
- return globEscapedDir + ignoreGlob
38
- } )
30
+ ignore : opts . ignore
39
31
} )
40
32
41
33
return mg . found
42
34
. map ( ( name ) => {
35
+ const fqn = fullDir + name
43
36
// symlinks
44
- if ( mg . symlinks [ name ] === true ) {
37
+ if ( mg . symlinks [ fqn ] === true ) {
45
38
return {
46
- path : strip ( name , file ) ,
39
+ path : dirName + name ,
47
40
symlink : true ,
48
41
dir : false ,
49
- content : fs . readlinkSync ( name )
42
+ content : fs . readlinkSync ( fqn )
50
43
}
51
44
}
52
45
53
46
// files
54
- if ( mg . cache [ name ] === 'FILE' ) {
47
+ if ( mg . cache [ fqn ] === 'FILE' ) {
55
48
return {
56
- path : strip ( name , file ) ,
49
+ path : dirName + name ,
57
50
symlink : false ,
58
51
dir : false ,
59
- content : fs . createReadStream ( name )
52
+ content : fs . createReadStream ( fqn )
60
53
}
61
54
}
62
55
63
56
// directories
64
- if ( mg . cache [ name ] === 'DIR' || mg . cache [ name ] instanceof Array ) {
57
+ if ( mg . cache [ fqn ] === 'DIR' || mg . cache [ fqn ] instanceof Array ) {
65
58
return {
66
- path : strip ( name , file ) ,
59
+ path : dirName + name ,
67
60
symlink : false ,
68
61
dir : true
69
62
}
@@ -86,7 +79,7 @@ function prepareFile (file, opts) {
86
79
return flatmap ( files , ( file ) => {
87
80
if ( typeof file === 'string' ) {
88
81
if ( ! isNode ) {
89
- throw new Error ( 'Can not add paths in node' )
82
+ throw new Error ( 'Can only add file paths in node' )
90
83
}
91
84
92
85
return loadPaths ( opts , file )
0 commit comments