https://github.com/kelunik/webpack-5-testing
https://github.com/kelunik/webpack-5-testing
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/kelunik/webpack-5-testing
- Owner: kelunik
- Created: 2020-11-06T18:16:44.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-11-06T18:17:17.000Z (over 4 years ago)
- Last Synced: 2025-02-12T06:54:31.214Z (4 months ago)
- Language: JavaScript
- Size: 46.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```