Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
Commit type | Emoji |
---|---|
Initial commit | 🎉 :tada: |
Version tag | 🔖 :bookmark: |
New feature | ✨ :sparkles: |
Bugfix | 🐛 :bug: |
// we need to format a csv file | |
import converter from 'json-2-csv' | |
// we need to write a csv file | |
import fs from 'fs' | |
// we need to hit their api | |
import fetch from 'node-fetch' | |
// we need to unfold nested objects | |
import flatten from './flatten.js' | |
const URL = 'https://www.balldontlie.io/api/v1' |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
Commit type | Emoji |
---|---|
Initial commit | 🎉 :tada: |
Version tag | 🔖 :bookmark: |
New feature | ✨ :sparkles: |
Bugfix | 🐛 :bug: |