├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── jest.config.js ├── package.json ├── src ├── index.html ├── style.css └── ts │ ├── parse.ts │ ├── prettyplan.ts │ ├── releases.ts │ ├── render.ts │ └── ui.ts ├── tests ├── extractChangeSummary.test.ts ├── extractInvididualChanges.test.ts ├── parseChangeSymbol.test.ts ├── parseId.test.ts ├── parseNewAndOldValueDiffs.test.ts ├── parseSingleValueDiffs.test.ts └── parseWarnings.test.ts ├── tsconfig.json └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislewisdev/prettyplan/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislewisdev/prettyplan/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislewisdev/prettyplan/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislewisdev/prettyplan/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislewisdev/prettyplan/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislewisdev/prettyplan/HEAD/package.json -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislewisdev/prettyplan/HEAD/src/index.html -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislewisdev/prettyplan/HEAD/src/style.css -------------------------------------------------------------------------------- /src/ts/parse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislewisdev/prettyplan/HEAD/src/ts/parse.ts -------------------------------------------------------------------------------- /src/ts/prettyplan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislewisdev/prettyplan/HEAD/src/ts/prettyplan.ts -------------------------------------------------------------------------------- /src/ts/releases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislewisdev/prettyplan/HEAD/src/ts/releases.ts -------------------------------------------------------------------------------- /src/ts/render.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislewisdev/prettyplan/HEAD/src/ts/render.ts -------------------------------------------------------------------------------- /src/ts/ui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislewisdev/prettyplan/HEAD/src/ts/ui.ts -------------------------------------------------------------------------------- /tests/extractChangeSummary.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislewisdev/prettyplan/HEAD/tests/extractChangeSummary.test.ts -------------------------------------------------------------------------------- /tests/extractInvididualChanges.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislewisdev/prettyplan/HEAD/tests/extractInvididualChanges.test.ts -------------------------------------------------------------------------------- /tests/parseChangeSymbol.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislewisdev/prettyplan/HEAD/tests/parseChangeSymbol.test.ts -------------------------------------------------------------------------------- /tests/parseId.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislewisdev/prettyplan/HEAD/tests/parseId.test.ts -------------------------------------------------------------------------------- /tests/parseNewAndOldValueDiffs.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislewisdev/prettyplan/HEAD/tests/parseNewAndOldValueDiffs.test.ts -------------------------------------------------------------------------------- /tests/parseSingleValueDiffs.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislewisdev/prettyplan/HEAD/tests/parseSingleValueDiffs.test.ts -------------------------------------------------------------------------------- /tests/parseWarnings.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislewisdev/prettyplan/HEAD/tests/parseWarnings.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislewisdev/prettyplan/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrislewisdev/prettyplan/HEAD/webpack.config.js --------------------------------------------------------------------------------