├── .eslintrc.js ├── .github └── FUNDING.yml ├── .gitignore ├── .npmignore ├── .npmrc ├── LICENSE ├── README.md ├── examples ├── .gitignore ├── multiple-entry-points-with-common-static │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── a │ │ │ └── index.html │ │ └── b │ │ │ └── index.html │ └── static │ │ ├── dir │ │ └── test2.txt │ │ └── test1.txt ├── multiple-entry-points │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── a │ │ │ └── index.html │ │ └── b │ │ │ └── index.html │ └── static │ │ ├── dir │ │ └── test2.txt │ │ └── test1.txt ├── multiple-environments │ ├── package-lock.json │ ├── 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-lock.json │ ├── package.json │ └── src │ │ └── index.html ├── multiple-staticpath │ ├── package-lock.json │ ├── package.json │ ├── public │ │ └── public.txt │ ├── src │ │ └── index.html │ └── static │ │ ├── dir │ │ └── test2.txt │ │ └── test1.txt ├── simple-custom-out-dir │ ├── assets │ │ └── bbb.txt │ ├── package-lock.json │ ├── package.json │ └── src │ │ └── client │ │ └── index.html ├── simple │ ├── package-lock.json │ ├── package.json │ ├── src │ │ └── index.html │ └── static │ │ ├── dir │ │ └── test2.txt │ │ ├── test1.txt │ │ └── test2.txt └── single-files │ ├── package-lock.json │ ├── package.json │ ├── src │ └── index.html │ └── static │ ├── dir │ └── test2.txt │ └── test1.txt ├── index.js └── package.json /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elwin013/parcel-plugin-static-files-copy/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [elwin013] 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .vscode 3 | .idea -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elwin013/parcel-plugin-static-files-copy/HEAD/.npmignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elwin013/parcel-plugin-static-files-copy/HEAD/.npmrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elwin013/parcel-plugin-static-files-copy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elwin013/parcel-plugin-static-files-copy/HEAD/README.md -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | .cache -------------------------------------------------------------------------------- /examples/multiple-entry-points-with-common-static/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elwin013/parcel-plugin-static-files-copy/HEAD/examples/multiple-entry-points-with-common-static/package-lock.json -------------------------------------------------------------------------------- /examples/multiple-entry-points-with-common-static/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elwin013/parcel-plugin-static-files-copy/HEAD/examples/multiple-entry-points-with-common-static/package.json -------------------------------------------------------------------------------- /examples/multiple-entry-points-with-common-static/src/a/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elwin013/parcel-plugin-static-files-copy/HEAD/examples/multiple-entry-points-with-common-static/src/a/index.html -------------------------------------------------------------------------------- /examples/multiple-entry-points-with-common-static/src/b/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elwin013/parcel-plugin-static-files-copy/HEAD/examples/multiple-entry-points-with-common-static/src/b/index.html -------------------------------------------------------------------------------- /examples/multiple-entry-points-with-common-static/static/dir/test2.txt: -------------------------------------------------------------------------------- 1 | test2 2 | -------------------------------------------------------------------------------- /examples/multiple-entry-points-with-common-static/static/test1.txt: -------------------------------------------------------------------------------- 1 | test1 2 | -------------------------------------------------------------------------------- /examples/multiple-entry-points/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elwin013/parcel-plugin-static-files-copy/HEAD/examples/multiple-entry-points/package-lock.json -------------------------------------------------------------------------------- /examples/multiple-entry-points/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elwin013/parcel-plugin-static-files-copy/HEAD/examples/multiple-entry-points/package.json -------------------------------------------------------------------------------- /examples/multiple-entry-points/src/a/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elwin013/parcel-plugin-static-files-copy/HEAD/examples/multiple-entry-points/src/a/index.html -------------------------------------------------------------------------------- /examples/multiple-entry-points/src/b/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elwin013/parcel-plugin-static-files-copy/HEAD/examples/multiple-entry-points/src/b/index.html -------------------------------------------------------------------------------- /examples/multiple-entry-points/static/dir/test2.txt: -------------------------------------------------------------------------------- 1 | test2 2 | -------------------------------------------------------------------------------- /examples/multiple-entry-points/static/test1.txt: -------------------------------------------------------------------------------- 1 | test1 2 | -------------------------------------------------------------------------------- /examples/multiple-environments/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elwin013/parcel-plugin-static-files-copy/HEAD/examples/multiple-environments/package-lock.json -------------------------------------------------------------------------------- /examples/multiple-environments/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elwin013/parcel-plugin-static-files-copy/HEAD/examples/multiple-environments/package.json -------------------------------------------------------------------------------- /examples/multiple-environments/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elwin013/parcel-plugin-static-files-copy/HEAD/examples/multiple-environments/src/index.html -------------------------------------------------------------------------------- /examples/multiple-environments/static-dev/dev.txt: -------------------------------------------------------------------------------- 1 | test1 2 | -------------------------------------------------------------------------------- /examples/multiple-environments/static-dev2/additional-from-dev2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/multiple-environments/static-prod/prod.txt: -------------------------------------------------------------------------------- 1 | test1 2 | -------------------------------------------------------------------------------- /examples/multiple-nested-config/assets/aaa.txt: -------------------------------------------------------------------------------- 1 | asdf -------------------------------------------------------------------------------- /examples/multiple-nested-config/assets/bbb.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/multiple-nested-config/assets/ccc.txt: -------------------------------------------------------------------------------- 1 | ccc -------------------------------------------------------------------------------- /examples/multiple-nested-config/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elwin013/parcel-plugin-static-files-copy/HEAD/examples/multiple-nested-config/package-lock.json -------------------------------------------------------------------------------- /examples/multiple-nested-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elwin013/parcel-plugin-static-files-copy/HEAD/examples/multiple-nested-config/package.json -------------------------------------------------------------------------------- /examples/multiple-nested-config/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elwin013/parcel-plugin-static-files-copy/HEAD/examples/multiple-nested-config/src/index.html -------------------------------------------------------------------------------- /examples/multiple-staticpath/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elwin013/parcel-plugin-static-files-copy/HEAD/examples/multiple-staticpath/package-lock.json -------------------------------------------------------------------------------- /examples/multiple-staticpath/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elwin013/parcel-plugin-static-files-copy/HEAD/examples/multiple-staticpath/package.json -------------------------------------------------------------------------------- /examples/multiple-staticpath/public/public.txt: -------------------------------------------------------------------------------- 1 | public -------------------------------------------------------------------------------- /examples/multiple-staticpath/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elwin013/parcel-plugin-static-files-copy/HEAD/examples/multiple-staticpath/src/index.html -------------------------------------------------------------------------------- /examples/multiple-staticpath/static/dir/test2.txt: -------------------------------------------------------------------------------- 1 | test2 2 | -------------------------------------------------------------------------------- /examples/multiple-staticpath/static/test1.txt: -------------------------------------------------------------------------------- 1 | test1 2 | -------------------------------------------------------------------------------- /examples/simple-custom-out-dir/assets/bbb.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/simple-custom-out-dir/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elwin013/parcel-plugin-static-files-copy/HEAD/examples/simple-custom-out-dir/package-lock.json -------------------------------------------------------------------------------- /examples/simple-custom-out-dir/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elwin013/parcel-plugin-static-files-copy/HEAD/examples/simple-custom-out-dir/package.json -------------------------------------------------------------------------------- /examples/simple-custom-out-dir/src/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elwin013/parcel-plugin-static-files-copy/HEAD/examples/simple-custom-out-dir/src/client/index.html -------------------------------------------------------------------------------- /examples/simple/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elwin013/parcel-plugin-static-files-copy/HEAD/examples/simple/package-lock.json -------------------------------------------------------------------------------- /examples/simple/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elwin013/parcel-plugin-static-files-copy/HEAD/examples/simple/package.json -------------------------------------------------------------------------------- /examples/simple/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elwin013/parcel-plugin-static-files-copy/HEAD/examples/simple/src/index.html -------------------------------------------------------------------------------- /examples/simple/static/dir/test2.txt: -------------------------------------------------------------------------------- 1 | dir/test2 -------------------------------------------------------------------------------- /examples/simple/static/test1.txt: -------------------------------------------------------------------------------- 1 | test1 2 | -------------------------------------------------------------------------------- /examples/simple/static/test2.txt: -------------------------------------------------------------------------------- 1 | test2 -------------------------------------------------------------------------------- /examples/single-files/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elwin013/parcel-plugin-static-files-copy/HEAD/examples/single-files/package-lock.json -------------------------------------------------------------------------------- /examples/single-files/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elwin013/parcel-plugin-static-files-copy/HEAD/examples/single-files/package.json -------------------------------------------------------------------------------- /examples/single-files/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elwin013/parcel-plugin-static-files-copy/HEAD/examples/single-files/src/index.html -------------------------------------------------------------------------------- /examples/single-files/static/dir/test2.txt: -------------------------------------------------------------------------------- 1 | test2 2 | -------------------------------------------------------------------------------- /examples/single-files/static/test1.txt: -------------------------------------------------------------------------------- 1 | test1 2 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elwin013/parcel-plugin-static-files-copy/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elwin013/parcel-plugin-static-files-copy/HEAD/package.json --------------------------------------------------------------------------------