Skip to content

Commit

Permalink
Stylelint fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
tmeyer2115 committed Aug 18, 2021
1 parent 3097cdb commit 6567662
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
2 changes: 1 addition & 1 deletion conf/gulp-tasks/library.gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ function allLocaleJSBundles (isSearchBarOnly = false) {
return createJSBundlesForLanguages(ALL_LANGUAGES, isSearchBarOnly).then(() => {
copyAssetsForLocales(assetNames);
});
};
}

exports.default = function defaultLanguageJSBundles () {
return createJSBundlesForLanguages([DEFAULT_LOCALE]);
Expand Down
7 changes: 1 addition & 6 deletions conf/gulp-tasks/templates.gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,11 +96,6 @@ async function createTemplatesForLanguages (languages, isSearchBarOnly = false)
return new Promise(resolve => series(...localizedTasks)(resolve));
}

/**
*
* @param {boolean} isSearchBarOnly
* @returns
*/
function allLocaleTemplates (isSearchBarOnly = false) {
const assetNames = [
'answerstemplates-iife.compiled.min.js',
Expand All @@ -109,7 +104,7 @@ function allLocaleTemplates (isSearchBarOnly = false) {
return createTemplatesForLanguages(ALL_LANGUAGES, isSearchBarOnly).then(() => {
copyAssetsForLocales(assetNames);
});
};
}

exports.default = function defaultTemplates () {
return createTemplatesForLanguages([DEFAULT_LOCALE]);
Expand Down

0 comments on commit 6567662

Please sign in to comment.