https://github.com/scalajs-io/angularjs-v1-bundle
AngularJS 1.7.x platform bundle
https://github.com/scalajs-io/angularjs-v1-bundle
Last synced: 9 months ago
JSON representation
AngularJS 1.7.x platform bundle
- Host: GitHub
- URL: https://github.com/scalajs-io/angularjs-v1-bundle
- Owner: scalajs-io
- Created: 2019-06-11T18:55:30.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-06-12T19:30:02.000Z (over 6 years ago)
- Last Synced: 2025-01-17T22:42:57.454Z (11 months ago)
- Language: Scala
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Angularjs-v1-bundle API for Scala.js
================================
angularjs-v1-bundle - The Angular.js platform bundle
### Description
The Angular.js platform bundled as a single SBT dependency.
### Build Dependencies
* [SBT v1.2.8](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 `Angularjs-v1-bundle` binding to your project, add the following to your build.sbt:
```sbt
libraryDependencies += "io.scalajs.npm" %%% "angularjs-v1-bundle" % "0.5.0"
```
Optionally, you may add the Sonatype Repository resolver:
```sbt
resolvers += Resolver.sonatypeRepo("releases")
```