@ditojs/server 2.33.1 → 2.34.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ditojs/server",
3
- "version": "2.33.1",
3
+ "version": "2.34.1",
4
4
  "type": "module",
5
5
  "description": "Dito.js Server – Dito.js is a declarative and modern web framework, based on Objection.js, Koa.js and Vue.js",
6
6
  "repository": "https://github.com/ditojs/dito/tree/master/packages/server",
@@ -25,15 +25,15 @@
25
25
  "node >= 18"
26
26
  ],
27
27
  "dependencies": {
28
- "@ditojs/admin": "^2.33.1",
29
- "@ditojs/build": "^2.33.0",
30
- "@ditojs/router": "^2.33.0",
31
- "@ditojs/utils": "^2.33.0",
28
+ "@ditojs/admin": "^2.34.1",
29
+ "@ditojs/build": "^2.34.0",
30
+ "@ditojs/router": "^2.34.0",
31
+ "@ditojs/utils": "^2.34.0",
32
32
  "@koa/cors": "^5.0.0",
33
33
  "@koa/multer": "^3.0.2",
34
34
  "@originjs/vite-plugin-commonjs": "^1.0.3",
35
35
  "@vitejs/plugin-vue": "^5.1.4",
36
- "@vue/compiler-sfc": "^3.5.6",
36
+ "@vue/compiler-sfc": "^3.5.8",
37
37
  "ajv": "^8.17.1",
38
38
  "ajv-formats": "^2.1.1",
39
39
  "bcryptjs": "^2.4.3",
@@ -69,8 +69,8 @@
69
69
  "repl": "^0.1.3",
70
70
  "type-fest": "^4.26.1",
71
71
  "uuid": "^10.0.0",
72
- "vite": "^5.4.6",
73
- "vue": "^3.5.6"
72
+ "vite": "^5.4.8",
73
+ "vue": "^3.5.8"
74
74
  },
75
75
  "peerDependencies": {
76
76
  "@aws-sdk/client-s3": "^3.0.0",
@@ -87,11 +87,11 @@
87
87
  "@types/koa-session": "^6.4.5",
88
88
  "@types/koa-static": "^4.0.4",
89
89
  "@types/koa__cors": "^5.0.0",
90
- "@types/node": "^22.5.5",
90
+ "@types/node": "^22.7.0",
91
91
  "knex": "^3.1.0",
92
- "objection": "^3.1.4",
92
+ "objection": "^3.1.5",
93
93
  "typescript": "^5.6.2"
94
94
  },
95
95
  "types": "types",
96
- "gitHead": "1a73730c672ab5d1157cf8e91767a6f8640e1487"
96
+ "gitHead": "688b040a84c3eb8261cbd07f99b47d864fd462bc"
97
97
  }
@@ -226,7 +226,14 @@ export class AdminController extends Controller {
226
226
  },
227
227
  css: {
228
228
  postcss: getPostCssConfig(),
229
- devSourcemap: development
229
+ devSourcemap: development,
230
+ preprocessorOptions: {
231
+ scss: {
232
+ // https://sass-lang.com/documentation/breaking-changes/legacy-js-api/
233
+ // TODO: Remove once vite has been updated to new API:
234
+ silenceDeprecations: ['legacy-js-api']
235
+ }
236
+ }
230
237
  },
231
238
  optimizeDeps: {
232
239
  exclude: development ? ditoPackages : [],