Skip to content

Commit

Permalink
remove default value
Browse files Browse the repository at this point in the history
  • Loading branch information
Yen Truong committed May 17, 2022
1 parent 3f9f32c commit ca1032d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/build_i18n.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ jobs:
node-version: 16
cache: 'npm'
- run: npm ci
- run: echo ${{ matrix.language }}
- run: LANGUAGE=${{ matrix.language }} npm run ${{ inputs.build_script }}
- run: |
if [ "${{ matrix.language }}" == "en" ]; then
Expand Down
2 changes: 1 addition & 1 deletion conf/gulp-tasks/library.gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ function createJSBundlesForLanguages (languages, isSearchBarOnly = false) {
* with the corresponding language-locale pairs.
* @returns {Promise<Function>}
*/
function allLocaleJSBundles (isSearchBarOnly = false, languages = ALL_LANGUAGES) {
function allLocaleJSBundles (isSearchBarOnly = false, languages) {
const assetNames = [
'answers.js',
'answers.min.js',
Expand Down
2 changes: 1 addition & 1 deletion conf/gulp-tasks/templates.gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ async function createTemplatesForLanguages (languages, isSearchBarOnly = false)
* with the corresponding language-locale pairs.
* @returns {Promise<Function>}
*/
function allLocaleTemplates (isSearchBarOnly = false, languages = ALL_LANGUAGES) {
function allLocaleTemplates (isSearchBarOnly = false, languages) {
const assetNames = [
'answerstemplates-iife.compiled.min.js',
'answerstemplates.compiled.min.js'];
Expand Down

0 comments on commit ca1032d

Please sign in to comment.