From 5a570ee870bbfa1e3ca9b1fcb7fd1f5035872eb3 Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Wed, 11 Jul 2018 21:20:48 +0300 Subject: [PATCH 1/2] remove old Gruntfile - good bye old friend --- Gruntfile.coffee | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 Gruntfile.coffee diff --git a/Gruntfile.coffee b/Gruntfile.coffee deleted file mode 100644 index 07ef3214e..000000000 --- a/Gruntfile.coffee +++ /dev/null @@ -1,29 +0,0 @@ -module.exports = (grunt) -> - - grunt.initConfig - "embark-framework": {} - pkg: grunt.file.readJSON('package.json') - clean: - build: ["build/"] - coffee: - compile: - expand: true - src: 'src/**/*.coffee' - dest: 'build/' - ext: '.js' - uglify: - options: banner: '/*! <%= pkg.name %> <%= grunt.template.today("dd-mm-yyyy") %> */\n' - build: - files: - 'build/<%= pkg.name %>.min.js': [ - "build/<%= pkg.name %>.js" - ] - mochaTest: - test: - src: ['test/**/*.js'] - - grunt.loadTasks "tasks" - require('matchdep').filterAll(['grunt-*','!grunt-cli']).forEach(grunt.loadNpmTasks) - - grunt.registerTask 'default', ['clean'] - grunt.registerTask 'build', ['clean', 'coffee'] From 29f5c342a34b11a382432f24961d01cdc92b6687 Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Wed, 11 Jul 2018 21:21:01 +0300 Subject: [PATCH 2/2] remove unused dev dependencies --- package.json | 6 ------ 1 file changed, 6 deletions(-) diff --git a/package.json b/package.json index 5857ba0fc..9e2434f97 100644 --- a/package.json +++ b/package.json @@ -98,12 +98,6 @@ "license": "MIT", "devDependencies": { "eslint": "4.13.1", - "grunt": "^1.0.1", - "grunt-cli": "^1.2.0", - "grunt-contrib-clean": "^1.0.0", - "grunt-contrib-coffee": "^2.0.0", - "grunt-mocha-test": "^0.13.2", - "matchdep": "^1.0.1", "mocha-sinon": "^1.1.4", "sinon": "^4.5.0" }