1.0.6 • Published 7 years ago

grunt-merge-tap-files v1.0.6

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

grunt-merge-tap-files

Merge several tap.log files into one tap.log file.

##Why This grunt task is build because if often have more than one tap logs in the same project. In the Jenkins configuration you can only to refer one tap.log file. Whith this task you can merge many tap logs in one tap log file.

Install

Install grunt-merge-tap-files:

 npm install grunt-merge-tap-files --save-dev

Than inside the Gruntfile.js

   // load the task
   grunt.loadNpmTasks('grunt-merge-tap-files');

   // configure the task
   grunt.initConfig({
        mergetapfiles: {
            options: {
                cmd: __dirname + '/out',
                src: ['tap1.log', 'tap2.log'],
                outputFile: 'tapmerged.log'
            }
        }
   });  

   // and than run the task
   grunt.registerTask('default', ['mergetapfiles']);
1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago