Skip to content

Commit c414ef6

Browse files
committed
add CSS to bower.json, add package.json and npmignore
1 parent db0d646 commit c414ef6

File tree

6 files changed

+37
-3
lines changed

6 files changed

+37
-3
lines changed

.npmignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
.git
2+
.gitignore
3+
bower.json
4+
CHANGELOG.md
5+
package.json
6+
README.md
7+
screenshot.png

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### v2.0.2
2+
##### Added / Updated
3+
- Bring back CSS into bower.json.
4+
15
### v2.0.1
26
##### Added / Updated
37
- <a href="https://github.com/isteven/angular-multi-select/issues/52">#52</a> Form tag is now properly closed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Fully configurable through element attributes and CSS.
99
Go to http://isteven.github.io/angular-multi-select
1010

1111
### Current Version
12-
2.0.1
12+
2.0.2
1313

1414
### Change Log
1515
See <a href="https://github.com/isteven/angular-multi-select/blob/master/CHANGELOG.md">CHANGELOG.md</a>

angular-multi-select.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Creates a dropdown-like button with checkboxes.
44
*
55
* Project started on: Tue, 14 Jan 2014 - 5:18:02 PM
6-
* Current version: 2.0.1
6+
* Current version: 2.0.2
77
*
88
* Released under the MIT License
99
* --------------------------------------------------------------------------------

bower.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name" : "isteven-angular-multiselect",
3-
"version" : "v2.0.1",
3+
"version" : "v2.0.2",
44
"main" : [
55
"angular-multi-select.js",
66
"angular-multi-select.css"
@@ -9,6 +9,8 @@
99
".git",
1010
".gitignore",
1111
"bower.json",
12+
"CHANGELOG.md",
13+
"package.json",
1214
"README.md",
1315
"screenshot.png"
1416
]

package.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "isteven-angular-multiselect",
3+
"version": "v2.0.2",
4+
"description": "A multi select dropdown directive for AngularJS",
5+
"main": {
6+
"angular-multi-select.js",
7+
"angular-multi-select.css"
8+
"repository": {
9+
"type": "git",
10+
"url": "https://github.com/isteven/angular-multi-select.git"
11+
},
12+
"keywords": [
13+
"angular"
14+
],
15+
"author": "Ignatius Steven <[email protected]> (https://github.com/isteven)",
16+
"license": "MIT",
17+
"bugs": {
18+
"url": "https://github.com/isteven/angular-multi-select/issues"
19+
},
20+
"homepage": "https://github.com/isteven/angular-multi-select"
21+
}

0 commit comments

Comments
 (0)