Skip to content

Commit 548683e

Browse files
author
FezVrasta
committed
Merge branch 'develop'
Conflicts: bower.json
2 parents b8eece9 + 073f830 commit 548683e

92 files changed

Lines changed: 14808 additions & 7331 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Gruntfile.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,13 @@ module.exports = function(grunt) {
1818
}
1919
},
2020

21+
githooks: {
22+
all: {
23+
// Will run the jshint and test:unit tasks at every commit
24+
"pre-commit": "less autoprefixer cssmin uglify copy newer:jshint jasmine:scripts"
25+
}
26+
},
27+
2128
sass: {
2229
compilesass: {
2330
files: {
@@ -170,7 +177,7 @@ module.exports = function(grunt) {
170177

171178
});
172179

173-
grunt.registerTask("default", ["less", "autoprefixer", "cssmin", "uglify", "copy"]);
180+
grunt.registerTask("default", ["githooks", "less", "autoprefixer", "cssmin", "uglify", "copy"]);
174181

175182
grunt.registerTask("scss", ["sass", "autoprefixer", "cssmin", "uglify", "copy"]);
176183

LICENSE.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,7 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
3030
GNU General Public License for more details.
3131

3232
This license could be edited in any moment without alert.
33+
34+
Here are listed the authorized individuals and companies and the specific of their licenses:
35+
36+
- **A*Star Education Ltd**: unlimited usage for websites and webapplications of the company.

bower.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
{
22
"name": "Material Design for Bootstrap",
3-
"version": "0.1.0",
3+
"version": "0.1.2",
44
"homepage": "http://fezvrasta.github.io/bootstrap-material-design",
55
"authors": [
66
"Federico Zivolo <info@mywebexpression.com>"
77
],
88
"description": "Material Design theme for Bootstrap 3",
99
"main": [
1010
"dist/css/material.css",
11-
"dist/js/material.js"
11+
"dist/js/material.js",
12+
"dist/css/ripples.css",
13+
"dist/js/ripples.js"
1214
],
1315
"ignore": [
1416
"test",

0 commit comments

Comments
 (0)