@loopback/build 6.2.8 → 6.4.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 +39 -0
  2. package/package.json +27 -27
package/CHANGELOG.md CHANGED
@@ -3,6 +3,45 @@
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
+ # [6.4.0](https://github.com/strongloop/loopback-next/compare/@loopback/build@6.3.1...@loopback/build@6.4.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
+
17
+ ## [6.3.1](https://github.com/strongloop/loopback-next/compare/@loopback/build@6.3.0...@loopback/build@6.3.1) (2021-04-06)
18
+
19
+ **Note:** Version bump only for package @loopback/build
20
+
21
+
22
+
23
+
24
+
25
+ # [6.3.0](https://github.com/strongloop/loopback-next/compare/@loopback/build@6.2.9...@loopback/build@6.3.0) (2021-03-18)
26
+
27
+
28
+ ### Features
29
+
30
+ * update package-lock.json to v2 consistently ([dfc3fbd](https://github.com/strongloop/loopback-next/commit/dfc3fbdae0c9ca9f34c64154a471bef22d5ac6b7))
31
+ * upgrade to TypeScript 4.2.x ([05930bc](https://github.com/strongloop/loopback-next/commit/05930bc0cece3909dd66f75ad91eeaa2d365a480))
32
+
33
+
34
+
35
+
36
+
37
+ ## [6.2.9](https://github.com/strongloop/loopback-next/compare/@loopback/build@6.2.8...@loopback/build@6.2.9) (2021-01-21)
38
+
39
+ **Note:** Version bump only for package @loopback/build
40
+
41
+
42
+
43
+
44
+
6
45
  ## [6.2.8](https://github.com/strongloop/loopback-next/compare/@loopback/build@6.2.7...@loopback/build@6.2.8) (2020-12-07)
7
46
 
8
47
  **Note:** Version bump only for package @loopback/build
package/package.json CHANGED
@@ -1,50 +1,50 @@
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": "6.4.0",
5
+ "license": "MIT",
6
+ "bin": {
7
+ "lb-tsc": "./bin/compile-package.js",
8
+ "lb-eslint": "./bin/run-eslint.js",
9
+ "lb-prettier": "./bin/run-prettier.js",
10
+ "lb-mocha": "./bin/run-mocha.js",
11
+ "lb-nyc": "./bin/run-nyc.js",
12
+ "lb-clean": "./bin/run-clean.js"
13
+ },
14
+ "main": "index.js",
15
+ "author": "IBM Corp.",
16
+ "copyright.owner": "IBM Corp.",
4
17
  "repository": {
5
18
  "type": "git",
6
19
  "url": "https://github.com/strongloop/loopback-next.git",
7
20
  "directory": "packages/build"
8
21
  },
9
- "version": "6.2.8",
10
22
  "engines": {
11
- "node": "^10.16 || 12 || 14"
23
+ "node": "^10.16 || 12 || 14 || 16"
24
+ },
25
+ "scripts": {
26
+ "test": "npm run mocha",
27
+ "mocha": "node bin/run-mocha --timeout 30000 \"test/integration/*.js\" \"test/unit/*.js\""
12
28
  },
13
- "main": "index.js",
14
- "author": "IBM Corp.",
15
- "copyright.owner": "IBM Corp.",
16
- "license": "MIT",
17
29
  "publishConfig": {
18
30
  "access": "public"
19
31
  },
20
32
  "dependencies": {
21
- "@loopback/eslint-config": "^10.0.4",
22
- "@types/mocha": "^8.0.4",
23
- "@types/node": "^10.17.48",
33
+ "@loopback/eslint-config": "^10.2.0",
34
+ "@types/mocha": "^8.2.2",
35
+ "@types/node": "^10.17.59",
24
36
  "cross-spawn": "^7.0.3",
25
37
  "debug": "^4.3.1",
26
- "eslint": "^7.15.0",
27
- "fs-extra": "^9.0.1",
38
+ "eslint": "^7.25.0",
39
+ "fs-extra": "^9.1.0",
28
40
  "glob": "^7.1.6",
29
- "lodash": "^4.17.20",
30
- "mocha": "^8.2.1",
41
+ "lodash": "^4.17.21",
42
+ "mocha": "^8.3.2",
31
43
  "nyc": "^15.1.0",
32
44
  "prettier": "^2.2.1",
33
45
  "rimraf": "^3.0.2",
34
46
  "source-map-support": "^0.5.19",
35
- "typescript": "~4.1.2"
36
- },
37
- "bin": {
38
- "lb-tsc": "./bin/compile-package.js",
39
- "lb-eslint": "./bin/run-eslint.js",
40
- "lb-prettier": "./bin/run-prettier.js",
41
- "lb-mocha": "./bin/run-mocha.js",
42
- "lb-nyc": "./bin/run-nyc.js",
43
- "lb-clean": "./bin/run-clean.js"
44
- },
45
- "scripts": {
46
- "test": "npm run mocha",
47
- "mocha": "node bin/run-mocha --timeout 30000 \"test/integration/*.js\" \"test/unit/*.js\""
47
+ "typescript": "~4.2.4"
48
48
  },
49
- "gitHead": "44fc7765fa322c716e8f2914b3831748041ebd8c"
49
+ "gitHead": "2ca802912d8c7750d0256f3c3d493c4525415201"
50
50
  }