├── .biddlerc ├── .gitignore ├── .gitmodules ├── LICENSE ├── applications └── readme.md ├── appveyor.yml ├── biddle.js ├── bin └── biddle ├── cmd └── biddle.cmd ├── documentation ├── documentation.md ├── gettingstarted.md └── package.md ├── downloads └── readme.md ├── installed.json ├── package.json ├── publications └── readme.md ├── published.json ├── readme.md ├── test ├── biddletesta │ ├── READMEa.md │ ├── biddletesta.js │ ├── liba │ │ ├── libaa.txt │ │ ├── libab.txt │ │ └── libac.txt │ ├── package.json │ └── testa │ │ ├── testaa.txt │ │ ├── testab.txt │ │ └── testac.txt └── biddletestb │ ├── .biddlerc │ ├── READMEb.md │ ├── biddletestb.js │ ├── libb │ ├── libba.txt │ ├── libbb.txt │ └── libbc.txt │ ├── package.json │ └── testb │ ├── testba.txt │ ├── testbb.txt │ └── testbc.txt └── today.js /.biddlerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettydiff/biddle/HEAD/.biddlerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | today.js 2 | internal -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettydiff/biddle/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettydiff/biddle/HEAD/LICENSE -------------------------------------------------------------------------------- /applications/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettydiff/biddle/HEAD/applications/readme.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettydiff/biddle/HEAD/appveyor.yml -------------------------------------------------------------------------------- /biddle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettydiff/biddle/HEAD/biddle.js -------------------------------------------------------------------------------- /bin/biddle: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require("../biddle.js"); 3 | -------------------------------------------------------------------------------- /cmd/biddle.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettydiff/biddle/HEAD/cmd/biddle.cmd -------------------------------------------------------------------------------- /documentation/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettydiff/biddle/HEAD/documentation/documentation.md -------------------------------------------------------------------------------- /documentation/gettingstarted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettydiff/biddle/HEAD/documentation/gettingstarted.md -------------------------------------------------------------------------------- /documentation/package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettydiff/biddle/HEAD/documentation/package.md -------------------------------------------------------------------------------- /downloads/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettydiff/biddle/HEAD/downloads/readme.md -------------------------------------------------------------------------------- /installed.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettydiff/biddle/HEAD/package.json -------------------------------------------------------------------------------- /publications/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettydiff/biddle/HEAD/publications/readme.md -------------------------------------------------------------------------------- /published.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettydiff/biddle/HEAD/readme.md -------------------------------------------------------------------------------- /test/biddletesta/READMEa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettydiff/biddle/HEAD/test/biddletesta/READMEa.md -------------------------------------------------------------------------------- /test/biddletesta/biddletesta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettydiff/biddle/HEAD/test/biddletesta/biddletesta.js -------------------------------------------------------------------------------- /test/biddletesta/liba/libaa.txt: -------------------------------------------------------------------------------- 1 | libaa 2 | -------------------------------------------------------------------------------- /test/biddletesta/liba/libab.txt: -------------------------------------------------------------------------------- 1 | libab 2 | -------------------------------------------------------------------------------- /test/biddletesta/liba/libac.txt: -------------------------------------------------------------------------------- 1 | libac 2 | -------------------------------------------------------------------------------- /test/biddletesta/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettydiff/biddle/HEAD/test/biddletesta/package.json -------------------------------------------------------------------------------- /test/biddletesta/testa/testaa.txt: -------------------------------------------------------------------------------- 1 | testaa 2 | -------------------------------------------------------------------------------- /test/biddletesta/testa/testab.txt: -------------------------------------------------------------------------------- 1 | testab 2 | -------------------------------------------------------------------------------- /test/biddletesta/testa/testac.txt: -------------------------------------------------------------------------------- 1 | testac 2 | -------------------------------------------------------------------------------- /test/biddletestb/.biddlerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettydiff/biddle/HEAD/test/biddletestb/.biddlerc -------------------------------------------------------------------------------- /test/biddletestb/READMEb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettydiff/biddle/HEAD/test/biddletestb/READMEb.md -------------------------------------------------------------------------------- /test/biddletestb/biddletestb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettydiff/biddle/HEAD/test/biddletestb/biddletestb.js -------------------------------------------------------------------------------- /test/biddletestb/libb/libba.txt: -------------------------------------------------------------------------------- 1 | libba 2 | -------------------------------------------------------------------------------- /test/biddletestb/libb/libbb.txt: -------------------------------------------------------------------------------- 1 | libbb 2 | -------------------------------------------------------------------------------- /test/biddletestb/libb/libbc.txt: -------------------------------------------------------------------------------- 1 | libbc 2 | -------------------------------------------------------------------------------- /test/biddletestb/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettydiff/biddle/HEAD/test/biddletestb/package.json -------------------------------------------------------------------------------- /test/biddletestb/testb/testba.txt: -------------------------------------------------------------------------------- 1 | testba 2 | -------------------------------------------------------------------------------- /test/biddletestb/testb/testbb.txt: -------------------------------------------------------------------------------- 1 | testbb 2 | -------------------------------------------------------------------------------- /test/biddletestb/testb/testbc.txt: -------------------------------------------------------------------------------- 1 | testbc 2 | -------------------------------------------------------------------------------- /today.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prettydiff/biddle/HEAD/today.js --------------------------------------------------------------------------------