[READ-ONLY] Mirror of https://github.com/danielroe/siroc. Zero-config build tooling for Node
bundle node package rollup typescript
0

Configure Feed

Select the types of activity you want to include in your feed.

fix: don't include root directory in cleanup

Daniel Roe (Apr 7, 2021, 2:13 PM +0100) 808bb9d9 921171f4

+1 -1
+1 -1
src/core/build/index.ts
··· 28 28 ...includeIf(pkg.pkg.main, main => main), 29 29 ] 30 30 .map(file => dirname(file)) 31 - .filter(dir => !dir.includes('src')) 31 + .filter(dir => !dir.includes('src') && !['.', './'].includes(dir)) 32 32 ) 33 33 34 34 await runInParallel(directories, dir => remove(dir))