@serenity-is/tsbuild 8.7.3 → 8.7.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -195,7 +195,7 @@ export function cleanPlugin() {
195
195
 
196
196
  const outputFiles = new Set(Object.keys(outputs));
197
197
  scanDir(build.initialOptions.outdir).forEach(file => {
198
- if (!file.endsWith('.js') && !file.endsWith('.js.map'))
198
+ if (!file.endsWith('.js') && !file.endsWith('.js.map') && !file.endsWith('.css') && !file.endsWith('.css.map'))
199
199
  return;
200
200
  if (!outputFiles.has(join(build.initialOptions.outdir, file).replace(/\\/g, '/'))) {
201
201
  console.log('esbuild clean: deleting extra file ' + file);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@serenity-is/tsbuild",
3
- "version": "8.7.3",
3
+ "version": "8.7.4",
4
4
  "author": "Serenity (https://serenity.is)",
5
5
  "bugs": "https://github.com/serenity-is/serenity/issues",
6
6
  "description": "Serenity ESBuild functions",