Skip to content

Commit cca4381

Browse files
committed
Include compiled css files
Fix grunt task name Update README with instructions about running the dev env
1 parent 2ebea56 commit cca4381

File tree

5 files changed

+424
-3
lines changed

5 files changed

+424
-3
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
node_modules
44
*.DS_Store
55
.DS_Store
6-
*.css
6+
*.map
77
*.swp

Gruntfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ module.exports = function(grunt){
2626
}
2727
});
2828

29-
grunt.registerTask('default', ['buildcss']);
29+
grunt.registerTask('default', ['build','watch']);
3030
grunt.registerTask('build', ['sass', 'cssmin']);
3131

3232
};

README.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
A small library of CSS helper classes that can be used to reduce the amount of CSS that can be added every time you need to add a new module or elements.
22

3-
### Installation
3+
### Add it to your project
44

55
You can install it using bower
66

@@ -10,5 +10,19 @@ bower install css-helpers-lib
1010

1111
Or you can download it manualy and add it to your project.
1212

13+
### Development
14+
15+
Install npm packages
16+
17+
```
18+
npm install
19+
```
20+
21+
Run `grunt` to build the code and start watching files.
22+
23+
```
24+
grunt
25+
```
26+
1327
### Using
1428
Read more about the idea and using the classes by reading [Using Helper Classes to DRY and Scale CSS](http://www.sitepoint.com/using-helper-classes-dry-scale-css/)

0 commit comments

Comments
 (0)