├── .appcast.xml ├── .gitignore ├── .prettierrc ├── README.md ├── assets └── icon.png ├── package.json ├── resources ├── app.js ├── dialog.html └── style.css ├── sketch-assets └── icons.sketch ├── src ├── manifest.json └── my-command.js └── webpack.skpm.config.js /.appcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sketch-hq/color-variables-migrator/HEAD/.appcast.xml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sketch-hq/color-variables-migrator/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sketch-hq/color-variables-migrator/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sketch-hq/color-variables-migrator/HEAD/README.md -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sketch-hq/color-variables-migrator/HEAD/assets/icon.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sketch-hq/color-variables-migrator/HEAD/package.json -------------------------------------------------------------------------------- /resources/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sketch-hq/color-variables-migrator/HEAD/resources/app.js -------------------------------------------------------------------------------- /resources/dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sketch-hq/color-variables-migrator/HEAD/resources/dialog.html -------------------------------------------------------------------------------- /resources/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sketch-hq/color-variables-migrator/HEAD/resources/style.css -------------------------------------------------------------------------------- /sketch-assets/icons.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sketch-hq/color-variables-migrator/HEAD/sketch-assets/icons.sketch -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sketch-hq/color-variables-migrator/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/my-command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sketch-hq/color-variables-migrator/HEAD/src/my-command.js -------------------------------------------------------------------------------- /webpack.skpm.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sketch-hq/color-variables-migrator/HEAD/webpack.skpm.config.js --------------------------------------------------------------------------------