Skip to content

Commit

Permalink
adds less to allowed css file extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
abdumu committed Apr 17, 2019
1 parent b7671c3 commit cba03b2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ env:
matrix:
- COMPOSER_FLAGS="--prefer-lowest"
- COMPOSER_FLAGS=""

before_script:
- travis_retry composer self-update
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-source
Expand Down
2 changes: 1 addition & 1 deletion src/Updater.php
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ protected function convertToVersion1_0()
{
$isCSSfile = false;

if (in_array($this->currentFileExtension, ['css', 'scss'])) {
if (in_array($this->currentFileExtension, ['css', 'scss', 'less'])) {
$isCSSfile = true;

$cssChanges = [
Expand Down

0 comments on commit cba03b2

Please sign in to comment.