@newlogic-digital/core 4.0.0-next.10 → 4.0.0-next.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.
Files changed (2) hide show
  1. package/index.js +2 -2
  2. package/package.json +3 -3
package/index.js CHANGED
@@ -5,7 +5,7 @@ import vituum from 'vituum'
5
5
  import latte from '@vituum/vite-plugin-latte'
6
6
  import juice from '@vituum/vite-plugin-juice'
7
7
  import send from '@vituum/vite-plugin-send'
8
- import { getPackageInfo, merge } from 'vituum/utils/common.js'
8
+ import { getPackageInfo, deepMergeWith } from 'vituum/utils/common.js'
9
9
  import browserslistToEsbuild from 'browserslist-to-esbuild'
10
10
  import browserslist from 'browserslist'
11
11
  import { Features as LightningCssFeatures, browserslistToTargets } from 'lightningcss'
@@ -79,7 +79,7 @@ const defaultOptions = {
79
79
  * @returns [import('vite').Plugin]
80
80
  */
81
81
  const plugin = async (options = {}) => {
82
- options = merge(defaultOptions, options)
82
+ options = deepMergeWith(defaultOptions, options)
83
83
 
84
84
  const templatesPlugins = []
85
85
  const tailwindcssPlugin = []
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@newlogic-digital/core",
3
3
  "type": "module",
4
- "version": "4.0.0-next.10",
4
+ "version": "4.0.0-next.11",
5
5
  "main": "index.js",
6
6
  "author": "New Logic Studio s.r.o.",
7
7
  "description": "Set of tools that can be used to create modern web applications",
@@ -14,12 +14,12 @@
14
14
  "dependencies": {
15
15
  "@minify-html/node": "^0.18.1",
16
16
  "@vituum/vite-plugin-juice": "^2.0.0-next.2",
17
- "@vituum/vite-plugin-latte": "^2.0.0-next.3",
17
+ "@vituum/vite-plugin-latte": "^2.0.0-next.4",
18
18
  "@vituum/vite-plugin-send": "^2.0.0-next.3",
19
19
  "browserslist": "^4.28.1",
20
20
  "browserslist-to-esbuild": "^2.1.1",
21
21
  "lightningcss": "^1.30.2",
22
- "vituum": "^2.0.0-next.6"
22
+ "vituum": "^2.0.0-next.7"
23
23
  },
24
24
  "devDependencies": {
25
25
  "@eslint/js": "^9.39",