@loopback/build 7.0.2 → 8.0.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 +21 -0
  2. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -3,6 +3,27 @@
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
+ # [8.0.0](https://github.com/loopbackio/loopback-next/compare/@loopback/build@7.0.2...@loopback/build@8.0.0) (2021-11-18)
7
+
8
+
9
+ ### Features
10
+
11
+ * drop support for Node.js v10 ([9bcbbb3](https://github.com/loopbackio/loopback-next/commit/9bcbbb358ec3eabc3033d4e7e1c22b524a7069b3))
12
+ * support Node.js v17 ([8d86c03](https://github.com/loopbackio/loopback-next/commit/8d86c03cb7047e2b1f18d05870628ef5783e71b2))
13
+ * upgrade to TypeScript 4.5.2 ([72ece91](https://github.com/loopbackio/loopback-next/commit/72ece91289ecfdfd8747bb9888ad75db73e8ff4b))
14
+
15
+
16
+ ### BREAKING CHANGES
17
+
18
+ * drop support for Node.js v10
19
+
20
+ Co-authored-by: Francisco Buceta <frbuceta@gmail.com>
21
+ Signed-off-by: Rifa Achrinza <25147899+achrinza@users.noreply.github.com>
22
+
23
+
24
+
25
+
26
+
6
27
  ## [7.0.2](https://github.com/loopbackio/loopback-next/compare/@loopback/build@7.0.1...@loopback/build@7.0.2) (2021-10-18)
7
28
 
8
29
  **Note:** Version bump only for package @loopback/build
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@loopback/build",
3
3
  "description": "A set of common scripts and default configurations to build LoopBack 4 or other TypeScript modules",
4
- "version": "7.0.2",
4
+ "version": "8.0.0",
5
5
  "license": "MIT",
6
6
  "bin": {
7
7
  "lb-tsc": "./bin/compile-package.js",
@@ -21,7 +21,7 @@
21
21
  "directory": "packages/build"
22
22
  },
23
23
  "engines": {
24
- "node": "^10.16 || 12 || 14 || 16"
24
+ "node": "12 || 14 || 16 || 17"
25
25
  },
26
26
  "scripts": {
27
27
  "test": "npm run mocha",
@@ -31,7 +31,7 @@
31
31
  "access": "public"
32
32
  },
33
33
  "dependencies": {
34
- "@loopback/eslint-config": "^11.0.2",
34
+ "@loopback/eslint-config": "^12.0.0",
35
35
  "@types/mocha": "^9.0.0",
36
36
  "@types/node": "^10.17.60",
37
37
  "cross-spawn": "^7.0.3",
@@ -45,7 +45,7 @@
45
45
  "prettier": "^2.4.1",
46
46
  "rimraf": "^3.0.2",
47
47
  "source-map-support": "^0.5.20",
48
- "typescript": "~4.4.4"
48
+ "typescript": "~4.5.2"
49
49
  },
50
- "gitHead": "d9a29c85dbe38f12ba219d8c495cf6038bbc3590"
50
+ "gitHead": "00a62f630c19341ce399cec3a45563b1ead6e3b8"
51
51
  }