Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/main/resources/base.properties
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,9 @@ commons.srcdir.php = ${commons.srcdir}/php
commons.testdir.php = ${commons.testdir}/php

# Base directories with JavaScript source and test files
commons.srcdir.js = ${commons.srcdir}/js
commons.testdir.js = ${commons.testdir}/js
commons.srcdir.js = ${commons.srcdir}/js
commons.testdir.js = ${commons.testdir}/js
commons.vendordir.js = vendor

# Base directories with resource files
commons.srcdir.resource = ${commons.srcdir}/resources
Expand Down
2 changes: 1 addition & 1 deletion src/main/xml/exts/jshint.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
<arg value="${npm.local.modulesdir}/${jshint.executable}" />
<fileset dir="${commons.srcdir.js}" erroronmissingdir="false">
<include name="**/*.js" />
<exclude name="vendor/**" />
<exclude name="${commons.vendordir.js}/**" />
<modified>
<param name="cache.cachefile" value="${jshint.cachefile}" />
</modified>
Expand Down
2 changes: 1 addition & 1 deletion src/main/xml/exts/jslint.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<arg line="${jslint.options}" />
<fileset dir="${commons.srcdir.js}" erroronmissingdir="false">
<include name="**/*.js" />
<exclude name="vendor/**" />
<exclude name="${commons.vendordir.js}/**" />
<modified>
<param name="cache.cachefile" value="${jslint.cachefile}" />
</modified>
Expand Down