Skip to content

Commit

Permalink
Add support for JS bundling
Browse files Browse the repository at this point in the history
  • Loading branch information
necolas committed Oct 28, 2014
1 parent a05cb56 commit 066ef98
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 1 deletion.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
=== HEAD

* Add support for JS bundling.

=== 0.7.1 (June 24, 2014)

Add `.css` extension to imports for interoperability.
* Add `.css` extension to imports for interoperability.

=== 0.7.0 (June 21, 2014)

Expand Down
1 change: 1 addition & 0 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"version": "0.7.1",
"author": "Nicolas Gallagher",
"main": [
"index.js",
"lib/size.css",
"lib/size-sm.css",
"lib/size-md.css",
Expand Down
1 change: 1 addition & 0 deletions component.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"name": "suitcss-utils-size",
"repo": "suitcss/utils-size",
"version": "0.7.1",
"scripts": ["index.js"],
"styles": [
"lib/size.css",
"lib/size-sm.css",
Expand Down
4 changes: 4 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
require('./lib/size.css');
require('./lib/size-sm.css');
require('./lib/size-md.css');
require('./lib/size-lg.css');
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"style": "index.css",
"files": [
"index.css",
"index.js",
"lib"
],
"devDependencies": {
Expand Down

0 comments on commit 066ef98

Please sign in to comment.