├── .gitignore ├── README.md ├── Resize Commands.sketchplugin └── Contents │ └── Sketch │ ├── manifest.json │ └── resize-commands.js └── demo-resize-commands.gif /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrejilderda/Sketch-Resize-Commands/HEAD/README.md -------------------------------------------------------------------------------- /Resize Commands.sketchplugin/Contents/Sketch/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrejilderda/Sketch-Resize-Commands/HEAD/Resize Commands.sketchplugin/Contents/Sketch/manifest.json -------------------------------------------------------------------------------- /Resize Commands.sketchplugin/Contents/Sketch/resize-commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrejilderda/Sketch-Resize-Commands/HEAD/Resize Commands.sketchplugin/Contents/Sketch/resize-commands.js -------------------------------------------------------------------------------- /demo-resize-commands.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrejilderda/Sketch-Resize-Commands/HEAD/demo-resize-commands.gif --------------------------------------------------------------------------------