From a64b1d02e7aedd71c36558e4240f427b6a1ad798 Mon Sep 17 00:00:00 2001 From: Manuel Friedli Date: Sun, 26 Jun 2016 22:53:54 +0200 Subject: [PATCH] clean up after we're done --- .gitlab-ci.yml | 11 +++++++++++ bower.json | 10 +++++----- package.json | 32 ++++++++++++++++---------------- 3 files changed, 32 insertions(+), 21 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2a939aa..76f896d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,6 +4,7 @@ variables: stages: - build - deploy + - clean_after_deploy Npm, Bower, Grunt: script: @@ -39,3 +40,13 @@ production: - master variables: ENVIRON: production + +clean: + stage: clean_after_deploy + script: + - rm -r node_modules + - rm -r bower_components + when: always + + + \ No newline at end of file diff --git a/bower.json b/bower.json index 561f1d7..8fc9c24 100644 --- a/bower.json +++ b/bower.json @@ -2,12 +2,12 @@ "name": "uhr", "version": "8.0.2-dev.0", "dependencies": { - "jquery": "~2.1.3", - "jquery-ui": "~1.11.2", - "jquery-cookie": "~1.4.1" + "jquery": "~2.2.4", + "jquery-ui": "~1.11.4", + "js-cookie": "~2.1.1" }, "devDependencies": { - "mocha": "~2.3.3", - "chai": "~3.3.0" + "mocha": "~2.5.3", + "chai": "~3.5.0" } } diff --git a/package.json b/package.json index b385660..0b588f7 100644 --- a/package.json +++ b/package.json @@ -23,22 +23,22 @@ ], "license": "GPL-3.0", "devDependencies": { - "bower": "^1.5.3", + "bower": "^1.7.9", "grunt": "~0.4.5", - "grunt-cli": "^0.1.13", - "grunt-contrib-clean": "~0.6.0", - "grunt-contrib-concat": "~0.5.0", - "grunt-contrib-connect": "~0.11.0", - "grunt-contrib-cssmin": "^0.14.0", - "grunt-contrib-jshint": "~0.11.0", - "grunt-contrib-qunit": "~0.7.0", - "grunt-contrib-uglify": "~0.9.2", - "grunt-contrib-watch": "~0.6.1", - "grunt-mocha-phantomjs": "^2.0.0", - "grunt-version": "^1.0.0", - "jshint-stylish": "~2.0.1", - "load-grunt-tasks": "~3.3.0", - "phantomjs": "^1.9.18", - "time-grunt": "~1.2.1" + "grunt-cli": "~1.2.0", + "grunt-contrib-clean": "~1.0.0", + "grunt-contrib-concat": "~1.0.1", + "grunt-contrib-connect": "~1.0.2", + "grunt-contrib-cssmin": "^1.0.1", + "grunt-contrib-jshint": "~1.0.0", + "grunt-contrib-qunit": "~1.2.0", + "grunt-contrib-uglify": "~1.0.1", + "grunt-contrib-watch": "~1.0.0", + "grunt-mocha-phantomjs": "^3.0.0", + "grunt-version": "^1.1.1", + "jshint-stylish": "~2.1.0", + "load-grunt-tasks": "~3.5.0", + "phantomjs-prebuilt": "^2.1.7", + "time-grunt": "~1.3.0" } }