@soleil-se/build-app 2.5.4 → 2.5.5

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 CHANGED
@@ -4,6 +4,11 @@ title: Changelog
4
4
 
5
5
  Baseras på [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) och använder [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## [2.5.5] - 2025-02-12
8
+
9
+ - Byt ut `lodash-es` då den har säkerhetsproblem.
10
+ - Använd `change-case` för att konvertera till camelCase och kebab-case.
11
+
7
12
  ## [2.5.4] - 2025-02-11
8
13
 
9
14
  - Aktivera bara nuvarande version av tillägget en gång när flaggan `--activate` används.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@soleil-se/build-app",
3
3
  "description": "Script for building WebApps, RESTApps and Widgets with Svelte in Sitevision.",
4
- "version": "2.5.4",
4
+ "version": "2.5.5",
5
5
  "bin": {
6
6
  "build-app": "./bin/index.js",
7
7
  "sv-app-build": "./bin/index.js"
@@ -22,46 +22,46 @@
22
22
  },
23
23
  "homepage": "https://docs.soleil.se/build/app",
24
24
  "dependencies": {
25
- "@babel/core": "7.28.4",
26
- "@babel/preset-env": "7.28.3",
27
- "@rollup/plugin-alias": "5.1.1",
28
- "@rollup/plugin-babel": "6.0.4",
29
- "@rollup/plugin-commonjs": "28.0.6",
25
+ "@babel/core": "7.29.0",
26
+ "@babel/preset-env": "7.29.0",
27
+ "@rollup/plugin-alias": "6.0.0",
28
+ "@rollup/plugin-babel": "6.1.0",
29
+ "@rollup/plugin-commonjs": "29.0.0",
30
30
  "@rollup/plugin-json": "6.1.0",
31
- "@rollup/plugin-node-resolve": "16.0.1",
32
- "@rollup/plugin-replace": "6.0.2",
31
+ "@rollup/plugin-node-resolve": "16.0.3",
32
+ "@rollup/plugin-replace": "6.0.3",
33
33
  "@rollup/plugin-terser": "0.4.4",
34
- "@rollup/plugin-typescript": "^12.1.4",
34
+ "@rollup/plugin-typescript": "12.3.0",
35
35
  "archiver": "7.0.1",
36
36
  "chalk": "5.6.2",
37
+ "change-case": "5.4.4",
37
38
  "find-up": "8.0.0",
38
- "form-data": "4.0.4",
39
- "fs-extra": "11.3.2",
40
- "glob": "^11.0.3",
41
- "got": "14.4.9",
39
+ "form-data": "4.0.5",
40
+ "fs-extra": "11.3.3",
41
+ "glob": "13.0.2",
42
+ "got": "14.6.6",
42
43
  "gzip-size": "7.0.0",
43
- "lodash-es": "4.17.21",
44
- "minimist": "^1.2.8",
44
+ "magic-string": "0.30.21",
45
+ "minimist": "1.2.8",
45
46
  "postcss": "8.5.6",
46
- "postcss-preset-env": "^10.3.1",
47
+ "postcss-preset-env": "11.1.3",
47
48
  "postcss-pxtorem": "6.1.0",
48
- "pretty-bytes": "7.0.1",
49
+ "pretty-bytes": "7.1.0",
49
50
  "prompts": "2.4.2",
50
- "rollup": "4.50.2",
51
+ "rollup": "4.57.1",
51
52
  "rollup-plugin-postcss": "4.0.2",
52
53
  "rollup-plugin-string": "3.0.0",
53
54
  "rollup-plugin-svelte": "7.2.3",
54
- "semver": "^7.7.2",
55
+ "semver": "7.7.4",
55
56
  "slash": "5.1.0",
56
- "magic-string": "^0.30.19",
57
57
  "svelte-preprocess": "6.0.3",
58
- "tslib": "^2.8.1",
58
+ "tslib": "2.8.1",
59
59
  "@soleil-se/build-config": "^1.4.0",
60
60
  "@soleil-se/build-utils": "^1.9.0"
61
61
  },
62
62
  "devDependencies": {
63
- "svelte": "^5.39.6",
64
- "typescript": "^5.9.2"
63
+ "svelte": "^5.50.1",
64
+ "typescript": "^5.9.3"
65
65
  },
66
66
  "publishConfig": {
67
67
  "access": "public"
@@ -1,7 +1,7 @@
1
1
  import { dirname } from 'path';
2
2
  import { findUpSync } from 'find-up';
3
3
  import fse from 'fs-extra';
4
- import { kebabCase } from 'lodash-es';
4
+ import { kebabCase } from 'change-case';
5
5
  import { createRequire } from 'module';
6
6
 
7
7
  import preprocessOptions from './common/preprocessOptions.js';
@@ -1,4 +1,4 @@
1
- import { camelCase } from 'lodash-es';
1
+ import { camelCase } from 'change-case';
2
2
 
3
3
  export default function sitevision({ context } = {}) {
4
4
  const ignored = [];
Binary file
Binary file