Skip to content

Commit

Permalink
Revert gulpfile change
Browse files Browse the repository at this point in the history
  • Loading branch information
bffrost committed Jan 7, 2025
1 parent 99b3ba7 commit e0b5567
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gulpfile.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -463,12 +463,12 @@ createTask = (options, type) ->
renameFunction = options.renameFunction
modifyFunction = options.modifyFunction
shouldCoffeify = (file) ->
if type=="coffee"
if type=="coffee" && (file.path.indexOf("client/ExcelApp") > -1)
return true
else
return false
shouldCoffee = (file) ->
if type=="coffee"
if type=="coffee" && !(file.path.indexOf("client/ExcelApp") > -1)
return true
else
return false
Expand Down

0 comments on commit e0b5567

Please sign in to comment.