We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e643ed8 commit 0006109Copy full SHA for 0006109
package.json
@@ -9,7 +9,7 @@
9
"scripts": {
10
"build": "tsc && cp ./src/cjs.js ./lib",
11
"lint": "eslint",
12
- "test:clean": "find -E test/**/build/ -regex '.*/*.(avif|jpg|webp|png|js)' -delete",
+ "test:clean": "find test/**/build/ -name '*.jpg' -o -name '*.png' -o -name '*.avif' -o -name '*.webp' -o -name '*.js' | xargs rm -f",
13
"test": "npm run build && npm run test:clean && webpack --config=./test/jimp/webpack.config.js && webpack --config=./test/sharp/webpack.config.js && webpack --config=./test/cache/webpack.config.js && jest"
14
},
15
"files": [
0 commit comments