rollup-plugin-image-files
Version:
Like rollup-plugin-image, but writes image files to dest instead of inlining base64.
27 lines (21 loc) • 647 B
YAML
version: 2
jobs:
build:
docker:
- image: circleci/node:10.16.0
working_directory: ~/repo
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}-{{ checksum "package-lock.json" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run: npm ci
- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}-{{ checksum "package-lock.json" }}
- run: npm run lint
- run: npm test