@loopback/build 9.0.0 → 9.0.3
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/CHANGELOG.md +28 -0
- package/LICENSE +1 -1
- package/README.md +2 -2
- package/bin/compile-package.js +1 -1
- package/bin/run-clean.js +1 -1
- package/bin/run-eslint.js +1 -1
- package/bin/run-mocha.js +1 -1
- package/bin/run-nyc.js +1 -1
- package/bin/run-prettier.js +1 -1
- package/bin/utils.js +1 -1
- package/config/.eslintrc.js +1 -1
- package/index.js +1 -1
- package/package.json +10 -10
- package/src/fail-on-console-logs.js +1 -1
- package/src/merge-mocha-configs.js +1 -1
- package/test/integration/fixtures/package.json +1 -1
- package/test/integration/fixtures/src/index.ts +1 -1
- package/test/integration/scripts.integration.js +1 -1
- package/test/unit/utils.unit.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,34 @@
|
|
|
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
|
+
## [9.0.3](https://github.com/loopbackio/loopback-next/compare/@loopback/build@9.0.2...@loopback/build@9.0.3) (2022-08-25)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @loopback/build
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [9.0.2](https://github.com/loopbackio/loopback-next/compare/@loopback/build@9.0.1...@loopback/build@9.0.2) (2022-07-14)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **docs:** documentation update from availalbe to available ([f3550ac](https://github.com/loopbackio/loopback-next/commit/f3550ac800e25a84f5b38ca125d51cb34980b7ec))
|
|
20
|
+
* **docs:** update build documentation for spelling mistake ([0f1cc69](https://github.com/loopbackio/loopback-next/commit/0f1cc69fde24b10ff2d54a86454ee022cf74ff82))
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
## [9.0.1](https://github.com/loopbackio/loopback-next/compare/@loopback/build@9.0.0...@loopback/build@9.0.1) (2022-06-13)
|
|
27
|
+
|
|
28
|
+
**Note:** Version bump only for package @loopback/build
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
6
34
|
## [9.0.0](https://github.com/loopbackio/loopback-next/compare/@loopback/build@8.1.2...@loopback/build@9.0.0) (2022-05-05)
|
|
7
35
|
|
|
8
36
|
|
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -79,7 +79,7 @@ Now you run the scripts, such as:
|
|
|
79
79
|
}
|
|
80
80
|
```
|
|
81
81
|
|
|
82
|
-
- Set options
|
|
82
|
+
- Set options explicitly for the script
|
|
83
83
|
|
|
84
84
|
```sh
|
|
85
85
|
lb-tsc -p tsconfig.json --target es2017 --outDir dist
|
|
@@ -98,7 +98,7 @@ Now you run the scripts, such as:
|
|
|
98
98
|
|
|
99
99
|
### Stability: ⚠️Experimental⚠️
|
|
100
100
|
|
|
101
|
-
If you would like to use `ttypescript` and its
|
|
101
|
+
If you would like to use `ttypescript` and its available plugins, you can
|
|
102
102
|
substitute `lb-tsc` with `lb-ttsc`, or pass the option
|
|
103
103
|
`lb-tsc --use-ttypescript`. If `ttypescript` is not installed, the default
|
|
104
104
|
TypeScript compiler `tsc` will be used instead.
|
package/bin/compile-package.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
// Copyright IBM Corp. 2017,2020. All Rights Reserved.
|
|
2
|
+
// Copyright IBM Corp. and LoopBack contributors 2017,2020. All Rights Reserved.
|
|
3
3
|
// Node module: @loopback/build
|
|
4
4
|
// This file is licensed under the MIT License.
|
|
5
5
|
// License text available at https://opensource.org/licenses/MIT
|
package/bin/run-clean.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
// Copyright IBM Corp. 2017,2020. All Rights Reserved.
|
|
2
|
+
// Copyright IBM Corp. and LoopBack contributors 2017,2020. All Rights Reserved.
|
|
3
3
|
// Node module: @loopback/build
|
|
4
4
|
// This file is licensed under the MIT License.
|
|
5
5
|
// License text available at https://opensource.org/licenses/MIT
|
package/bin/run-eslint.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
// Copyright IBM Corp. 2019,2020. All Rights Reserved.
|
|
2
|
+
// Copyright IBM Corp. and LoopBack contributors 2019,2020. All Rights Reserved.
|
|
3
3
|
// Node module: @loopback/build
|
|
4
4
|
// This file is licensed under the MIT License.
|
|
5
5
|
// License text available at https://opensource.org/licenses/MIT
|
package/bin/run-mocha.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
// Copyright IBM Corp. 2018,2020. All Rights Reserved.
|
|
2
|
+
// Copyright IBM Corp. and LoopBack contributors 2018,2020. All Rights Reserved.
|
|
3
3
|
// Node module: @loopback/build
|
|
4
4
|
// This file is licensed under the MIT License.
|
|
5
5
|
// License text available at https://opensource.org/licenses/MIT
|
package/bin/run-nyc.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
// Copyright IBM Corp. 2017,2020. All Rights Reserved.
|
|
2
|
+
// Copyright IBM Corp. and LoopBack contributors 2017,2020. All Rights Reserved.
|
|
3
3
|
// Node module: @loopback/build
|
|
4
4
|
// This file is licensed under the MIT License.
|
|
5
5
|
// License text available at https://opensource.org/licenses/MIT
|
package/bin/run-prettier.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
// Copyright IBM Corp. 2017,2018. All Rights Reserved.
|
|
2
|
+
// Copyright IBM Corp. and LoopBack contributors 2017,2018. All Rights Reserved.
|
|
3
3
|
// Node module: @loopback/build
|
|
4
4
|
// This file is licensed under the MIT License.
|
|
5
5
|
// License text available at https://opensource.org/licenses/MIT
|
package/bin/utils.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Copyright IBM Corp. 2017,2020. All Rights Reserved.
|
|
1
|
+
// Copyright IBM Corp. and LoopBack contributors 2017,2020. All Rights Reserved.
|
|
2
2
|
// Node module: @loopback/build
|
|
3
3
|
// This file is licensed under the MIT License.
|
|
4
4
|
// License text available at https://opensource.org/licenses/MIT
|
package/config/.eslintrc.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Copyright IBM Corp. 2019,2020. All Rights Reserved.
|
|
1
|
+
// Copyright IBM Corp. and LoopBack contributors 2019,2020. All Rights Reserved.
|
|
2
2
|
// Node module: @loopback/build
|
|
3
3
|
// This file is licensed under the MIT License.
|
|
4
4
|
// License text available at https://opensource.org/licenses/MIT
|
package/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Copyright IBM Corp. 2017,2020. All Rights Reserved.
|
|
1
|
+
// Copyright IBM Corp. and LoopBack contributors 2017,2020. All Rights Reserved.
|
|
2
2
|
// Node module: @loopback/build
|
|
3
3
|
// This file is licensed under the MIT License.
|
|
4
4
|
// License text available at https://opensource.org/licenses/MIT
|
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": "9.0.
|
|
4
|
+
"version": "9.0.3",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"bin": {
|
|
7
7
|
"lb-tsc": "./bin/compile-package.js",
|
|
@@ -13,8 +13,8 @@
|
|
|
13
13
|
"lb-clean": "./bin/run-clean.js"
|
|
14
14
|
},
|
|
15
15
|
"main": "index.js",
|
|
16
|
-
"author": "IBM Corp.",
|
|
17
|
-
"copyright.owner": "IBM Corp.",
|
|
16
|
+
"author": "IBM Corp. and LoopBack contributors",
|
|
17
|
+
"copyright.owner": "IBM Corp. and LoopBack contributors",
|
|
18
18
|
"repository": {
|
|
19
19
|
"type": "git",
|
|
20
20
|
"url": "https://github.com/loopbackio/loopback-next.git",
|
|
@@ -31,21 +31,21 @@
|
|
|
31
31
|
"access": "public"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@loopback/eslint-config": "^13.0.
|
|
34
|
+
"@loopback/eslint-config": "^13.0.3",
|
|
35
35
|
"@types/mocha": "^9.1.1",
|
|
36
|
-
"@types/node": "^
|
|
36
|
+
"@types/node": "^14.18.26",
|
|
37
37
|
"cross-spawn": "^7.0.3",
|
|
38
38
|
"debug": "^4.3.4",
|
|
39
|
-
"eslint": "^8.
|
|
39
|
+
"eslint": "^8.22.0",
|
|
40
40
|
"fs-extra": "^10.1.0",
|
|
41
|
-
"glob": "^8.0.
|
|
41
|
+
"glob": "^8.0.3",
|
|
42
42
|
"lodash": "^4.17.21",
|
|
43
43
|
"mocha": "^10.0.0",
|
|
44
44
|
"nyc": "^15.1.0",
|
|
45
|
-
"prettier": "^2.
|
|
45
|
+
"prettier": "^2.7.1",
|
|
46
46
|
"rimraf": "^3.0.2",
|
|
47
47
|
"source-map-support": "^0.5.21",
|
|
48
|
-
"typescript": "~4.
|
|
48
|
+
"typescript": "~4.7.4"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "296d9a9577fd058d1a2b2386087686cefa65a7a9"
|
|
51
51
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Copyright IBM Corp. 2018,2020. All Rights Reserved.
|
|
1
|
+
// Copyright IBM Corp. and LoopBack contributors 2018,2020. All Rights Reserved.
|
|
2
2
|
// Node module: @loopback/build
|
|
3
3
|
// This file is licensed under the MIT License.
|
|
4
4
|
// License text available at https://opensource.org/licenses/MIT
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Copyright IBM Corp. 2017,2020. All Rights Reserved.
|
|
1
|
+
// Copyright IBM Corp. and LoopBack contributors 2017,2020. All Rights Reserved.
|
|
2
2
|
// Node module: @loopback/build
|
|
3
3
|
// This file is licensed under the MIT License.
|
|
4
4
|
// License text available at https://opensource.org/licenses/MIT
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Copyright IBM Corp. 2018,2020. All Rights Reserved.
|
|
1
|
+
// Copyright IBM Corp. and LoopBack contributors 2018,2020. All Rights Reserved.
|
|
2
2
|
// Node module: @loopback/build
|
|
3
3
|
// This file is licensed under the MIT License.
|
|
4
4
|
// License text available at https://opensource.org/licenses/MIT
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Copyright IBM Corp. 2018,2020. All Rights Reserved.
|
|
1
|
+
// Copyright IBM Corp. and LoopBack contributors 2018,2020. All Rights Reserved.
|
|
2
2
|
// Node module: @loopback/build
|
|
3
3
|
// This file is licensed under the MIT License.
|
|
4
4
|
// License text available at https://opensource.org/licenses/MIT
|
package/test/unit/utils.unit.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Copyright IBM Corp. 2019,2020. All Rights Reserved.
|
|
1
|
+
// Copyright IBM Corp. and LoopBack contributors 2019,2020. All Rights Reserved.
|
|
2
2
|
// Node module: @loopback/build
|
|
3
3
|
// This file is licensed under the MIT License.
|
|
4
4
|
// License text available at https://opensource.org/licenses/MIT
|