├── .circleci └── config.yml ├── .gitignore ├── .prettierrc.js ├── Cargo.lock ├── Cargo.toml ├── Makefile ├── README.md ├── index.ts ├── package.json ├── src ├── diff.rs └── lib.rs ├── test ├── expected │ ├── marked_after.png │ └── marked_before.png └── images │ ├── after.png │ └── before.png ├── tsconfig.json ├── tslint.json └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/node-lcs-img-diff/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/node-lcs-img-diff/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/node-lcs-img-diff/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/node-lcs-img-diff/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/node-lcs-img-diff/HEAD/Cargo.toml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/node-lcs-img-diff/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/node-lcs-img-diff/HEAD/README.md -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/node-lcs-img-diff/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/node-lcs-img-diff/HEAD/package.json -------------------------------------------------------------------------------- /src/diff.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/node-lcs-img-diff/HEAD/src/diff.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/node-lcs-img-diff/HEAD/src/lib.rs -------------------------------------------------------------------------------- /test/expected/marked_after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/node-lcs-img-diff/HEAD/test/expected/marked_after.png -------------------------------------------------------------------------------- /test/expected/marked_before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/node-lcs-img-diff/HEAD/test/expected/marked_before.png -------------------------------------------------------------------------------- /test/images/after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/node-lcs-img-diff/HEAD/test/images/after.png -------------------------------------------------------------------------------- /test/images/before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/node-lcs-img-diff/HEAD/test/images/before.png -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/node-lcs-img-diff/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/node-lcs-img-diff/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bokuweb/node-lcs-img-diff/HEAD/yarn.lock --------------------------------------------------------------------------------