https://github.com/scalajs-io/angular-ui-bootstrap
angular-ui-bootstrap bindings for Scala.js
https://github.com/scalajs-io/angular-ui-bootstrap
angular angularjs scala scalajs
Last synced: 9 months ago
JSON representation
angular-ui-bootstrap bindings for Scala.js
- Host: GitHub
- URL: https://github.com/scalajs-io/angular-ui-bootstrap
- Owner: scalajs-io
- License: apache-2.0
- Created: 2017-03-11T21:56:38.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2019-06-17T23:06:48.000Z (over 6 years ago)
- Last Synced: 2025-01-17T22:42:59.260Z (11 months ago)
- Topics: angular, angularjs, scala, scalajs
- Language: Scala
- Size: 12.7 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Angular UI Bootstrap API for Scala.js
================================
[angular-ui-bootstrap](https://www.npmjs.com/package/angular-ui-bootstrap) - angular-ui-bootstrap binding for Scala.js.
### Description
UI Bootstrap - AngularJS directives specific to Bootstrap.
### Build Dependencies
* [SBT v1.2.x](http://www.scala-sbt.org/download.html)
### Build/publish the SDK locally
```bash
$ sbt clean publish-local
```
### Running the tests
Before running the tests the first time, you must ensure the npm packages are installed:
```bash
$ npm install
```
Then you can run the tests:
```bash
$ sbt test
```
### Artifacts and Resolvers
To add the `angular-ui-bootstrap` binding to your project, add the following to your build.sbt:
```sbt
libraryDependencies += "io.scalajs.npm" %%% "angular-ui-bootstrap" % "0.5.0"
```
Optionally, you may add the Sonatype Repository resolver:
```sbt
resolvers += Resolver.sonatypeRepo("releases")
```