@lensjs/adonis 1.0.10 → 1.0.11

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.
@@ -98,8 +98,8 @@ export default class AdonisAdapter extends LensAdapter {
98
98
  }
99
99
  serveUI(uiPath, spaRoute, _dataToInject) {
100
100
  this.app.booted(async () => {
101
- this.router.get(`/${spaRoute}/favicon.svg`, (ctx) => {
102
- return ctx.response.download(path.join(uiPath, 'favicon.svg'));
101
+ this.router.get(`/${spaRoute}/favicon.ico`, (ctx) => {
102
+ return ctx.response.download(path.join(uiPath, 'favicon.ico'));
103
103
  });
104
104
  this.router.get(`/${spaRoute}`, (ctx) => {
105
105
  return ctx.response.redirect(`/${spaRoute}/requests`);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@lensjs/adonis",
3
3
  "description": "AdonisJs adapter for lens package",
4
- "version": "1.0.10",
4
+ "version": "1.0.11",
5
5
  "engines": {
6
6
  "node": ">=20.6.0"
7
7
  },
@@ -47,8 +47,8 @@
47
47
  "dependencies": {
48
48
  "@poppinss/utils": "^6.10.1",
49
49
  "chalk": "^5.6.0",
50
- "@lensjs/core": "1.0.10",
51
- "@lensjs/date": "1.0.10"
50
+ "@lensjs/core": "1.0.11",
51
+ "@lensjs/date": "1.0.11"
52
52
  },
53
53
  "publishConfig": {
54
54
  "access": "public",