@serenity-is/tsbuild 8.7.2 → 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.
- package/dist/index.js +1 -1
- package/package.json +2 -2
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,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@serenity-is/tsbuild",
|
|
3
|
-
"version": "8.7.
|
|
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",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"esbuild": "0.
|
|
8
|
+
"esbuild": "0.23.1",
|
|
9
9
|
"glob": "11.0.0"
|
|
10
10
|
},
|
|
11
11
|
"exports": {
|