File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ const COMPILER_DEFAULT_ARGS = {
94
94
* @return {* } A stream that finishes when compliation finishes.
95
95
*/
96
96
function compile ( srcs , out , args ) {
97
- // Get
97
+ // Get the compiler arguments, using the defaults if not specified.
98
98
const combinedArgs = Object . assign ( { } , COMPILER_DEFAULT_ARGS , args ) ;
99
99
return gulp
100
100
. src ( srcs )
@@ -138,6 +138,7 @@ function getTmpJsPath(locale) {
138
138
function repeatTaskForAllLocales ( taskName , dependencies , operation ) {
139
139
const tasks = [ ] ;
140
140
ALL_LOCALES . forEach ( ( locale ) => {
141
+ // Convert build-js-$ to build-js-fr, for example.
141
142
const replaceTokens = ( name ) => name . replace ( / \$ / g, locale ) ;
142
143
143
144
const localeTaskName = replaceTokens ( taskName ) ;
You can’t perform that action at this time.
0 commit comments