HatScripts / circle-flags

A collection of 400+ minimal circular SVG country, state and language flags
https://hatscripts.github.io/circle-flags
MIT License
927 stars 248 forks source link

Add svgo as npm dependency and set up npm script to run it #100

Open waldyrious opened 1 year ago

waldyrious commented 1 year ago

Fixes #99. This allows making the svgo dependency explicit and locked to a working version, while also simplifying the commands for contributing to the project.

Before After
Install svgo npm install -g svgo npm install
Run svgo svgo ./flags --recursive --config=svgo.config.js npm run svgo

I've updated the instructions in the README, taking care to describe what's going on at each step so there's no mysterious magic happening behind the scenes for those who are not familiar with Node.js projects.

(Btw, we should probably mention in the README that Node.js is required for contributing, since svgo is a Node.js project — wdyt @HatScripts?) Update: done.