├── .env.example ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── index.js ├── lib └── find-existing-comment.js ├── package.json ├── script └── cibuild └── test ├── __snapshots__ └── index.test.js.snap ├── fixtures ├── afterFile.json ├── afterImages.json ├── beforeFile.json ├── beforeImages.json └── diff.txt ├── index.test.js └── lib └── find-existing-comment.test.js /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primer/figma-diff-probot/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primer/figma-diff-probot/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primer/figma-diff-probot/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primer/figma-diff-probot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primer/figma-diff-probot/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primer/figma-diff-probot/HEAD/index.js -------------------------------------------------------------------------------- /lib/find-existing-comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primer/figma-diff-probot/HEAD/lib/find-existing-comment.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primer/figma-diff-probot/HEAD/package.json -------------------------------------------------------------------------------- /script/cibuild: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "Running tests" 4 | -------------------------------------------------------------------------------- /test/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primer/figma-diff-probot/HEAD/test/__snapshots__/index.test.js.snap -------------------------------------------------------------------------------- /test/fixtures/afterFile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primer/figma-diff-probot/HEAD/test/fixtures/afterFile.json -------------------------------------------------------------------------------- /test/fixtures/afterImages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primer/figma-diff-probot/HEAD/test/fixtures/afterImages.json -------------------------------------------------------------------------------- /test/fixtures/beforeFile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primer/figma-diff-probot/HEAD/test/fixtures/beforeFile.json -------------------------------------------------------------------------------- /test/fixtures/beforeImages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primer/figma-diff-probot/HEAD/test/fixtures/beforeImages.json -------------------------------------------------------------------------------- /test/fixtures/diff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primer/figma-diff-probot/HEAD/test/fixtures/diff.txt -------------------------------------------------------------------------------- /test/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primer/figma-diff-probot/HEAD/test/index.test.js -------------------------------------------------------------------------------- /test/lib/find-existing-comment.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/primer/figma-diff-probot/HEAD/test/lib/find-existing-comment.test.js --------------------------------------------------------------------------------