├── .gitattributes ├── .gitignore ├── README.md ├── dist ├── code.js ├── index.html └── manifest.json ├── gulpfile.js ├── package.json ├── src ├── main │ └── code.ts ├── manifest.json └── ui │ ├── index.html │ ├── scripts │ ├── helper-functions.js │ └── scripts.js │ └── styles │ └── styles.scss └── tsconfig.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-lowry/figma-plugin-boilerplate/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .DS_Store 3 | package-lock.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-lowry/figma-plugin-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /dist/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-lowry/figma-plugin-boilerplate/HEAD/dist/code.js -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-lowry/figma-plugin-boilerplate/HEAD/dist/index.html -------------------------------------------------------------------------------- /dist/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-lowry/figma-plugin-boilerplate/HEAD/dist/manifest.json -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-lowry/figma-plugin-boilerplate/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-lowry/figma-plugin-boilerplate/HEAD/package.json -------------------------------------------------------------------------------- /src/main/code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-lowry/figma-plugin-boilerplate/HEAD/src/main/code.ts -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-lowry/figma-plugin-boilerplate/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-lowry/figma-plugin-boilerplate/HEAD/src/ui/index.html -------------------------------------------------------------------------------- /src/ui/scripts/helper-functions.js: -------------------------------------------------------------------------------- 1 | function helper() { 2 | console.log('testing'); 3 | } -------------------------------------------------------------------------------- /src/ui/scripts/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-lowry/figma-plugin-boilerplate/HEAD/src/ui/scripts/scripts.js -------------------------------------------------------------------------------- /src/ui/styles/styles.scss: -------------------------------------------------------------------------------- 1 | /* Add your own scripts */ -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomas-lowry/figma-plugin-boilerplate/HEAD/tsconfig.json --------------------------------------------------------------------------------