Skip to content

Commit

Permalink
add CSS to bower.json, add package.json and npmignore
Browse files Browse the repository at this point in the history
  • Loading branch information
isteven committed Oct 8, 2014
1 parent db0d646 commit c414ef6
Show file tree
Hide file tree
Showing 6 changed files with 37 additions and 3 deletions.
7 changes: 7 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.git
.gitignore
bower.json
CHANGELOG.md
package.json
README.md
screenshot.png
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### v2.0.2
##### Added / Updated
- Bring back CSS into bower.json.

### v2.0.1
##### Added / Updated
- <a href="https://github.com/isteven/angular-multi-select/issues/52">#52</a> Form tag is now properly closed
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Fully configurable through element attributes and CSS.
Go to http://isteven.github.io/angular-multi-select

### Current Version
2.0.1
2.0.2

### Change Log
See <a href="https://github.com/isteven/angular-multi-select/blob/master/CHANGELOG.md">CHANGELOG.md</a>
Expand Down
2 changes: 1 addition & 1 deletion angular-multi-select.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Creates a dropdown-like button with checkboxes.
*
* Project started on: Tue, 14 Jan 2014 - 5:18:02 PM
* Current version: 2.0.1
* Current version: 2.0.2
*
* Released under the MIT License
* --------------------------------------------------------------------------------
Expand Down
4 changes: 3 additions & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name" : "isteven-angular-multiselect",
"version" : "v2.0.1",
"version" : "v2.0.2",
"main" : [
"angular-multi-select.js",
"angular-multi-select.css"
Expand All @@ -9,6 +9,8 @@
".git",
".gitignore",
"bower.json",
"CHANGELOG.md",
"package.json",
"README.md",
"screenshot.png"
]
Expand Down
21 changes: 21 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"name": "isteven-angular-multiselect",
"version": "v2.0.2",
"description": "A multi select dropdown directive for AngularJS",
"main": {
"angular-multi-select.js",

This comment has been minimized.

Copy link
@sypl

sypl Dec 10, 2014

This is invalid JSON, no?

"angular-multi-select.css"
"repository": {
"type": "git",
"url": "https://github.com/isteven/angular-multi-select.git"
},
"keywords": [
"angular"
],
"author": "Ignatius Steven <[email protected]> (https://github.com/isteven)",
"license": "MIT",
"bugs": {
"url": "https://github.com/isteven/angular-multi-select/issues"
},
"homepage": "https://github.com/isteven/angular-multi-select"
}

1 comment on commit c414ef6

@isteven
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Indeed wrong JSON.. thanks for notifying this @sypl, much appreciated !

On a side note I'm quite amazed people didn't notice this before. Not many using the package.json?

Please sign in to comment.