1.0.1 • Published 7 years ago

rollup-plugin-sketch-livereload v1.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

rollup-plugin-sketch-livereload

Rollup plugin for rerunning a Sketch plugin after it changes.

Install

Using npm:

npm install rollup-plugin-sketch-livereload --save-dev

Using yarn:

yarn add rollup-plugin-sketch-livereload -D

Usage

const livereload = require('rollup-plugin-sketch-livereload')
const { main } = require('./package.json');

module.exports = {
  plugins: [
    livereload({
      enabled: process.env.RENDER === 'true',
      bundle: main,
    }),
  ]
}

Options

enabled

Whether to render.

Boolean, defaults to true.

bundle

Location of the .sketchplugin file. If you're using skpm, you can use main from package.json.

String

command

Identifier to the command in the Sketch plugin's manifest.json.

String, defaults to main.

1.0.1

7 years ago

1.0.0

7 years ago