gitextract_j8ar7_22/ ├── .eslintrc.js ├── .github/ │ └── FUNDING.yml ├── .gitignore ├── .npmignore ├── .npmrc ├── LICENSE ├── README.md ├── examples/ │ ├── .gitignore │ ├── multiple-entry-points/ │ │ ├── package.json │ │ ├── src/ │ │ │ ├── a/ │ │ │ │ └── index.html │ │ │ └── b/ │ │ │ └── index.html │ │ └── static/ │ │ ├── dir/ │ │ │ └── test2.txt │ │ └── test1.txt │ ├── multiple-entry-points-with-common-static/ │ │ ├── package.json │ │ ├── src/ │ │ │ ├── a/ │ │ │ │ └── index.html │ │ │ └── b/ │ │ │ └── index.html │ │ └── static/ │ │ ├── dir/ │ │ │ └── test2.txt │ │ └── test1.txt │ ├── multiple-environments/ │ │ ├── package.json │ │ ├── src/ │ │ │ └── index.html │ │ ├── static-dev/ │ │ │ └── dev.txt │ │ ├── static-dev2/ │ │ │ └── additional-from-dev2.txt │ │ └── static-prod/ │ │ └── prod.txt │ ├── multiple-nested-config/ │ │ ├── assets/ │ │ │ ├── aaa.txt │ │ │ ├── bbb.txt │ │ │ └── ccc.txt │ │ ├── package.json │ │ └── src/ │ │ └── index.html │ ├── multiple-staticpath/ │ │ ├── package.json │ │ ├── public/ │ │ │ └── public.txt │ │ ├── src/ │ │ │ └── index.html │ │ └── static/ │ │ ├── dir/ │ │ │ └── test2.txt │ │ └── test1.txt │ ├── simple/ │ │ ├── package.json │ │ ├── src/ │ │ │ └── index.html │ │ └── static/ │ │ ├── dir/ │ │ │ └── test2.txt │ │ ├── test1.txt │ │ └── test2.txt │ ├── simple-custom-out-dir/ │ │ ├── assets/ │ │ │ └── bbb.txt │ │ ├── package.json │ │ └── src/ │ │ └── client/ │ │ └── index.html │ └── single-files/ │ ├── package.json │ ├── src/ │ │ └── index.html │ └── static/ │ ├── dir/ │ │ └── test2.txt │ └── test1.txt ├── index.js └── package.json