Skip to content
Snippets Groups Projects
Commit 10222b39 authored by Benoit Lavenier's avatar Benoit Lavenier
Browse files

[fix] Remove unused gulp sourcemaps

parent 06634efd
No related branches found
No related tags found
No related merge requests found
...@@ -29,7 +29,6 @@ const gulp = require('gulp'), ...@@ -29,7 +29,6 @@ const gulp = require('gulp'),
htmlmin = require('gulp-htmlmin'), htmlmin = require('gulp-htmlmin'),
jshint = require('gulp-jshint'), jshint = require('gulp-jshint'),
markdown = require('gulp-markdown'), markdown = require('gulp-markdown'),
sourcemaps = require('gulp-sourcemaps'),
log = require('fancy-log'), log = require('fancy-log'),
colors = require('ansi-colors'); colors = require('ansi-colors');
...@@ -92,7 +91,6 @@ function appSass() { ...@@ -92,7 +91,6 @@ function appSass() {
.pipe(cleanCss({ .pipe(cleanCss({
keepSpecialComments: 0 keepSpecialComments: 0
})) }))
.pipe(sourcemaps.write())
.pipe(rename({ extname: '.min.css' })) .pipe(rename({ extname: '.min.css' }))
.pipe(gulp.dest('./www/css/')); .pipe(gulp.dest('./www/css/'));
} }
...@@ -259,7 +257,6 @@ function pluginSass() { ...@@ -259,7 +257,6 @@ function pluginSass() {
.pipe(cleanCss({ .pipe(cleanCss({
keepSpecialComments: 0 keepSpecialComments: 0
})) }))
.pipe(sourcemaps.write())
.pipe(rename({ extname: '.min.css' })) .pipe(rename({ extname: '.min.css' }))
.pipe(gulp.dest('./www/css/')) .pipe(gulp.dest('./www/css/'))
); );
......
...@@ -133,7 +133,6 @@ ...@@ -133,7 +133,6 @@
"gulp-rev": "^7.0.0", "gulp-rev": "^7.0.0",
"gulp-rev-replace": "^0.4.3", "gulp-rev-replace": "^0.4.3",
"gulp-sass": "^4.0.2", "gulp-sass": "^4.0.2",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify-es": "^2.0.0", "gulp-uglify-es": "^2.0.0",
"gulp-useref": "^3.1.0", "gulp-useref": "^3.1.0",
"gulp-zip": "^3.2.0", "gulp-zip": "^3.2.0",
...@@ -216,4 +215,4 @@ ...@@ -216,4 +215,4 @@
"engines": { "engines": {
"yarn": ">= 1.0.0" "yarn": ">= 1.0.0"
} }
} }
\ No newline at end of file
...@@ -90,7 +90,7 @@ angular.module("cesium.config", []) ...@@ -90,7 +90,7 @@ angular.module("cesium.config", [])
} }
}, },
"version": "1.5.2", "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" "newIssueUrl": "https://git.duniter.org/clients/cesium-grp/cesium/issues/new"
}) })
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment