├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── index.js ├── package.json └── test ├── fixtures ├── 1.txt ├── 2.txt ├── 3.txt ├── _.a ├── _c ├── foo │ ├── 4.txt │ ├── _.b │ └── _d ├── {{foo}}.txt └── {{foo}} │ └── 5.txt └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | coverage/ 3 | tmp/ 4 | npm-debug.log* 5 | .DS_Store 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshuawuyts/copy-template-dir/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshuawuyts/copy-template-dir/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshuawuyts/copy-template-dir/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshuawuyts/copy-template-dir/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshuawuyts/copy-template-dir/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/1.txt: -------------------------------------------------------------------------------- 1 | hello {{foo}} sama 2 | -------------------------------------------------------------------------------- /test/fixtures/2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/3.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/_.a: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/_c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/foo/4.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/foo/_.b: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/foo/_d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/{{foo}}.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/{{foo}}/5.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshuawuyts/copy-template-dir/HEAD/test/index.js --------------------------------------------------------------------------------