@loopback/example-lb3-application 8.0.2 → 8.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 +8 -0
- package/README.md +0 -3
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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.3](https://github.com/loopbackio/loopback-next/compare/@loopback/example-lb3-application@8.0.2...@loopback/example-lb3-application@8.0.3) (2025-07-15)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @loopback/example-lb3-application
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [8.0.2](https://github.com/loopbackio/loopback-next/compare/@loopback/example-lb3-application@8.0.1...@loopback/example-lb3-application@8.0.2) (2025-06-12)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @loopback/example-lb3-application
|
package/README.md
CHANGED
|
@@ -55,7 +55,6 @@ applications can use them.
|
|
|
55
55
|
dependencies.
|
|
56
56
|
|
|
57
57
|
4. Disable error handling in your LB3 app, leave it for the new LB4 app.
|
|
58
|
-
|
|
59
58
|
- Remove `lb3app/server/middleware.development.json`
|
|
60
59
|
- Edit `lb3app/server/middleware.json` and remove the following two entries:
|
|
61
60
|
- `final` >> `loopback#urlNotFound`
|
|
@@ -67,7 +66,6 @@ applications can use them.
|
|
|
67
66
|
5. Move your front-end files from `lb3app/client` to `public/` directory and
|
|
68
67
|
disable static assets in your LB3 app by removing the following entry in
|
|
69
68
|
`lb3app/server/middleware.json`:
|
|
70
|
-
|
|
71
69
|
- `files` >> `loopback#static`
|
|
72
70
|
|
|
73
71
|
Also remove `lb3app/server/boot/root.js`, since the main page will be served
|
|
@@ -78,7 +76,6 @@ applications can use them.
|
|
|
78
76
|
|
|
79
77
|
7. Install and configure `@loopback/booter-lb3app` to boot and mount the LB3
|
|
80
78
|
application:
|
|
81
|
-
|
|
82
79
|
1. `npm install --save @loopback/booter-lb3app`
|
|
83
80
|
|
|
84
81
|
2. Import the component at the top of your `src/application.ts` file.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loopback/example-lb3-application",
|
|
3
3
|
"description": "Tutorial example on how to add existing an LB3 application to a LB4 project",
|
|
4
|
-
"version": "8.0.
|
|
4
|
+
"version": "8.0.3",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"loopback",
|
|
7
7
|
"LoopBack",
|
|
@@ -47,12 +47,12 @@
|
|
|
47
47
|
"access": "public"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@loopback/boot": "^8.0.
|
|
51
|
-
"@loopback/booter-lb3app": "^7.0.
|
|
52
|
-
"@loopback/core": "^7.0.
|
|
53
|
-
"@loopback/repository": "^8.0.
|
|
54
|
-
"@loopback/rest": "^15.0.
|
|
55
|
-
"@loopback/rest-explorer": "^8.0.
|
|
50
|
+
"@loopback/boot": "^8.0.3",
|
|
51
|
+
"@loopback/booter-lb3app": "^7.0.3",
|
|
52
|
+
"@loopback/core": "^7.0.2",
|
|
53
|
+
"@loopback/repository": "^8.0.2",
|
|
54
|
+
"@loopback/rest": "^15.0.3",
|
|
55
|
+
"@loopback/rest-explorer": "^8.0.3",
|
|
56
56
|
"compression": "^1.8.0",
|
|
57
57
|
"cors": "^2.8.5",
|
|
58
58
|
"debug": "^4.4.1",
|
|
@@ -63,15 +63,15 @@
|
|
|
63
63
|
"tslib": "^2.8.1"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
|
-
"@loopback/build": "^12.0.
|
|
66
|
+
"@loopback/build": "^12.0.2",
|
|
67
67
|
"@loopback/eslint-config": "^16.0.0",
|
|
68
|
-
"@loopback/testlab": "^8.0.
|
|
69
|
-
"@types/lodash": "^4.17.
|
|
68
|
+
"@loopback/testlab": "^8.0.2",
|
|
69
|
+
"@types/lodash": "^4.17.20",
|
|
70
70
|
"@types/node": "^16.18.126",
|
|
71
71
|
"eslint": "^8.57.1",
|
|
72
72
|
"lodash": "^4.17.21",
|
|
73
73
|
"should": "^13.2.3",
|
|
74
74
|
"typescript": "~5.2.2"
|
|
75
75
|
},
|
|
76
|
-
"gitHead": "
|
|
76
|
+
"gitHead": "c2a3c1ada086e3abd6ea195ec8f70ce5a63c924c"
|
|
77
77
|
}
|