-
Notifications
You must be signed in to change notification settings - Fork 197
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
719ada4
commit db6d811
Showing
2,363 changed files
with
13,653 additions
and
11,080 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
module.exports = function(grunt) { | ||
|
||
require('time-grunt')(grunt); | ||
|
||
require('load-grunt-config')(grunt, { | ||
jitGrunt: { | ||
staticMappings: { | ||
replace: 'grunt-text-replace', | ||
lessToSass: 'grunt-less-to-sass' | ||
} | ||
} | ||
}); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Vagrant.configure("2") do |config| | ||
config.vm.box = "ubuntu/trusty64" | ||
config.vm.provision :shell, path: "provision.sh" | ||
config.vm.synced_folder ".", "/vagrant", create: true | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,31 @@ | ||
{ | ||
"name": "material-design-iconic-font", | ||
"description": "Material Design Iconic Font", | ||
"version": "1.1.1", | ||
"keywords": [ | ||
"material", | ||
"design", | ||
"icons", | ||
"font" | ||
], | ||
"authors": [ | ||
"Sergey Kupletsky <s.kupletsky@gmail.com>" | ||
], | ||
"license": ["OFL-1.1", "MIT", "CC-BY-3.0"], | ||
"main": [ | ||
"./css/material-design-iconic-font.css", | ||
"./fonts/*" | ||
], | ||
"ignore": [ | ||
"*/.*", | ||
"*.json", | ||
"*.md" | ||
], | ||
"homepage": "http://zavoloklom.github.io/material-design-iconic-font/", | ||
"dependencies": {}, | ||
"devDependencies": {} | ||
"name": "material-design-iconic-font", | ||
"description": "Material Design Iconic Font", | ||
"keywords": [ | ||
"material", | ||
"design", | ||
"icons", | ||
"font" | ||
], | ||
"authors": [ | ||
"Sergey Kupletsky <s.kupletsky@gmail.com> (http://github.com/zavoloklom)" | ||
], | ||
"license": ["OFL-1.1", "MIT"], | ||
"main": [ | ||
"./dist/css/*", | ||
"./dist/fonts/*" | ||
], | ||
"ignore": [ | ||
"*/.*", | ||
"node_modules/*", | ||
"*.json", | ||
"*.md" | ||
], | ||
"homepage": "http://zavoloklom.github.io/material-design-iconic-font/", | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/zavoloklom/material-design-iconic-font.git" | ||
}, | ||
"dependencies": {}, | ||
"devDependencies": {} | ||
} |
Oops, something went wrong.