Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/angular-ui/angular-ui-OLDREPO
DISCONTINUED REPO: This project has been restructured ->
https://github.com/angular-ui/angular-ui-OLDREPO
Last synced: about 1 month ago
JSON representation
DISCONTINUED REPO: This project has been restructured ->
- Host: GitHub
- URL: https://github.com/angular-ui/angular-ui-OLDREPO
- Owner: angular-ui
- License: mit
- Archived: true
- Created: 2012-03-21T19:32:13.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2015-06-11T23:56:32.000Z (over 9 years ago)
- Last Synced: 2024-10-19T04:08:14.079Z (about 2 months ago)
- Language: JavaScript
- Homepage: http://angular-ui.github.com/
- Size: 6.34 MB
- Stars: 2,198
- Watchers: 138
- Forks: 355
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# AngularUI - The companion suite for AngularJS
***
[![Build Status](https://secure.travis-ci.org/angular-ui/angular-ui.png)](http://travis-ci.org/angular-ui/angular-ui)
## Usage
### Requirements
* **AngularJS v1.0.0+** is currently required.
* **jQuery / Plugins** _(depends on directive)._ Check specific directive dependencies for more information## Installation
The repository comes with the modules pre-built and compressed into the `build/` directory.
```javascript
angular.module('myApp', ['ui']);
```The modules can be found in the [Directives](https://github.com/angular-ui/angular-ui/tree/master/modules/directives) and [Filters](https://github.com/angular-ui/angular-ui/tree/master/modules/filters) folders. Check out the readme file associated with each module for specific module usage information.
## Development
You do not need to build the project to use it - see above - but if you are working on it then this is what you need to know.
### Requirements
0. Install [Node.js](http://nodejs.org/) and NPM (should come with)
1. Install local dependencies:
```bash
$ npm install
```2. Install global dependencies `grunt`, `coffee-script`, and `testacular`:
```bash
$ npm install -g testacular coffee-script grunt
```### Build Files & Run Tests
Before you commit, always run `grunt` to build and test everything once.
```bash
$ grunt
```### Test & Develop
The modules come with unit tests that should be run on any changes and certainly before commiting changes to the project. The unit tests should also provide further insight into the usage of the modules.
First, start the testacular server:
```bash
$ grunt server
```
Then, open your browser to http://localhost:8080 and run the watch command to re-run tests on every save:
```bash
$ grunt watch
```### Publishing
For core team: if you wish to publish a new version follow these steps:
1. Bump the version number inside `package.json`
2. Build and test
3. Commit the updated `package.json` and `build/` folder on their own commit
4. Tag the commit: `git tag v[maj].[min].[patch]`
5. Push the tag: `git push [angular-ui] master --tags`