An open API service indexing awesome lists of open source software.

https://github.com/kelunik/webpack-5-testing


https://github.com/kelunik/webpack-5-testing

Last synced: 2 months ago
JSON representation

Awesome Lists containing this project

README

        

```
# first build
npm run build

# second build uses cache
npm run build

# unrelated file
touch file.txt

# third build rebuilds due to file.txt
npm run build
```

```
# create large file
dd if=/dev/zero of=file.txt count=4096 bs=1048576

# snapshot fails
npm run build
```