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
edab9cfb
Commit
edab9cfb
authored
5 years ago
by
David Sveningsson
Browse files
Options
Downloads
Patches
Plain Diff
feat(cli): expose expandFiles function
parent
94ce2a85
No related branches found
No related tags found
Loading
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
package-lock.json
+1
-1
1 addition, 1 deletion
package-lock.json
src/cli/expand-files.ts
+18
-0
18 additions, 0 deletions
src/cli/expand-files.ts
src/cli/html-validate.ts
+5
-13
5 additions, 13 deletions
src/cli/html-validate.ts
with
24 additions
and
14 deletions
package-lock.json
+
1
−
1
View file @
edab9cfb
...
...
@@ -6165,7 +6165,7 @@
"dependencies": {
"canonical-path": {
"version": "0.0.2",
"resolved": "http://registry.npmjs.org/canonical-path/-/canonical-path-0.0.2.tgz",
"resolved": "http
s
://registry.npmjs.org/canonical-path/-/canonical-path-0.0.2.tgz",
"integrity": "sha1-4x65N6jJPuKgHfGDl5RyGQKHRXQ=",
"dev": true
}
...
...
This diff is collapsed.
Click to expand it.
src/cli/expand-files.ts
0 → 100644
+
18
−
0
View file @
edab9cfb
import
glob
from
"
glob
"
;
/**
* Takes a number of file patterns (globs) and returns array of expanded
* filenames.
*/
export
function
expandFiles
(
patterns
:
string
[]):
string
[]
{
const
files
=
patterns
.
reduce
((
files
:
string
[],
pattern
:
string
)
=>
{
/* process - as standard input */
if
(
pattern
===
"
-
"
)
{
pattern
=
"
/dev/stdin
"
;
}
return
files
.
concat
(
glob
.
sync
(
pattern
));
},
[]);
/* only return unique matches */
return
Array
.
from
(
new
Set
(
files
));
}
This diff is collapsed.
Click to expand it.
src/cli/html-validate.ts
+
5
−
13
View file @
edab9cfb
...
...
@@ -5,13 +5,13 @@ import { TokenDump } from "../engine";
import
{
UserError
}
from
"
../error/user-error
"
;
import
HtmlValidate
from
"
../htmlvalidate
"
;
import
{
Report
,
Reporter
,
Result
}
from
"
../reporter
"
;
import
{
expandFiles
}
from
"
./expand-files
"
;
import
{
getFormatter
}
from
"
./formatter
"
;
import
{
eventFormatter
}
from
"
./json
"
;
const
pkg
=
require
(
"
../../package.json
"
);
import
chalk
from
"
chalk
"
;
import
glob
from
"
glob
"
;
import
minimist
from
"
minimist
"
;
enum
Mode
{
...
...
@@ -193,23 +193,15 @@ if (isNaN(maxWarnings)) {
process
.
exit
(
1
);
}
const
files
=
argv
.
_
.
reduce
((
files
:
string
[],
pattern
:
string
)
=>
{
/* process - as standard input */
if
(
pattern
===
"
-
"
)
{
pattern
=
"
/dev/stdin
"
;
}
return
files
.
concat
(
glob
.
sync
(
pattern
));
},
[]);
const
unique
=
Array
.
from
(
new
Set
(
files
));
if
(
unique
.
length
===
0
)
{
const
files
=
expandFiles
(
argv
.
_
);
if
(
files
.
length
===
0
)
{
console
.
error
(
"
No files matching patterns
"
,
argv
.
_
);
process
.
exit
(
1
);
}
try
{
if
(
mode
===
Mode
.
LINT
)
{
const
result
=
lint
(
unique
);
const
result
=
lint
(
files
);
/* rename stdin if an explicit filename was passed */
if
(
argv
[
"
stdin-filename
"
])
{
...
...
@@ -231,7 +223,7 @@ try {
const
json
=
JSON
.
stringify
(
config
.
get
(),
null
,
2
);
console
.
log
(
json
);
}
else
{
const
output
=
dump
(
unique
,
mode
);
const
output
=
dump
(
files
,
mode
);
console
.
log
(
output
);
process
.
exit
(
0
);
}
...
...
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