├── .gitignore ├── LICENSE ├── README.md ├── __tests__ ├── sketchtool.test.js └── test.sketch ├── config ├── plugin │ ├── babel.js │ ├── eslint.js │ ├── paths.js │ └── webpack.js └── webview │ ├── babel.js │ ├── env.js │ ├── eslint.js │ ├── paths.js │ ├── polyfills.js │ ├── webpack-dev-server.js │ ├── webpack-dev.js │ └── webpack-prod.js ├── docs ├── 404.md ├── _config.yml ├── _includes │ ├── docs-navigation.html │ ├── global-vars │ ├── head.html │ ├── home-features.html │ ├── home-hero.html │ ├── navigation.html │ ├── svgs │ │ └── logo.svg │ └── tutorials-navigation.html ├── _layouts │ ├── default.html │ ├── docs.html │ ├── home.html │ └── tutorials.html ├── _sass │ ├── colors.scss │ ├── components │ │ ├── code.scss │ │ └── navigation.scss │ ├── layouts │ │ ├── default.scss │ │ └── home.scss │ ├── mixins.scss │ └── reset.scss ├── assets │ ├── icomoon │ │ ├── fonts │ │ │ ├── icomoon.eot │ │ │ ├── icomoon.svg │ │ │ ├── icomoon.ttf │ │ │ └── icomoon.woff │ │ ├── selection.json │ │ └── style.css │ ├── images │ │ └── favicon.png │ └── styles │ │ ├── index.scss │ │ └── pygments │ │ └── borland.css ├── docs │ ├── build.md │ ├── install.md │ ├── setup │ │ ├── eslint.md │ │ ├── jest.md │ │ └── webpack.md │ ├── tests.md │ └── utils │ │ ├── core.md │ │ ├── fetch.md │ │ └── webview.md ├── index.md └── tutorials │ ├── advanced │ ├── downloads.md │ ├── guis-with-webviews.md │ ├── network-requests.md │ └── sketch-menu.md │ ├── basics │ └── plugin-entrypoints.md │ └── index.md ├── package.json ├── scripts ├── build.js ├── plugin │ ├── build.js │ └── bundle.js ├── start-webview.js ├── start.js ├── utils │ ├── build.js │ ├── fox.js │ ├── sketchtool.js │ └── todos.js └── webview │ ├── build-bak.js │ └── build.js ├── src ├── docs │ └── assets │ │ ├── sketch-plugin-boilerplate-logo-reverse.svg │ │ ├── sketch-plugin-boilerplate-logo.sketch │ │ └── sketch-plugin-boilerplate-logo.svg ├── frameworks │ └── .gitkeep ├── plugin │ ├── index.js │ ├── manifest.json │ └── utils │ │ ├── core.js │ │ ├── formatter.js │ │ └── webview │ │ ├── index.js │ │ ├── panel.js │ │ ├── webview.js │ │ └── window.js └── webview │ ├── assets │ └── sketch-logo.svg │ ├── index.html │ ├── js │ ├── actions │ │ └── bridge.js │ ├── app.js │ ├── components │ │ └── .gitkeep │ ├── index.js │ ├── reducers │ │ ├── bridge.js │ │ └── index.js │ ├── store.js │ └── utils │ │ └── sketch.js │ └── scss │ ├── _colors.scss │ ├── _fonts.scss │ └── index.scss └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/sketchtool.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/__tests__/sketchtool.test.js -------------------------------------------------------------------------------- /__tests__/test.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/__tests__/test.sketch -------------------------------------------------------------------------------- /config/plugin/babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/config/plugin/babel.js -------------------------------------------------------------------------------- /config/plugin/eslint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/config/plugin/eslint.js -------------------------------------------------------------------------------- /config/plugin/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/config/plugin/paths.js -------------------------------------------------------------------------------- /config/plugin/webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/config/plugin/webpack.js -------------------------------------------------------------------------------- /config/webview/babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/config/webview/babel.js -------------------------------------------------------------------------------- /config/webview/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/config/webview/env.js -------------------------------------------------------------------------------- /config/webview/eslint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/config/webview/eslint.js -------------------------------------------------------------------------------- /config/webview/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/config/webview/paths.js -------------------------------------------------------------------------------- /config/webview/polyfills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/config/webview/polyfills.js -------------------------------------------------------------------------------- /config/webview/webpack-dev-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/config/webview/webpack-dev-server.js -------------------------------------------------------------------------------- /config/webview/webpack-dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/config/webview/webpack-dev.js -------------------------------------------------------------------------------- /config/webview/webpack-prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/config/webview/webpack-prod.js -------------------------------------------------------------------------------- /docs/404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/docs/404.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_includes/docs-navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/docs/_includes/docs-navigation.html -------------------------------------------------------------------------------- /docs/_includes/global-vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/docs/_includes/global-vars -------------------------------------------------------------------------------- /docs/_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/docs/_includes/head.html -------------------------------------------------------------------------------- /docs/_includes/home-features.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/docs/_includes/home-features.html -------------------------------------------------------------------------------- /docs/_includes/home-hero.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/docs/_includes/home-hero.html -------------------------------------------------------------------------------- /docs/_includes/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/docs/_includes/navigation.html -------------------------------------------------------------------------------- /docs/_includes/svgs/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/docs/_includes/svgs/logo.svg -------------------------------------------------------------------------------- /docs/_includes/tutorials-navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/docs/_includes/tutorials-navigation.html -------------------------------------------------------------------------------- /docs/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/docs/_layouts/default.html -------------------------------------------------------------------------------- /docs/_layouts/docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/docs/_layouts/docs.html -------------------------------------------------------------------------------- /docs/_layouts/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/docs/_layouts/home.html -------------------------------------------------------------------------------- /docs/_layouts/tutorials.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/docs/_layouts/tutorials.html -------------------------------------------------------------------------------- /docs/_sass/colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/docs/_sass/colors.scss -------------------------------------------------------------------------------- /docs/_sass/components/code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/docs/_sass/components/code.scss -------------------------------------------------------------------------------- /docs/_sass/components/navigation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/docs/_sass/components/navigation.scss -------------------------------------------------------------------------------- /docs/_sass/layouts/default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/docs/_sass/layouts/default.scss -------------------------------------------------------------------------------- /docs/_sass/layouts/home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/docs/_sass/layouts/home.scss -------------------------------------------------------------------------------- /docs/_sass/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/docs/_sass/mixins.scss -------------------------------------------------------------------------------- /docs/_sass/reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/docs/_sass/reset.scss -------------------------------------------------------------------------------- /docs/assets/icomoon/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/docs/assets/icomoon/fonts/icomoon.eot -------------------------------------------------------------------------------- /docs/assets/icomoon/fonts/icomoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/docs/assets/icomoon/fonts/icomoon.svg -------------------------------------------------------------------------------- /docs/assets/icomoon/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/docs/assets/icomoon/fonts/icomoon.ttf -------------------------------------------------------------------------------- /docs/assets/icomoon/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/docs/assets/icomoon/fonts/icomoon.woff -------------------------------------------------------------------------------- /docs/assets/icomoon/selection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/docs/assets/icomoon/selection.json -------------------------------------------------------------------------------- /docs/assets/icomoon/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/docs/assets/icomoon/style.css -------------------------------------------------------------------------------- /docs/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/docs/assets/images/favicon.png -------------------------------------------------------------------------------- /docs/assets/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/docs/assets/styles/index.scss -------------------------------------------------------------------------------- /docs/assets/styles/pygments/borland.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/docs/assets/styles/pygments/borland.css -------------------------------------------------------------------------------- /docs/docs/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/docs/docs/build.md -------------------------------------------------------------------------------- /docs/docs/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/docs/docs/install.md -------------------------------------------------------------------------------- /docs/docs/setup/eslint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/docs/docs/setup/eslint.md -------------------------------------------------------------------------------- /docs/docs/setup/jest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/docs/docs/setup/jest.md -------------------------------------------------------------------------------- /docs/docs/setup/webpack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/docs/docs/setup/webpack.md -------------------------------------------------------------------------------- /docs/docs/tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/docs/docs/tests.md -------------------------------------------------------------------------------- /docs/docs/utils/core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/docs/docs/utils/core.md -------------------------------------------------------------------------------- /docs/docs/utils/fetch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/docs/docs/utils/fetch.md -------------------------------------------------------------------------------- /docs/docs/utils/webview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/docs/docs/utils/webview.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/tutorials/advanced/downloads.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/docs/tutorials/advanced/downloads.md -------------------------------------------------------------------------------- /docs/tutorials/advanced/guis-with-webviews.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/docs/tutorials/advanced/guis-with-webviews.md -------------------------------------------------------------------------------- /docs/tutorials/advanced/network-requests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/docs/tutorials/advanced/network-requests.md -------------------------------------------------------------------------------- /docs/tutorials/advanced/sketch-menu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/docs/tutorials/advanced/sketch-menu.md -------------------------------------------------------------------------------- /docs/tutorials/basics/plugin-entrypoints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/docs/tutorials/basics/plugin-entrypoints.md -------------------------------------------------------------------------------- /docs/tutorials/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/docs/tutorials/index.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/package.json -------------------------------------------------------------------------------- /scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/scripts/build.js -------------------------------------------------------------------------------- /scripts/plugin/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/scripts/plugin/build.js -------------------------------------------------------------------------------- /scripts/plugin/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/scripts/plugin/bundle.js -------------------------------------------------------------------------------- /scripts/start-webview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/scripts/start-webview.js -------------------------------------------------------------------------------- /scripts/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/scripts/start.js -------------------------------------------------------------------------------- /scripts/utils/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/scripts/utils/build.js -------------------------------------------------------------------------------- /scripts/utils/fox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/scripts/utils/fox.js -------------------------------------------------------------------------------- /scripts/utils/sketchtool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/scripts/utils/sketchtool.js -------------------------------------------------------------------------------- /scripts/utils/todos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/scripts/utils/todos.js -------------------------------------------------------------------------------- /scripts/webview/build-bak.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/scripts/webview/build-bak.js -------------------------------------------------------------------------------- /scripts/webview/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/scripts/webview/build.js -------------------------------------------------------------------------------- /src/docs/assets/sketch-plugin-boilerplate-logo-reverse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/src/docs/assets/sketch-plugin-boilerplate-logo-reverse.svg -------------------------------------------------------------------------------- /src/docs/assets/sketch-plugin-boilerplate-logo.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/src/docs/assets/sketch-plugin-boilerplate-logo.sketch -------------------------------------------------------------------------------- /src/docs/assets/sketch-plugin-boilerplate-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/src/docs/assets/sketch-plugin-boilerplate-logo.svg -------------------------------------------------------------------------------- /src/frameworks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/src/plugin/index.js -------------------------------------------------------------------------------- /src/plugin/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/src/plugin/manifest.json -------------------------------------------------------------------------------- /src/plugin/utils/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/src/plugin/utils/core.js -------------------------------------------------------------------------------- /src/plugin/utils/formatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/src/plugin/utils/formatter.js -------------------------------------------------------------------------------- /src/plugin/utils/webview/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/src/plugin/utils/webview/index.js -------------------------------------------------------------------------------- /src/plugin/utils/webview/panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/src/plugin/utils/webview/panel.js -------------------------------------------------------------------------------- /src/plugin/utils/webview/webview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/src/plugin/utils/webview/webview.js -------------------------------------------------------------------------------- /src/plugin/utils/webview/window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/src/plugin/utils/webview/window.js -------------------------------------------------------------------------------- /src/webview/assets/sketch-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/src/webview/assets/sketch-logo.svg -------------------------------------------------------------------------------- /src/webview/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/src/webview/index.html -------------------------------------------------------------------------------- /src/webview/js/actions/bridge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/src/webview/js/actions/bridge.js -------------------------------------------------------------------------------- /src/webview/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/src/webview/js/app.js -------------------------------------------------------------------------------- /src/webview/js/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/webview/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/src/webview/js/index.js -------------------------------------------------------------------------------- /src/webview/js/reducers/bridge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/src/webview/js/reducers/bridge.js -------------------------------------------------------------------------------- /src/webview/js/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/src/webview/js/reducers/index.js -------------------------------------------------------------------------------- /src/webview/js/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/src/webview/js/store.js -------------------------------------------------------------------------------- /src/webview/js/utils/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/src/webview/js/utils/sketch.js -------------------------------------------------------------------------------- /src/webview/scss/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/src/webview/scss/_colors.scss -------------------------------------------------------------------------------- /src/webview/scss/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/src/webview/scss/_fonts.scss -------------------------------------------------------------------------------- /src/webview/scss/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/src/webview/scss/index.scss -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julianburr/sketch-plugin-boilerplate/HEAD/yarn.lock --------------------------------------------------------------------------------