Skip to content

wmassa/rollup-directory-hash-repro

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

This illustrates a bug where 2 exact same rollup projects create different hashes based on the directory of the project.

You can copy paste these commands to create the rollup bundle. You will see that the output of directory a is different than directory b.

git clone https://github.com/wmassa/rollup-directory-hash-repro;\
cd rollup-directory-hash-repro;\
cd a; \
npm install; \
rollup main.js -c rollup.config.ts --format cjs; \
cd ..; \
cd b; \
npm install; \
rollup main.js -c rollup.config.ts --format cjs; \
cd ..; \
echo 'a bundle'; \
ls a/bundle;\
echo 'b bundle'; \
ls b/bundle;

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published