removed grunt

This commit is contained in:
mserranom 2020-02-17 16:24:52 +01:00
parent c8617ff55e
commit 2e35a7ccf9
4 changed files with 2 additions and 1875 deletions

View file

@ -1 +1 @@
4.2.1
10.19.0

View file

@ -1,34 +0,0 @@
spawn = require("child_process").spawn
module.exports = (grunt) ->
grunt.initConfig
unit_tests:
expand: true
cwd: "test/unit/js"
src: ["**/*.coffee"]
dest: "test/unit/js/"
ext: ".js"
mochaTest:
unit:
options:
reporter: grunt.option('reporter') or 'spec'
grep: grunt.option("grep")
src: ["test/unit/js/**/*.js"]
grunt.loadNpmTasks 'grunt-contrib-coffee'
grunt.loadNpmTasks 'grunt-contrib-clean'
grunt.loadNpmTasks 'grunt-mocha-test'
grunt.loadNpmTasks 'grunt-execute'
grunt.loadNpmTasks 'grunt-bunyan'
grunt.registerTask 'compile:unit_tests', ['clean:unit_tests', 'coffee:unit_tests']
grunt.registerTask 'test:unit', ['compile:unit_tests', 'mochaTest:unit']
grunt.registerTask 'compile:acceptance_tests', ['clean:acceptance_tests', 'coffee:acceptance_tests']
grunt.registerTask 'test:acceptance', ['compile:acceptance_tests', 'mochaTest:acceptance']
grunt.registerTask 'install', 'compile:app'
grunt.registerTask 'default', ['run']

File diff suppressed because it is too large Load diff

View file

@ -5,7 +5,7 @@
"private": true,
"main": "index.js",
"scripts": {
"test": "grunt coffee && grunt mochaTest"
"test": "mocha test/**/*.js"
},
"author": "",
"license": "Proprietary",
@ -13,13 +13,6 @@
"devDependencies": {
"bunyan": "~0.22.3",
"chai": "",
"grunt": "~0.4.5",
"grunt-bunyan": "~0.5.0",
"grunt-cli": "^1.3.2",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-coffee": "~0.10.1",
"grunt-execute": "~0.2.1",
"grunt-mocha-test": "^0.13.3",
"mocha": "^6.2.2",
"nock": "0.15.2",
"sandboxed-module": "^2.0.3",