Skip to content

Commit d051cc6

Browse files
committed
Renamed css file
1 parent c508de7 commit d051cc6

7 files changed

Lines changed: 15 additions & 8 deletions

File tree

Gruntfile.coffee

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,15 @@ module.exports = (grunt)->
33
TARGET_DIR = "css"
44

55
grunt.initConfig
6-
pkg: grunt.file.readJSON('package.json')
76
less:
87
app_css:
9-
src: "#{SRC_DIR}/<%= pkg.name %>.less"
10-
dest: "#{TARGET_DIR}/<%= pkg.name %>.css"
8+
src: "#{SRC_DIR}/flag-icon.less"
9+
dest: "#{TARGET_DIR}/flag-icon.css"
1110

1211
cssmin:
1312
app_css:
14-
src: "#{TARGET_DIR}/<%= pkg.name %>.css"
15-
dest: "#{TARGET_DIR}/<%= pkg.name %>.min.css"
13+
src: "#{TARGET_DIR}/flag-icon.css"
14+
dest: "#{TARGET_DIR}/flag-icon.min.css"
1615

1716
watch:
1817
css:

bower.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"name": "flag-icon-css",
3+
"version": "0.2.0",
4+
"main": ["./css/flag-icon.css", "./flags/*"],
5+
"ignore": [
6+
"**/.*"
7+
]
8+
}
File renamed without changes.

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.no-icons.min.css" rel="stylesheet" id="bootstrap">
1111
<link href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.min.css" rel="stylesheet">
1212
<link href="./assets/docs.css" rel="stylesheet">
13-
<link href="./css/flag-icon-css.css" rel="stylesheet">
13+
<link href="./css/flag-icon.css" rel="stylesheet">
1414
<script>
1515
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
1616
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
@@ -25,7 +25,7 @@
2525
<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>
2626
<div class="jumbotron text-center">
2727
<div class="container">
28-
<h1>flag-icon-css</h1>
28+
<h1>flag-icon<span class="text-muted">-css</span></h1>
2929
<p>
3030
CSS for vector based country flags!
3131
</p>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "flag-icon-css",
3-
"version": "0.1.0",
3+
"version": "0.2.0",
44
"devDependencies": {
55
"grunt": "0.4.x",
66
"grunt-contrib-less": "0.6.x",

0 commit comments

Comments
 (0)