Skip to content

Commit

Permalink
Merge branch 'hotfix-1.0.9' into stable
Browse files Browse the repository at this point in the history
  • Loading branch information
DominicWatson committed Sep 23, 2024
2 parents b2d66db + 93394d7 commit 4ec07d1
Show file tree
Hide file tree
Showing 6 changed files with 1,807 additions and 69 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v1.0.9

* Fix issues with duplicate entry errors recording "recently visited" entries for launcher

## v1.0.8

* [#10](https://github.com/pixl8/preside-ext-launcher/issues/10) compat issue: siteTreeService not available in admin only apps
Expand Down
30 changes: 1 addition & 29 deletions assets/Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@ module.exports = function( grunt ) {
grunt.loadNpmTasks( 'grunt-contrib-uglify' );
grunt.loadNpmTasks( 'grunt-contrib-watch' );
grunt.loadNpmTasks( 'grunt-rev' );
grunt.loadNpmTasks( 'grunt-postcss' );

grunt.registerTask( 'default', [ 'uglify', 'less', 'postcss', 'cssmin', 'clean', 'rev', 'rename' ] );
grunt.registerTask( 'default', [ 'uglify', 'less', 'cssmin', 'clean', 'rev', 'rename' ] );

grunt.initConfig( {
uglify: {
Expand All @@ -33,22 +32,6 @@ module.exports = function( grunt ) {

pathSplit[ pathSplit.length-1 ] = "_" + pathSplit[ pathSplit.length-2 ] + ".min.js";

return dest + pathSplit.join( "/" );
}
}]
},
frontend:{
files: [{
expand : true,
cwd : "js/frontend/",
src : ["**/*.js", "!**/*.min.js" ],
dest : "js/frontend/",
ext : ".min.js",
rename : function( dest, src ){
var pathSplit = src.split( '/' );

pathSplit[ pathSplit.length-1 ] = "_" + pathSplit[ pathSplit.length-2 ] + ".min.js";

return dest + pathSplit.join( "/" );
}
}]
Expand Down Expand Up @@ -77,17 +60,6 @@ module.exports = function( grunt ) {
}
},

postcss: {
options: {
processors : [
require( 'autoprefixer' )( { browsers : [ 'defaults', 'IE >= 9' ] } )
]
},
all: {
src : 'css/**/*.less.css'
}
},

cssmin: {
all: {
expand : true,
Expand Down
Loading

0 comments on commit 4ec07d1

Please sign in to comment.