@loopback/core 2.16.1 → 2.16.2
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/README.md +4 -4
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -24,7 +24,7 @@ servers.
|
|
|
24
24
|
|
|
25
25
|
For a typical example of how to create a REST server with your application, see
|
|
26
26
|
the
|
|
27
|
-
[@loopback/rest package.](https://github.com/
|
|
27
|
+
[@loopback/rest package.](https://github.com/loopbackio/loopback-next/tree/master/packages/rest)
|
|
28
28
|
|
|
29
29
|
## Advanced Use
|
|
30
30
|
|
|
@@ -71,8 +71,8 @@ dynamic configuration updates.
|
|
|
71
71
|
|
|
72
72
|
## Contributions
|
|
73
73
|
|
|
74
|
-
- [Guidelines](https://github.com/
|
|
75
|
-
- [Join the team](https://github.com/
|
|
74
|
+
- [Guidelines](https://github.com/loopbackio/loopback-next/blob/master/docs/CONTRIBUTING.md)
|
|
75
|
+
- [Join the team](https://github.com/loopbackio/loopback-next/issues/110)
|
|
76
76
|
|
|
77
77
|
## Tests
|
|
78
78
|
|
|
@@ -81,7 +81,7 @@ Run `npm test` from the root folder.
|
|
|
81
81
|
## Contributors
|
|
82
82
|
|
|
83
83
|
See
|
|
84
|
-
[all contributors](https://github.com/
|
|
84
|
+
[all contributors](https://github.com/loopbackio/loopback-next/graphs/contributors).
|
|
85
85
|
|
|
86
86
|
## License
|
|
87
87
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loopback/core",
|
|
3
3
|
"description": "Define and implement core constructs such as Application and Component",
|
|
4
|
-
"version": "2.16.
|
|
4
|
+
"version": "2.16.2",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"copyright.owner": "IBM Corp.",
|
|
10
10
|
"repository": {
|
|
11
11
|
"type": "git",
|
|
12
|
-
"url": "https://github.com/
|
|
12
|
+
"url": "https://github.com/loopbackio/loopback-next.git",
|
|
13
13
|
"directory": "packages/core"
|
|
14
14
|
},
|
|
15
15
|
"engines": {
|
|
@@ -35,16 +35,16 @@
|
|
|
35
35
|
"!*/__tests__"
|
|
36
36
|
],
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@loopback/context": "^3.17.
|
|
38
|
+
"@loopback/context": "^3.17.1",
|
|
39
39
|
"debug": "^4.3.1",
|
|
40
|
-
"tslib": "^2.
|
|
40
|
+
"tslib": "^2.3.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@loopback/build": "^
|
|
44
|
-
"@loopback/eslint-config": "^
|
|
45
|
-
"@loopback/testlab": "^3.4.
|
|
43
|
+
"@loopback/build": "^7.0.0",
|
|
44
|
+
"@loopback/eslint-config": "^11.0.0",
|
|
45
|
+
"@loopback/testlab": "^3.4.2",
|
|
46
46
|
"@types/debug": "^4.1.5",
|
|
47
47
|
"@types/node": "^10.17.60"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "baac86fff18e0bc88a953814b6b181ebdbb446c3"
|
|
50
50
|
}
|