├── .appcast.xml ├── .gitignore ├── README.md ├── clip.gif ├── example-output.png ├── package.json ├── sketch-wcag.sketchplugin └── Contents │ ├── Resources │ ├── icon.png │ └── styles.css │ └── Sketch │ ├── manifest.json │ ├── my-command.js │ └── my-command.js.map ├── sketchpack.json └── src ├── icon.png ├── manifest.json ├── my-command.js └── styles.css /.appcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryanberger/sketch-wcag/HEAD/.appcast.xml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryanberger/sketch-wcag/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryanberger/sketch-wcag/HEAD/README.md -------------------------------------------------------------------------------- /clip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryanberger/sketch-wcag/HEAD/clip.gif -------------------------------------------------------------------------------- /example-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryanberger/sketch-wcag/HEAD/example-output.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryanberger/sketch-wcag/HEAD/package.json -------------------------------------------------------------------------------- /sketch-wcag.sketchplugin/Contents/Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryanberger/sketch-wcag/HEAD/sketch-wcag.sketchplugin/Contents/Resources/icon.png -------------------------------------------------------------------------------- /sketch-wcag.sketchplugin/Contents/Resources/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryanberger/sketch-wcag/HEAD/sketch-wcag.sketchplugin/Contents/Resources/styles.css -------------------------------------------------------------------------------- /sketch-wcag.sketchplugin/Contents/Sketch/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryanberger/sketch-wcag/HEAD/sketch-wcag.sketchplugin/Contents/Sketch/manifest.json -------------------------------------------------------------------------------- /sketch-wcag.sketchplugin/Contents/Sketch/my-command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryanberger/sketch-wcag/HEAD/sketch-wcag.sketchplugin/Contents/Sketch/my-command.js -------------------------------------------------------------------------------- /sketch-wcag.sketchplugin/Contents/Sketch/my-command.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryanberger/sketch-wcag/HEAD/sketch-wcag.sketchplugin/Contents/Sketch/my-command.js.map -------------------------------------------------------------------------------- /sketchpack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryanberger/sketch-wcag/HEAD/sketchpack.json -------------------------------------------------------------------------------- /src/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryanberger/sketch-wcag/HEAD/src/icon.png -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryanberger/sketch-wcag/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/my-command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryanberger/sketch-wcag/HEAD/src/my-command.js -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryanberger/sketch-wcag/HEAD/src/styles.css --------------------------------------------------------------------------------