Skip to content

Commit

Permalink
match render decorator
Browse files Browse the repository at this point in the history
  • Loading branch information
Maciej Szary committed Apr 12, 2016
1 parent f02dcc1 commit b27f2e3
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 8 deletions.
6 changes: 3 additions & 3 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ module.exports = function(grunt) {
},
dist: {
files: {
'dist/<%= pkg.name %>.min.css': 'dist/<%= pkg.name %>.css'
'dist/jquery.bracket.min.css': 'dist/jquery.bracket.css'
}
}
},
Expand All @@ -30,7 +30,7 @@ module.exports = function(grunt) {
},
dist: {
files: {
'dist/<%= pkg.name %>.min.js': ['dist/<%= pkg.name %>.js']
'dist/jquery.bracket.min.js': ['dist/jquery.bracket.js']
}
}
},
Expand All @@ -57,5 +57,5 @@ module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-tslint');
grunt.loadNpmTasks('grunt-css');

grunt.registerTask('default', ['tslint', 'shell', 'typescript', 'uglify', 'cssmin']);
grunt.registerTask('default', ['tslint', 'shell', 'typescript', 'cssmin', 'uglify' ]);
};
2 changes: 1 addition & 1 deletion dist/jquery.bracket.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit b27f2e3

Please sign in to comment.