@loopback/build 11.0.1 → 11.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 +19 -0
- package/bin/compile-package.js +1 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
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
|
+
## [11.0.3](https://github.com/loopbackio/loopback-next/compare/@loopback/build@11.0.2...@loopback/build@11.0.3) (2024-06-10)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @loopback/build
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [11.0.2](https://github.com/loopbackio/loopback-next/compare/@loopback/build@11.0.1...@loopback/build@11.0.2) (2024-05-17)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **build:** correctly join file paths on windows when copying resources ([71d5657](https://github.com/loopbackio/loopback-next/commit/71d5657b811ba799e2c6e70b384aecae35d3385f))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
## [11.0.1](https://github.com/loopbackio/loopback-next/compare/@loopback/build@11.0.0...@loopback/build@11.0.1) (2024-04-09)
|
|
7
26
|
|
|
8
27
|
**Note:** Version bump only for package @loopback/build
|
package/bin/compile-package.js
CHANGED
|
@@ -271,7 +271,7 @@ function copyResources(rootDir, packageDir, tsConfigFile, outDir, options) {
|
|
|
271
271
|
* Trim path that matches tsConfig.compilerOptions.rootDir
|
|
272
272
|
*/
|
|
273
273
|
let targetFile = file;
|
|
274
|
-
if (compilerRootDir && file.startsWith(compilerRootDir + '/')) {
|
|
274
|
+
if (compilerRootDir && file.startsWith(path.join(compilerRootDir + '/'))) {
|
|
275
275
|
targetFile = file.substring(compilerRootDir.length + 1);
|
|
276
276
|
}
|
|
277
277
|
|
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": "11.0.
|
|
4
|
+
"version": "11.0.3",
|
|
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": "18 || 20"
|
|
24
|
+
"node": "18 || 20 || 22"
|
|
25
25
|
},
|
|
26
26
|
"scripts": {
|
|
27
27
|
"test": "npm run mocha",
|
|
@@ -31,21 +31,21 @@
|
|
|
31
31
|
"access": "public"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@loopback/eslint-config": "^15.0.
|
|
34
|
+
"@loopback/eslint-config": "^15.0.3",
|
|
35
35
|
"@types/mocha": "^10.0.6",
|
|
36
|
-
"@types/node": "^16.18.
|
|
36
|
+
"@types/node": "^16.18.98",
|
|
37
37
|
"cross-spawn": "^7.0.3",
|
|
38
|
-
"debug": "^4.3.
|
|
38
|
+
"debug": "^4.3.5",
|
|
39
39
|
"eslint": "^8.57.0",
|
|
40
40
|
"fs-extra": "^11.2.0",
|
|
41
|
-
"glob": "^10.
|
|
41
|
+
"glob": "^10.4.1",
|
|
42
42
|
"lodash": "^4.17.21",
|
|
43
43
|
"mocha": "^10.4.0",
|
|
44
44
|
"nyc": "^15.1.0",
|
|
45
45
|
"prettier": "^3.2.5",
|
|
46
|
-
"rimraf": "^5.0.
|
|
46
|
+
"rimraf": "^5.0.7",
|
|
47
47
|
"source-map-support": "^0.5.21",
|
|
48
48
|
"typescript": "~5.2.2"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "b0e4a869679b8bb4ca2c48c233348d582dd4752a"
|
|
51
51
|
}
|