ESLint and Stylelint during build
This commit is contained in:
parent
c3166e08b4
commit
e3b3e65409
13
build.sh
13
build.sh
|
@ -76,6 +76,17 @@ BuildWithXbuild()
|
||||||
CheckExitCode xbuild /p:Configuration=Release /p:Platform=x86 /t:Build /p:AllowedReferenceRelatedFileExtensions=.pdb $slnFile
|
CheckExitCode xbuild /p:Configuration=Release /p:Platform=x86 /t:Build /p:AllowedReferenceRelatedFileExtensions=.pdb $slnFile
|
||||||
}
|
}
|
||||||
|
|
||||||
|
LintUI()
|
||||||
|
{
|
||||||
|
ProgressStart 'ESLint'
|
||||||
|
CheckExitCode yarn eslint
|
||||||
|
ProgressEnd 'ESLint'
|
||||||
|
|
||||||
|
ProgressStart 'Stylelint'
|
||||||
|
CheckExitCode yarn stylelint
|
||||||
|
ProgressEnd 'Stylelint'
|
||||||
|
}
|
||||||
|
|
||||||
Build()
|
Build()
|
||||||
{
|
{
|
||||||
ProgressStart 'Build'
|
ProgressStart 'Build'
|
||||||
|
@ -102,6 +113,8 @@ RunGulp()
|
||||||
yarn install
|
yarn install
|
||||||
ProgressEnd 'yarn install'
|
ProgressEnd 'yarn install'
|
||||||
|
|
||||||
|
LintUI
|
||||||
|
|
||||||
ProgressStart 'Running gulp'
|
ProgressStart 'Running gulp'
|
||||||
CheckExitCode yarn run build --production
|
CheckExitCode yarn run build --production
|
||||||
ProgressEnd 'Running gulp'
|
ProgressEnd 'Running gulp'
|
||||||
|
|
Loading…
Reference in New Issue