fable 3.0.53 → 3.0.55
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/package.json
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fable",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.55",
|
|
4
4
|
"description": "An entity behavior management and API bundling library.",
|
|
5
5
|
"main": "source/Fable.js",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"start": "node source/Fable.js",
|
|
8
8
|
"coverage": "./node_modules/.bin/nyc --reporter=lcov --reporter=text-lcov ./node_modules/mocha/bin/_mocha -- -u tdd -R spec",
|
|
9
9
|
"test": "./node_modules/.bin/mocha -u tdd -R spec",
|
|
10
|
-
"build": "
|
|
11
|
-
"build-compatible": "GULP_CUSTOM_BUILD_TARGET=compatible ./node_modules/.bin/gulp build",
|
|
10
|
+
"build": "npx quack build",
|
|
12
11
|
"docker-dev-build": "docker build ./ -f Dockerfile_LUXURYCode -t fable-image:local",
|
|
13
12
|
"docker-dev-run": "docker run -it -d --name fable-dev -p 30001:8080 -p 38086:8086 -v \"$PWD/.config:/home/coder/.config\" -v \"$PWD:/home/coder/fable\" -u \"$(id -u):$(id -g)\" -e \"DOCKER_USER=$USER\" fable-image:local",
|
|
14
13
|
"docker-dev-shell": "docker exec -it fable-dev /bin/bash"
|
|
@@ -50,7 +49,7 @@
|
|
|
50
49
|
},
|
|
51
50
|
"homepage": "https://github.com/stevenvelozo/fable",
|
|
52
51
|
"devDependencies": {
|
|
53
|
-
"
|
|
52
|
+
"quackage": "^1.0.11"
|
|
54
53
|
},
|
|
55
54
|
"dependencies": {
|
|
56
55
|
"async.eachlimit": "^0.5.2",
|
|
@@ -62,7 +61,6 @@
|
|
|
62
61
|
"fable-settings": "^3.0.6",
|
|
63
62
|
"fable-uuid": "^3.0.5",
|
|
64
63
|
"manyfest": "^1.0.24",
|
|
65
|
-
"quackage": "^1.0.6",
|
|
66
64
|
"simple-get": "^4.0.1"
|
|
67
65
|
}
|
|
68
66
|
}
|
|
@@ -54,7 +54,7 @@ class FableService extends libFableServiceBase.CoreServiceProviderBase
|
|
|
54
54
|
this.instantiateServiceProvider(pServiceType, {}, `${pServiceType}-Default`);
|
|
55
55
|
}
|
|
56
56
|
|
|
57
|
-
// Some
|
|
57
|
+
// Some services expect to be overloaded / customized class.
|
|
58
58
|
instantiateServiceProviderFromPrototype(pServiceType, pOptions, pCustomServiceHash, pServicePrototype)
|
|
59
59
|
{
|
|
60
60
|
// Instantiate the service
|