Skip to content

Commit

Permalink
will squash before merge:
Browse files Browse the repository at this point in the history
  • Loading branch information
bryceosterhaus committed Nov 3, 2022
1 parent bffe4cb commit 063edb1
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -130,15 +130,15 @@ function setCache(moduleName, srcFiles, output) {

const builtFiles = expandGlobs(
[
path.join(output, '**/*.css'),
path.join(output, '**/*.js'),
path.join(output, '**/*.json'),
path.join(output, '**/*.jsx'),
path.join(output, '**/*.map'),
path.join(output, '**/*.scss'),
path.join(output, '**/*.soy'),
path.join(output, '**/*.ts'),
path.join(output, '**/*.tsx'),
output + '/**/*.css',
output + '/**/*.js',
output + '/**/*.json',
output + '/**/*.jsx',
output + '/**/*.map',
output + '/**/*.scss',
output + '/**/*.soy',
output + '/**/*.ts',
output + '/**/*.tsx',
],
[]
);
Expand Down

0 comments on commit 063edb1

Please sign in to comment.