Skip to content

Commit

Permalink
build(config): update grunt config
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisguttandin committed Jul 13, 2023
1 parent 65afa7e commit 89858d2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions config/grunt/sh.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
module.exports = (grunt) => {
const continuous = grunt.option('continuous') === true;
const fix = grunt.option('fix') === true;

return {
'build-es2019': {
Expand All @@ -22,7 +21,7 @@ module.exports = (grunt) => {
cmd: 'npm run lint:src'
},
'lint-test': {
cmd: `eslint --config config/eslint/test.json --ext .js ${fix ? '--fix ' : ''}--report-unused-disable-directives test/`
cmd: 'npm run lint:test'
},
'test-integration-browser': {
cmd: `karma start config/karma/config-integration.js ${continuous ? '--concurrency Infinity' : '--single-run'}`
Expand Down

0 comments on commit 89858d2

Please sign in to comment.