@loopback/core 2.15.1 → 2.16.0

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/package.json +22 -22
package/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [2.16.0](https://github.com/strongloop/loopback-next/compare/@loopback/core@2.15.1...@loopback/core@2.16.0) (2021-05-03)
7
+
8
+
9
+ ### Features
10
+
11
+ * support node v16 ([ac99415](https://github.com/strongloop/loopback-next/commit/ac994154543bde22b4482ba98813351656db1b55))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [2.15.1](https://github.com/strongloop/loopback-next/compare/@loopback/core@2.15.0...@loopback/core@2.15.1) (2021-04-06)
7
18
 
8
19
  **Note:** Version bump only for package @loopback/core
package/package.json CHANGED
@@ -1,11 +1,19 @@
1
1
  {
2
2
  "name": "@loopback/core",
3
- "version": "2.15.1",
4
3
  "description": "Define and implement core constructs such as Application and Component",
4
+ "version": "2.16.0",
5
+ "license": "MIT",
5
6
  "main": "dist/index.js",
6
7
  "types": "dist/index.d.ts",
8
+ "author": "IBM Corp.",
9
+ "copyright.owner": "IBM Corp.",
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "https://github.com/strongloop/loopback-next.git",
13
+ "directory": "packages/core"
14
+ },
7
15
  "engines": {
8
- "node": "^10.16 || 12 || 14 || 15"
16
+ "node": "^10.16 || 12 || 14 || 16"
9
17
  },
10
18
  "scripts": {
11
19
  "acceptance": "lb-mocha \"dist/__tests__/acceptance/**/*.js\"",
@@ -17,34 +25,26 @@
17
25
  "unit": "lb-mocha \"dist/__tests__/unit/**/*.js\"",
18
26
  "verify": "npm pack && tar xf loopback-core*.tgz && tree package && npm run clean"
19
27
  },
20
- "author": "IBM Corp.",
21
- "copyright.owner": "IBM Corp.",
22
- "license": "MIT",
23
28
  "publishConfig": {
24
29
  "access": "public"
25
30
  },
26
- "dependencies": {
27
- "@loopback/context": "^3.15.1",
28
- "debug": "^4.3.1",
29
- "tslib": "^2.1.0"
30
- },
31
- "devDependencies": {
32
- "@loopback/build": "^6.3.1",
33
- "@loopback/eslint-config": "^10.1.1",
34
- "@loopback/testlab": "^3.3.1",
35
- "@types/debug": "^4.1.5",
36
- "@types/node": "^10.17.56"
37
- },
38
31
  "files": [
39
32
  "README.md",
40
33
  "dist",
41
34
  "src",
42
35
  "!*/__tests__"
43
36
  ],
44
- "repository": {
45
- "type": "git",
46
- "url": "https://github.com/strongloop/loopback-next.git",
47
- "directory": "packages/core"
37
+ "dependencies": {
38
+ "@loopback/context": "^3.16.0",
39
+ "debug": "^4.3.1",
40
+ "tslib": "^2.2.0"
41
+ },
42
+ "devDependencies": {
43
+ "@loopback/build": "^6.4.0",
44
+ "@loopback/eslint-config": "^10.2.0",
45
+ "@loopback/testlab": "^3.4.0",
46
+ "@types/debug": "^4.1.5",
47
+ "@types/node": "^10.17.59"
48
48
  },
49
- "gitHead": "156ca0fcf8fa246ca380ab28b44b3708896be2b6"
49
+ "gitHead": "2ca802912d8c7750d0256f3c3d493c4525415201"
50
50
  }