@newlogic-digital/core 4.1.3 → 4.1.4

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 (3) hide show
  1. package/index.js +8 -5
  2. package/package.json +4 -4
  3. package/src/+.css +1 -0
package/index.js CHANGED
@@ -43,7 +43,7 @@ const defaultOptions = {
43
43
  mode: null,
44
44
  cert: 'localhost',
45
45
  format: ['latte'],
46
- codeSplitting: {},
46
+ codeSplitting: undefined,
47
47
  input: {
48
48
  assets: [
49
49
  './src/styles/*.{css,pcss,scss,sass,less,styl,stylus}',
@@ -271,15 +271,18 @@ const plugin = async (options = {}) => {
271
271
  groups: [
272
272
  {
273
273
  name: 'swup',
274
- test: /swup/,
274
+ test: /node_modules[\\/]swup(?:[\\/]|$)/,
275
+ priority: 30,
275
276
  },
276
277
  {
277
- name: '@hotwired/stimulus',
278
- test: /@hotwired\/stimulus/,
278
+ name: 'hotwired-stimulus',
279
+ test: /node_modules[\\/]@hotwired[\\/]stimulus(?:[\\/]|$)/,
280
+ priority: 30,
279
281
  },
280
282
  {
281
283
  name: 'naja',
282
- test: /naja/,
284
+ test: /node_modules[\\/]naja(?:[\\/]|$)/,
285
+ priority: 30,
283
286
  },
284
287
  ],
285
288
  },
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@newlogic-digital/core",
3
3
  "type": "module",
4
- "version": "4.1.3",
4
+ "version": "4.1.4",
5
5
  "main": "index.js",
6
6
  "bin": {
7
7
  "newlogic-core": "./bin/newlogic-core.js"
@@ -28,7 +28,7 @@
28
28
  "browserslist-to-esbuild": "^2.1.1",
29
29
  "lightningcss": "^1.32.0",
30
30
  "npm-check-updates": "^22.2.0",
31
- "oxlint": "^1.65.0",
31
+ "oxlint": "^1.66.0",
32
32
  "postcss-custom-properties": "^15.0.1",
33
33
  "stylelint-config-standard": "^40.0.0",
34
34
  "vituum": "^2.0.2"
@@ -48,9 +48,9 @@
48
48
  },
49
49
  "devDependencies": {
50
50
  "@tailwindcss/vite": "^4.3.0",
51
- "@types/node": "^25.8",
51
+ "@types/node": "^25.9",
52
52
  "@vituum/vite-plugin-twig": "^2.0.1",
53
- "rolldown": "^1.0.1",
53
+ "rolldown": "^1.0.2",
54
54
  "typescript": "^6"
55
55
  },
56
56
  "files": [
package/src/+.css ADDED
@@ -0,0 +1 @@
1
+ @import "./styles/main.css";