projecte_ionic/node_modules/karma-coverage/gruntfile.js
2022-02-09 18:30:03 +01:00

79 lines
1.6 KiB
JavaScript
Executable file

module.exports = function (grunt) {
grunt.initConfig({
pkgFile: 'package.json',
simplemocha: {
options: {
ui: 'bdd',
reporter: 'dot'
},
unit: {
src: [
'test/mocha-globals.js',
'test/*.spec.js'
]
}
},
'npm-contributors': {
options: {
commitMessage: 'chore: update contributors'
}
},
conventionalChangelog: {
release: {
options: {
changelogOpts: {
preset: 'angular'
}
},
src: 'CHANGELOG.md'
}
},
conventionalGithubReleaser: {
release: {
options: {
auth: {
type: 'oauth',
token: process.env.GH_TOKEN
},
changelogOpts: {
preset: 'angular'
}
}
}
},
bump: {
options: {
commitMessage: 'chore: release v%VERSION%',
pushTo: 'upstream',
commitFiles: [
'package.json',
'CHANGELOG.md'
]
}
},
karma: {
coffee: {
configFile: 'examples/coffee/karma.conf.coffee'
},
coffeeRequireJS: {
configFile: 'examples/coffee-requirejs/karma.conf.coffee'
}
}
})
require('load-grunt-tasks')(grunt)
grunt.registerTask('default', ['simplemocha', 'karma'])
grunt.registerTask('release', 'Bump the version and publish to NPM.', function (type) {
grunt.task.run([
'npm-contributors',
'bump:' + (type || 'patch') + ':bump-only',
'conventionalChangelog',
'bump-commit',
'conventionalGithubReleaser',
'npm-publish'
])
})
}