Skip to content

Commit

Permalink
Add: Info for debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
edelciomolina committed Dec 6, 2023
1 parent 8901873 commit 350df01
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ const createBundleConfigIndex = args.indexOf('--create-bundle-config')
const searchExtensionsIndex = args.indexOf('--search-extensions')
const deleteInputFilesIndex = args.indexOf('--delete-input-files')

core.info(`✅ Input Parameters`)
core.info(` - bundle_config_folder: ${bundleConfigFolderIndex}`)
core.info(` - create_bundle_config: ${createBundleConfigIndex}`)
core.info(` - search_extensions: ${searchExtensionsIndex}`)
core.info(` - delete_input_files: ${deleteInputFilesIndex}`)

const working_directory = workingDirectoryIndex || './'
const bundle_config_folder = bundleConfigFolderIndex || './test'
const search_extensions = ('.' + (searchExtensionsIndex || 'js|css|html').split('|').join(',.')).split(',')
Expand Down

0 comments on commit 350df01

Please sign in to comment.