Skip to content

Commit

Permalink
Renamed css file
Browse files Browse the repository at this point in the history
  • Loading branch information
lipis committed Sep 27, 2013
1 parent c508de7 commit d051cc6
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 8 deletions.
9 changes: 4 additions & 5 deletions Gruntfile.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,15 @@ module.exports = (grunt)->
TARGET_DIR = "css"

grunt.initConfig
pkg: grunt.file.readJSON('package.json')
less:
app_css:
src: "#{SRC_DIR}/<%= pkg.name %>.less"
dest: "#{TARGET_DIR}/<%= pkg.name %>.css"
src: "#{SRC_DIR}/flag-icon.less"
dest: "#{TARGET_DIR}/flag-icon.css"

cssmin:
app_css:
src: "#{TARGET_DIR}/<%= pkg.name %>.css"
dest: "#{TARGET_DIR}/<%= pkg.name %>.min.css"
src: "#{TARGET_DIR}/flag-icon.css"
dest: "#{TARGET_DIR}/flag-icon.min.css"

watch:
css:
Expand Down
8 changes: 8 additions & 0 deletions bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"name": "flag-icon-css",
"version": "0.2.0",
"main": ["./css/flag-icon.css", "./flags/*"],
"ignore": [
"**/.*"
]
}
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.no-icons.min.css" rel="stylesheet" id="bootstrap">
<link href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.min.css" rel="stylesheet">
<link href="./assets/docs.css" rel="stylesheet">
<link href="./css/flag-icon-css.css" rel="stylesheet">
<link href="./css/flag-icon.css" rel="stylesheet">
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
Expand All @@ -25,7 +25,7 @@
<a href="https://github.com/lipis/flag-icon-css"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" alt="Fork me on GitHub"></a>
<div class="jumbotron text-center">
<div class="container">
<h1>flag-icon-css</h1>
<h1>flag-icon<span class="text-muted">-css</span></h1>
<p>
CSS for vector based country flags!
</p>
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "flag-icon-css",
"version": "0.1.0",
"version": "0.2.0",
"devDependencies": {
"grunt": "0.4.x",
"grunt-contrib-less": "0.6.x",
Expand Down

0 comments on commit d051cc6

Please sign in to comment.