@ihk-gfi/lux-components-theme 16.1.0 → 16.3.0

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,15 +1,20 @@
1
1
  {
2
2
  "name": "@ihk-gfi/lux-components-theme",
3
- "version": "16.1.0",
3
+ "version": "16.3.0",
4
4
  "description": "",
5
5
  "private": false,
6
6
  "scripts": {
7
7
  "build": "npm run clean && npm run build-theme-green && npm run build-theme-authentic",
8
8
  "clean": "del-cli --force ./prebuilt-themes/*.*",
9
+ "clean-authentic": "del-cli --force ./prebuilt-themes/*authentic*.*",
10
+ "clean-green": "del-cli --force ./prebuilt-themes/*green*.*",
9
11
  "build-theme-authentic": "sass --style=compressed --load-path=node_modules src/authentic/luxtheme.scss:prebuilt-themes/luxtheme-authentic-min.css && sass --load-path=node_modules src/authentic/luxtheme.scss:prebuilt-themes/luxtheme-authentic.css",
10
12
  "build-theme-green": "sass --style=compressed --load-path=node_modules src/green/luxtheme.scss:prebuilt-themes/luxtheme-green-min.css && sass --load-path=node_modules src/green/luxtheme.scss:prebuilt-themes/luxtheme-green.css",
11
13
  "smoketest": "npm run build",
12
- "husky-init": "husky install"
14
+ "husky-init": "husky install",
15
+ "watch": "npm-watch",
16
+ "watch-authentic": "npm run clean-authentic && sass --load-path=node_modules src/authentic/luxtheme.scss:prebuilt-themes/luxtheme-authentic-min.css",
17
+ "watch-green": "npm run clean-green && sass --load-path=node_modules src/green/luxtheme.scss:prebuilt-themes/luxtheme-green-min.css"
13
18
  },
14
19
  "author": "Thomas Dickhut",
15
20
  "license": "IHK-GfI Open-Source-Lizenz",
@@ -17,13 +22,34 @@
17
22
  "@angular/material": "16.2.14",
18
23
  "del-cli": "5.1.0",
19
24
  "husky": "9.0.11",
25
+ "npm-watch": "^0.13.0",
20
26
  "prettier": "3.2.5",
21
27
  "pretty-quick": "4.0.0",
22
28
  "sass": "1.71.1"
23
29
  },
24
- "peerDependencies": {},
25
30
  "files": [
26
31
  "prebuilt-themes/**",
27
32
  "src/**"
28
- ]
33
+ ],
34
+ "watch": {
35
+ "watch-authentic": {
36
+ "patterns": [
37
+ "src/authentic"
38
+ ],
39
+ "extensions": "scss"
40
+ },
41
+ "watch-green": {
42
+ "patterns": [
43
+ "src/green"
44
+ ],
45
+ "extensions": "scss"
46
+ },
47
+ "build": {
48
+ "patterns": [
49
+ "src/base",
50
+ "src/public"
51
+ ],
52
+ "extensions": "scss"
53
+ }
54
+ }
29
55
  }