@lmvz-ds/styles 0.17.0 → 0.17.3
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 +19 -0
- package/package.json +12 -24
- /package/{readme.md → README.md} +0 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# @lmvz-ds/styles
|
|
2
|
+
|
|
3
|
+
## 0.17.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 08a42c2: Add CHANGELOG to published package
|
|
8
|
+
|
|
9
|
+
## 0.17.2
|
|
10
|
+
|
|
11
|
+
## 0.17.1
|
|
12
|
+
|
|
13
|
+
## 0.17.0
|
|
14
|
+
|
|
15
|
+
### Minor Changes
|
|
16
|
+
|
|
17
|
+
- 50bcf59: Neu: Layout Style Bundle (mitsamt Storybook)
|
|
18
|
+
|
|
19
|
+
## 0.16.0
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lmvz-ds/styles",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.17.
|
|
4
|
+
"version": "0.17.3",
|
|
5
5
|
"description": "The styles of the design system",
|
|
6
6
|
"author": "Patrick Nemenz <patrick.nemenz@adesso.at>",
|
|
7
7
|
"volta": {
|
|
@@ -12,7 +12,10 @@
|
|
|
12
12
|
},
|
|
13
13
|
"files": [
|
|
14
14
|
"dist/",
|
|
15
|
-
"assets/"
|
|
15
|
+
"assets/",
|
|
16
|
+
"package.json",
|
|
17
|
+
"CHANGELOG.md",
|
|
18
|
+
"README.md"
|
|
16
19
|
],
|
|
17
20
|
"exports": {
|
|
18
21
|
"./*": "./dist/*",
|
|
@@ -24,36 +27,21 @@
|
|
|
24
27
|
"type": "git",
|
|
25
28
|
"url": "https://bitbucket.org/lmvz/lmvz-ds"
|
|
26
29
|
},
|
|
27
|
-
"nx": {
|
|
28
|
-
"targets": {
|
|
29
|
-
"lint": {
|
|
30
|
-
"dependsOn": [
|
|
31
|
-
"^build"
|
|
32
|
-
]
|
|
33
|
-
},
|
|
34
|
-
"build": {
|
|
35
|
-
"cache": true,
|
|
36
|
-
"dependsOn": [
|
|
37
|
-
"^build"
|
|
38
|
-
],
|
|
39
|
-
"outputs": [
|
|
40
|
-
"{projectRoot}/dist"
|
|
41
|
-
]
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
},
|
|
45
30
|
"devDependencies": {
|
|
46
31
|
"rolldown": "1.0.0-rc.12",
|
|
47
|
-
"
|
|
32
|
+
"rimraf": "^6.1.3",
|
|
33
|
+
"stylelint": "^16.26.1",
|
|
48
34
|
"stylelint-config-standard": "^38.0.0",
|
|
49
35
|
"stylelint-value-no-unknown-custom-properties": "6.1.1",
|
|
50
|
-
"vite": "^8.0.
|
|
51
|
-
"@lmvz-ds/design-tokens": "~0.17.
|
|
36
|
+
"vite": "^8.0.9",
|
|
37
|
+
"@lmvz-ds/design-tokens": "~0.17.3",
|
|
52
38
|
"@lmvz-ds/lib-styles": "~0.16.0"
|
|
53
39
|
},
|
|
54
40
|
"gitHead": "aaec2215b0239d6fa4a5876af444e0b7abba2c7d",
|
|
55
41
|
"scripts": {
|
|
56
42
|
"build": "vite build --config vite.config.ts && cp ./src/no-transform/*.css ./dist/",
|
|
57
|
-
"lint": "stylelint \"src/**/*.css\" --config ./stylelint.config.mjs"
|
|
43
|
+
"lint": "stylelint \"src/**/*.css\" --config ./stylelint.config.mjs",
|
|
44
|
+
"clean": "rimraf dist",
|
|
45
|
+
"uncache": "rimraf .turbo"
|
|
58
46
|
}
|
|
59
47
|
}
|
/package/{readme.md → README.md}
RENAMED
|
File without changes
|