Skip to content

Commit cba03b2

Browse files
committed
adds less to allowed css file extensions
1 parent b7671c3 commit cba03b2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ env:
88
matrix:
99
- COMPOSER_FLAGS="--prefer-lowest"
1010
- COMPOSER_FLAGS=""
11-
11+
1212
before_script:
1313
- travis_retry composer self-update
1414
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-source

src/Updater.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ protected function convertToVersion1_0()
9292
{
9393
$isCSSfile = false;
9494

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

9898
$cssChanges = [

0 commit comments

Comments
 (0)