Skip to content
GitLab
Menu
Why GitLab
Pricing
Contact Sales
Explore
Why GitLab
Pricing
Contact Sales
Explore
Sign in
Get free trial
Primary navigation
Search or go to…
Project
H
html-validate
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Privacy statement
Keyboard shortcuts
?
What's new
6
Snippets
Groups
Projects
Show more breadcrumbs
html-validate
html-validate
Commits
f152a128
Commit
f152a128
authored
5 years ago
by
David Sveningsson
Browse files
Options
Downloads
Patches
Plain Diff
feat(cli): handle passing directories
parent
420dc88a
No related branches found
No related tags found
Loading
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/cli/expand-files.ts
+25
-2
25 additions, 2 deletions
src/cli/expand-files.ts
with
25 additions
and
2 deletions
src/cli/expand-files.ts
+
25
−
2
View file @
f152a128
import
fs
from
"
fs
"
;
import
glob
from
"
glob
"
;
import
path
from
"
path
"
;
interface
ExpandOptions
{
cwd
?:
string
;
}
function
isDirectory
(
filename
:
string
):
boolean
{
const
st
=
fs
.
statSync
(
filename
);
return
st
.
isDirectory
();
}
/**
* Takes a number of file patterns (globs) and returns array of expanded
* filenames.
...
...
@@ -14,12 +21,28 @@ export function expandFiles(
):
string
[]
{
const
cwd
=
options
.
cwd
||
process
.
cwd
();
const
files
=
patterns
.
reduce
((
files
:
string
[],
pattern
:
string
)
=>
{
const
files
=
patterns
.
reduce
((
result
:
string
[],
pattern
:
string
)
=>
{
/* process - as standard input */
if
(
pattern
===
"
-
"
)
{
pattern
=
"
/dev/stdin
"
;
}
return
files
.
concat
(
glob
.
sync
(
pattern
,
{
cwd
}));
for
(
const
filename
of
glob
.
sync
(
pattern
,
{
cwd
}))
{
/* if file is a directory recursively expand files from it */
const
fullpath
=
path
.
join
(
cwd
,
filename
);
if
(
isDirectory
(
fullpath
))
{
const
dir
=
expandFiles
(
[
"
**
"
],
Object
.
assign
({},
options
,
{
cwd
:
fullpath
})
);
result
=
result
.
concat
(
dir
.
map
(
cur
=>
path
.
join
(
filename
,
cur
)));
continue
;
}
result
.
push
(
filename
);
}
return
result
;
},
[]);
/* only return unique matches */
...
...
This diff is collapsed.
Click to expand it.
David Sveningsson
@extsidvind
mentioned in commit
82e5d9b5
·
5 years ago
mentioned in commit
82e5d9b5
mentioned in commit 82e5d9b5c9df1014449df9dab84f4efe9e59cfc3
Toggle commit list
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment