release v1.0.0 #14

Merged
thefeli73 merged 63 commits from develop into master 2019-11-12 18:53:53 +01:00
2 changed files with 5 additions and 23 deletions
Showing only changes of commit 3cb9bd4259 - Show all commits

View File

@ -199,16 +199,12 @@ var buildStyles = function (done) {
remove: true
})
]))
.pipe(header(banner.main, {package: package}))
.pipe(dest(paths.styles.output))
//.pipe(rename({suffix: '.min'}))
.pipe(postcss([
minify({
discardComments: {
removeAll: true
}
})
minify()
]))
.pipe(header(banner.main, {package: package}))
.pipe(hashsrc({build_dir:paths.output,src_path:'src',hash_len:"6",query_name:"v"}))
.pipe(dest(paths.styles.output));
};
@ -246,19 +242,6 @@ var updateAssetVersion = function (done) {
.pipe(dest(paths.output));
};
// updates version in all assets
var updateCssVersion = function (done) {
return src(paths.styles.input)
.pipe(hashsrc({build_dir:paths.output,src_path:'src',hash_len:"6",query_name:"v"}))
.pipe(dest(paths.styles.output));
};
// updates version in all assets
var updateCssVersion = function (done) {
return src(paths.styles.input)
.pipe(hashsrc({build_dir:paths.output,src_path:'src',hash_len:"6",query_name:"v"}))
.pipe(dest(paths.styles.output));
};
// Watch for changes to the src directory
var startServer = function (done) {
@ -303,11 +286,10 @@ exports.default = series(
copyFiles,
buildScripts,
lintScripts,
buildStyles,
buildSVGs
),
buildStyles,
updateAssetVersion,
updateCssVersion,
);
// Watch and reload

View File

@ -8037,7 +8037,7 @@ body {
@media screen and (max-width:450px) {
.marginAuto {
margin-bottom: 0px!important;
margin-bottom: 0!important;
width: 100%!important;
border-radius: 2px 2px 0 0;
}