├── .gitignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── bin └── ncp ├── lib └── ncp.js ├── package.json └── test ├── broken-symlink-fixtures └── src │ └── broken-symlink ├── modified-files ├── out │ └── a └── src │ └── a ├── ncp.js ├── regular-fixtures └── src │ ├── a │ ├── b │ ├── c │ ├── d │ ├── e │ ├── f │ └── sub │ ├── a │ └── b └── symlink-fixtures └── src ├── dir-symlink ├── dir └── bar ├── file-symlink └── foo /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .*.sw[op] 3 | .DS_Store 4 | test/*fixtures/out 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvianFlu/ncp/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvianFlu/ncp/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvianFlu/ncp/HEAD/README.md -------------------------------------------------------------------------------- /bin/ncp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvianFlu/ncp/HEAD/bin/ncp -------------------------------------------------------------------------------- /lib/ncp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvianFlu/ncp/HEAD/lib/ncp.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvianFlu/ncp/HEAD/package.json -------------------------------------------------------------------------------- /test/broken-symlink-fixtures/src/broken-symlink: -------------------------------------------------------------------------------- 1 | does-not-exist -------------------------------------------------------------------------------- /test/modified-files/out/a: -------------------------------------------------------------------------------- 1 | test2 -------------------------------------------------------------------------------- /test/modified-files/src/a: -------------------------------------------------------------------------------- 1 | test3 -------------------------------------------------------------------------------- /test/ncp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvianFlu/ncp/HEAD/test/ncp.js -------------------------------------------------------------------------------- /test/regular-fixtures/src/a: -------------------------------------------------------------------------------- 1 | Hello world 2 | -------------------------------------------------------------------------------- /test/regular-fixtures/src/b: -------------------------------------------------------------------------------- 1 | Hello ncp 2 | -------------------------------------------------------------------------------- /test/regular-fixtures/src/c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/regular-fixtures/src/d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/regular-fixtures/src/e: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/regular-fixtures/src/f: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/regular-fixtures/src/sub/a: -------------------------------------------------------------------------------- 1 | Hello nodejitsu 2 | -------------------------------------------------------------------------------- /test/regular-fixtures/src/sub/b: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/symlink-fixtures/src/dir-symlink: -------------------------------------------------------------------------------- 1 | dir -------------------------------------------------------------------------------- /test/symlink-fixtures/src/dir/bar: -------------------------------------------------------------------------------- 1 | bar contents -------------------------------------------------------------------------------- /test/symlink-fixtures/src/file-symlink: -------------------------------------------------------------------------------- 1 | foo -------------------------------------------------------------------------------- /test/symlink-fixtures/src/foo: -------------------------------------------------------------------------------- 1 | foo contents --------------------------------------------------------------------------------