├── .gitignore ├── Date Generator.sketchplugin ├── Contents │ └── Sketch │ │ ├── dateGen.js │ │ └── manifest.json └── imgs │ └── date-generator-sketch-plugin-animation.gif └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /Date Generator.sketchplugin/Contents/Sketch/dateGen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bshorta/date-generator-sketch/HEAD/Date Generator.sketchplugin/Contents/Sketch/dateGen.js -------------------------------------------------------------------------------- /Date Generator.sketchplugin/Contents/Sketch/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bshorta/date-generator-sketch/HEAD/Date Generator.sketchplugin/Contents/Sketch/manifest.json -------------------------------------------------------------------------------- /Date Generator.sketchplugin/imgs/date-generator-sketch-plugin-animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bshorta/date-generator-sketch/HEAD/Date Generator.sketchplugin/imgs/date-generator-sketch-plugin-animation.gif -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bshorta/date-generator-sketch/HEAD/README.md --------------------------------------------------------------------------------