-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(*): extracts q service from sofa-core
- Loading branch information
Showing
29 changed files
with
394 additions
and
3,753 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,21 @@ | ||
# Sofa Core [![Build Status](https://travis-ci.org/sofa/sofa-core.png?branch=master)](https://travis-ci.org/sofa/sofa-core) | ||
# Sofa Q Service [![Build Status](https://travis-ci.org/sofa/sofa-q-service.png?branch=master)](https://travis-ci.org/sofa/sofa-q-service) | ||
|
||
> Sofa Web SDK Core Components | ||
This is the Sofa Core component. This component is actually more like a bundle, | ||
that gives you core functionalities on which other sofa components depend on. | ||
This is the Sofa Q Service component. This service is actually a part of | ||
the Angular `$q` service source to bring deferreds and flow control to | ||
sofa. | ||
|
||
## Installation | ||
|
||
Via npm: | ||
|
||
```sh | ||
$ npm install sofa-core | ||
$ npm install sofa-q-service | ||
``` | ||
|
||
Via Bower: | ||
|
||
```sh | ||
$ bower install sofa-core | ||
$ bower install sofa-q-service | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "sofa-core", | ||
"version": "0.3.0", | ||
"name": "sofa-q-service", | ||
"version": "0.1.0", | ||
"homepage": "http://www.sofa.io", | ||
"authors": [ | ||
"Pascal Precht <[email protected]>" | ||
|
@@ -10,6 +10,9 @@ | |
"devDependencies": { | ||
"sofa-testing": "0.1.x" | ||
}, | ||
"dependencies": { | ||
"sofa-core": "0.4.x" | ||
}, | ||
"keywords": [ | ||
"sofa", | ||
"sofa.io", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
;(function (window, undefined) { | ||
;(function (sofa, undefined) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
}(window)); | ||
}(sofa)); |
Oops, something went wrong.