forked from karma-runner/karma-chrome-launcher
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: use npm instead of Grunt for CI/CD
Except for updating contributors, which remains in Grunt. karma-runner#243
- Loading branch information
Jonathan Ginsburg
committed
Jan 4, 2022
1 parent
5512c91
commit c83d870
Showing
4 changed files
with
6,551 additions
and
3,167 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,80 +1,11 @@ | ||
module.exports = function (grunt) { | ||
grunt.loadNpmTasks('grunt-npm') | ||
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', | ||
releaseCount: 0 | ||
} | ||
} | ||
} | ||
}, | ||
bump: { | ||
options: { | ||
commitMessage: 'chore: release v%VERSION%', | ||
pushTo: 'upstream', | ||
commitFiles: [ | ||
'package.json', | ||
'CHANGELOG.md' | ||
] | ||
} | ||
}, | ||
karma: { | ||
options: { | ||
singleRun: true | ||
}, | ||
simple: { | ||
configFile: 'examples/simple/karma.conf.js' | ||
} | ||
} | ||
}) | ||
|
||
require('load-grunt-tasks')(grunt) | ||
|
||
grunt.registerTask('test', ['simplemocha']) | ||
grunt.registerTask('default', ['test']) | ||
|
||
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' | ||
]) | ||
}) | ||
} |
Oops, something went wrong.