6.5.2 • Published 3 years ago

@sketch-hq/sketch-assistant-cli v6.5.2

Weekly downloads
15
License
MIT
Repository
github
Last release
3 years ago

sketch-assistant-cli

Sketch Assistants Node command-line utility.

You can use this utility to run Assistants against Sketch files outside of Sketch.

It can run whichever Assistants have been added to the file by Sketch, or run a custom set of Assistants passed in on the command line.

Installation

Global

npm i -g @sketch-hq/sketch-assistant-cli

Or,

yarn global add @sketch-hq/sketch-assistant-cli

The sketch-assistants command will then be available. See below for usage instructions.

Local

Alternatively the CLI will work when installed locally to a project too.

yarn add @sketch-hq/sketch-assistant-cli

The sketch-assistants command will then be available to use in your package.json scripts.

## Local development

Setup the monorepo according to the Getting Started instructions, and then in this folder:

yarn build
./bin/cli.js <args>

Usage

Run a Sketch file's configured Assistants.

sketch-assistants "./path/to/file.sketch"

Run multiple files:

sketch-assistants "./path/to/file-1.sketch" "./path/to/file-2.sketch"

Or use globs to run all Sketch files that match a pattern:

sketch-assistants "./**/*.sketch"

Flags

--json

Switch from human-readable output to JSON. Example:

sketch-assistants --json "./path/to/file.sketch"

--clear-cache

When Assistants are installed before a run, they are cached in a temporary folder to make future runs faster. Pass this flag to delete the cache folder.

--workspace

Optionally supply and overwrite the Assistant workspace configuration within the Sketch file(s) with your own. This can be useful for running Assistants against a file that haven't yet been setup with Assistants in the Sketch app.

sketch-assistants --workspace=./workspace.json "./path/to/file.sketch"

The data shape of the workspace itself is essentially a package.json, with the dependencies section indicating the active Assistants. The workspace JSON example below activates two Assistants:

{
  "dependencies": {
    "@sketch-hq/sketch-tidy-assistant": "latest",
    "@sketch-hq/sketch-naming-conventions-assistant": "latest"
  }
}

--assistant

Optionally supply a custom Assistant to use on the files. This is an Assistant defined entirely in JSON. Assistants to extend, as well as a custom configuration of object can be supplied.

sketch-assistants --assistant=./assistant.json "./path/to/file.sketch"

Example Assistant definition in JSON:

{
  "name": "max-3",
  "dependencies": {
    "@sketch-hq/sketch-core-assistant": "latest"
  },
  "assistant": {
    "extends": ["@sketch-hq/sketch-core-assistant"],
    "config": {
      "rules": {
        "@sketch-hq/sketch-core-assistant/groups-max-layers": {
          "active": true,
          "maxLayers": 3,
          "skipClasses": []
        }
      }
    }
  }
}
6.5.2

3 years ago

6.5.1

3 years ago

6.5.0

3 years ago

6.4.1

3 years ago

6.4.0

3 years ago

6.4.0-rc.0

3 years ago

6.3.1

3 years ago

6.3.0

3 years ago

6.0.0

4 years ago

6.0.0-rc.2

4 years ago

6.0.0-rc.1

4 years ago

6.0.0-rc.0

4 years ago

5.0.0

4 years ago

5.0.0-next.22

4 years ago

5.0.0-next.21

4 years ago

5.0.0-next.19

4 years ago

5.0.0-next.20

4 years ago

5.0.0-next.18

4 years ago

5.0.0-next.17

4 years ago

5.0.0-next.16

4 years ago

5.0.0-next.15

4 years ago