We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 556b4f6 commit d8cf767Copy full SHA for d8cf767
package.json
@@ -17,7 +17,7 @@
17
"publish-ci": "npm run publish-ci --workspace @assetpack/core",
18
"pretest": "npm run clean",
19
"test": "vitest run",
20
- "test:lint": "xs lint",
+ "test:lint": "xs lint --max-warnings 0",
21
"test:types": "xs types",
22
"test:watch": "vitest",
23
"watch": "npm run --ws watch --if-present",
packages/assetpack/src/core/AssetWatcher.ts
@@ -276,7 +276,7 @@ export class AssetWatcher
276
files.forEach((file) =>
277
{
278
file = upath.toUnix(file);
279
-
+
280
const fullPath = path.joinSafe(asset.path, file);
281
282
if (fullPath.includes('DS_Store')) return;
0 commit comments