Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed bower from required dependencies #67

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ module.exports = function(grunt) {
},
bump: {
options: {
files: ['package.json', 'bower.json'],
files: ['package.json'],
updateConfigs: ['pkg'],
commit: true,
commitFiles: ['-a'],
Expand Down
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,16 @@ A directive for AngularJS providing a advanced visual search box.

### Usage

Include with bower


Include with node

Download package(until merged into master)
```sh
bower install angular-advanced-searchbox
npm install
```

The bower package contains files in the ```dist/```directory with the following names:
The package contains files in the ```dist/```directory with the following names:

- angular-advanced-searchbox.js
- angular-advanced-searchbox.min.js
Expand Down Expand Up @@ -200,4 +203,4 @@ $scope.availableSearchParams = [
{ key: "city", name: "City", placeholder: "City...", restrictToSuggestedValues: true, suggestedValues: ['Berlin', 'London', 'Paris'] }
{ key: "email", name: "E-Mail", placeholder: "E-Mail...", allowMultiple: true },
];
```
```
35 changes: 0 additions & 35 deletions bower.json

This file was deleted.

Loading