fable 3.0.28 → 3.0.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.browserslistrc +1 -1
- package/README.md +0 -3
- package/dist/fable.compatible.js +1941 -3274
- package/dist/fable.compatible.min.js +32 -33
- package/dist/fable.compatible.min.js.map +1 -1
- package/dist/fable.js +112 -111
- package/dist/fable.min.js +27 -46
- package/dist/fable.min.js.map +1 -1
- package/gulpfile-config.json +2 -2
- package/package.json +6 -6
- package/source/Fable-ServiceManager.js +7 -4
- package/source/Fable.js +48 -68
- package/source/services/Fable-Service-Operation-DefaultSettings.js +27 -0
- package/source/{Fable-Operation.js → services/Fable-Service-Operation.js} +10 -40
- package/test/FableDataArithmatic_tests.js +8 -8
- package/test/FableOperations_tests.js +9 -9
- package/test/FableUtility_tests.js +25 -25
- package/test/Fable_tests.js +7 -9
- package/source/services/Fable-Service-DataArithmatic.js +0 -17
package/.browserslistrc
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
> 0.01%
|
package/README.md
CHANGED
|
@@ -1,9 +1,6 @@
|
|
|
1
1
|
Fable Overview
|
|
2
2
|
=====
|
|
3
3
|
|
|
4
|
-
[](https://coveralls.io/r/stevenvelozo/fable?branch=master)
|
|
5
|
-
[](https://travis-ci.org/stevenvelozo/fable)
|
|
6
|
-
|
|
7
4
|
It is tiring to setup logging and settings management in every application you write. Fable provides a single line solution to have simple logging to the console via [bunyan](https://github.com/trentm/node-bunyan). Add a simple configuration object and it can also write the log to a file. Or even mongodb!
|
|
8
5
|
|
|
9
6
|
## Install
|