Files
shields/scripts/export-supported-features-cli.js
Paul Melnikow ff9cd20821 Coverage cleanup (#2328)
- Stop running daily service tests in the main repo (since they're now handled [over here](https://github.com/badges/daily-tests)
- Add coverage and separate daily tests badges with links to coveralls
- Update our coverage ignores
    - Move scripts, which do not need coverage, into `scripts/`
- Split out coverage test for npm package
- Remove spurious env var

Ref: #1584 #2314
2018-11-17 09:37:09 -05:00

22 lines
412 B
JavaScript

'use strict'
const path = require('path')
const glob = require('glob')
const supportedFeatures = {
logos: glob
.sync(`${__dirname}/../logo/*.svg`)
.map(filename => path.basename(filename, '.svg')),
advertisedStyles: [
'plastic',
'flat',
'flat-square',
'for-the-badge',
'popout',
'popout-square',
'social',
],
}
console.log(JSON.stringify(supportedFeatures, null, 2))