- 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
22 lines
412 B
JavaScript
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))
|