├── .appcast.xml ├── .gitignore ├── README.md ├── _config.yml ├── assets ├── Duplicate-to-all-Artboards.gif ├── Duplicate-to-selected-Artboards.gif ├── Lazyboards@0.5x.png └── Wrap-in-artboards.gif ├── package.json └── src ├── duplicateToAll.js ├── duplicateToSelected.js ├── lib ├── Layer.js └── Settings.js ├── manifest.json ├── wrapSquare.js └── wrapTight.js /.appcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybearcreations/sketch-lazyboards/HEAD/.appcast.xml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | lazyboards.sketchplugin 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybearcreations/sketch-lazyboards/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybearcreations/sketch-lazyboards/HEAD/_config.yml -------------------------------------------------------------------------------- /assets/Duplicate-to-all-Artboards.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybearcreations/sketch-lazyboards/HEAD/assets/Duplicate-to-all-Artboards.gif -------------------------------------------------------------------------------- /assets/Duplicate-to-selected-Artboards.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybearcreations/sketch-lazyboards/HEAD/assets/Duplicate-to-selected-Artboards.gif -------------------------------------------------------------------------------- /assets/Lazyboards@0.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybearcreations/sketch-lazyboards/HEAD/assets/Lazyboards@0.5x.png -------------------------------------------------------------------------------- /assets/Wrap-in-artboards.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybearcreations/sketch-lazyboards/HEAD/assets/Wrap-in-artboards.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybearcreations/sketch-lazyboards/HEAD/package.json -------------------------------------------------------------------------------- /src/duplicateToAll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybearcreations/sketch-lazyboards/HEAD/src/duplicateToAll.js -------------------------------------------------------------------------------- /src/duplicateToSelected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybearcreations/sketch-lazyboards/HEAD/src/duplicateToSelected.js -------------------------------------------------------------------------------- /src/lib/Layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybearcreations/sketch-lazyboards/HEAD/src/lib/Layer.js -------------------------------------------------------------------------------- /src/lib/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybearcreations/sketch-lazyboards/HEAD/src/lib/Settings.js -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybearcreations/sketch-lazyboards/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/wrapSquare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybearcreations/sketch-lazyboards/HEAD/src/wrapSquare.js -------------------------------------------------------------------------------- /src/wrapTight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazybearcreations/sketch-lazyboards/HEAD/src/wrapTight.js --------------------------------------------------------------------------------