Skip to content

Commit 32bd424

Browse files
authored
refactor(packages): delivering CHANGELOG.md file as well (#5100)
1 parent 784a91f commit 32bd424

File tree

8 files changed

+14
-6
lines changed

8 files changed

+14
-6
lines changed

.npmignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ build/**/CONTRIBUTION.md
77
build/android/**/favicon.ico
88
build/android/**/robots.txt
99
build/android/**/site.webmanifest
10+
!CHANGELOG.md

output/react/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
"module": "./dist/index.js",
1212
"types": "./dist/index.d.ts",
1313
"files": [
14-
"dist/"
14+
"dist/",
15+
"CHANGELOG.md"
1516
],
1617
"scripts": {
1718
"build": "npm-run-all tsc",

output/stencil/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
}
1818
},
1919
"files": [
20-
"dist/"
20+
"dist/",
21+
"CHANGELOG.md"
2122
],
2223
"scripts": {
2324
"build": "stencil build",

output/vue/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
}
2424
},
2525
"files": [
26-
"dist/"
26+
"dist/",
27+
"CHANGELOG.md"
2728
],
2829
"scripts": {
2930
"build": "npm-run-all build:*",

packages/components/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
"author": "General technical components out of DB UX Design System (Version 3)",
1111
"license": "Apache-2.0",
1212
"files": [
13+
"CHANGELOG.md",
1314
"build"
1415
],
1516
"scripts": {

packages/foundations/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
"types": "./build/index.d.ts",
1313
"module": "./build/index.js",
1414
"files": [
15+
"CHANGELOG.md",
1516
"assets",
1617
"build"
1718
],

packages/migration/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
},
1414
"main": "build/index.js",
1515
"files": [
16+
"CHANGELOG.md",
1617
"build"
1718
],
1819
"scripts": {

packages/stylelint/package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
}
1616
},
1717
"files": [
18+
"CHANGELOG.md",
1819
"build"
1920
],
2021
"keywords": [
@@ -29,6 +30,9 @@
2930
"copy:readme": "cpr README.md ../../build-outputs/stylelint/README.md -o",
3031
"test": "vitest run --config vitest.config.ts"
3132
},
33+
"peerDependencies": {
34+
"stylelint": "^14.0.0 || ^15.0.0 || ^16.0.0"
35+
},
3236
"devDependencies": {
3337
"postcss": "8.5.6",
3438
"postcss-html": "1.8.0",
@@ -38,9 +42,6 @@
3842
"typescript": "5.8.3",
3943
"vitest": "3.2.4"
4044
},
41-
"peerDependencies": {
42-
"stylelint": "^14.0.0 || ^15.0.0 || ^16.0.0"
43-
},
4445
"publishConfig": {
4546
"registry": "https://registry.npmjs.org/",
4647
"access": "public"

0 commit comments

Comments
 (0)