From 10222b39858f9404a9f27fd9569c01b0751c2b98 Mon Sep 17 00:00:00 2001 From: Benoit Lavenier <benoit.lavenier@e-is.pro> Date: Mon, 27 Jan 2020 13:11:49 +0100 Subject: [PATCH] [fix] Remove unused gulp sourcemaps --- gulpfile.js | 3 --- package.json | 3 +-- www/js/config.js | 2 +- 3 files changed, 2 insertions(+), 6 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 83472df8..a921118a 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -29,7 +29,6 @@ const gulp = require('gulp'), htmlmin = require('gulp-htmlmin'), jshint = require('gulp-jshint'), markdown = require('gulp-markdown'), - sourcemaps = require('gulp-sourcemaps'), log = require('fancy-log'), colors = require('ansi-colors'); @@ -92,7 +91,6 @@ function appSass() { .pipe(cleanCss({ keepSpecialComments: 0 })) - .pipe(sourcemaps.write()) .pipe(rename({ extname: '.min.css' })) .pipe(gulp.dest('./www/css/')); } @@ -259,7 +257,6 @@ function pluginSass() { .pipe(cleanCss({ keepSpecialComments: 0 })) - .pipe(sourcemaps.write()) .pipe(rename({ extname: '.min.css' })) .pipe(gulp.dest('./www/css/')) ); diff --git a/package.json b/package.json index fc27ff01..e3395d3c 100644 --- a/package.json +++ b/package.json @@ -133,7 +133,6 @@ "gulp-rev": "^7.0.0", "gulp-rev-replace": "^0.4.3", "gulp-sass": "^4.0.2", - "gulp-sourcemaps": "^1.6.0", "gulp-uglify-es": "^2.0.0", "gulp-useref": "^3.1.0", "gulp-zip": "^3.2.0", @@ -216,4 +215,4 @@ "engines": { "yarn": ">= 1.0.0" } -} \ No newline at end of file +} diff --git a/www/js/config.js b/www/js/config.js index e7585ee3..fec56ab0 100644 --- a/www/js/config.js +++ b/www/js/config.js @@ -90,7 +90,7 @@ angular.module("cesium.config", []) } }, "version": "1.5.2", - "build": "2020-01-04T12:23:25.949Z", + "build": "2020-01-27T12:09:23.507Z", "newIssueUrl": "https://git.duniter.org/clients/cesium-grp/cesium/issues/new" }) -- GitLab