Skip to content

Commit 2fa081b

Browse files
authored
fix: issue with classname dependency for react and angular (#926)
1 parent 80025f9 commit 2fa081b

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

output/angular/ng-package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,9 @@
44
"lib": {
55
"entryFile": "src/index.ts"
66
},
7-
"allowedNonPeerDependencies": ["@db-ui/foundations", "@db-ui/components"]
7+
"allowedNonPeerDependencies": [
8+
"@db-ui/foundations",
9+
"@db-ui/components",
10+
"classnames"
11+
]
812
}

output/angular/package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@
1515
"ng": "ng",
1616
"start": "ng serve"
1717
},
18-
"dependencies": {},
18+
"dependencies": {
19+
"classnames": "^2.3.2"
20+
},
1921
"devDependencies": {
2022
"@angular-devkit/build-angular": "14.2.10",
2123
"@angular/common": "14.3.0",

output/react/package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@
2424
"test:components": "playwright test -c playwright.config.ts",
2525
"tsc": "tsc -p . --sourceMap false"
2626
},
27+
"dependencies": {
28+
"classnames": "^2.3.2"
29+
},
2730
"devDependencies": {
2831
"@axe-core/playwright": "^4.6.1",
2932
"@playwright/experimental-ct-react": "1.32.3",

0 commit comments

Comments
 (0)