Skip to content

Commit a2290c6

Browse files
committed
Copy icon types
1 parent 806b047 commit a2290c6

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

npm-package/build.gradle

+11-1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,15 @@ task copyRootProjectTypes(type: Copy) {
3030
into 'lib/rootProject'
3131
}
3232

33+
task copyIconTypes(type: Copy) {
34+
dependsOn ':extension:buildProd'
35+
group 'copy'
36+
description 'Copies stores types'
37+
from file("../extension/dist/icons")
38+
include "*.d.ts"
39+
into 'lib/icons'
40+
}
41+
3342
task copyStoreTypes(type: Copy) {
3443
dependsOn ':extension:buildProd'
3544
group 'copy'
@@ -142,7 +151,8 @@ task copyPublicApi(type: Copy) {
142151
copyServerTypes,
143152
copyLoggerTypes,
144153
copyRootProjectTypes,
145-
copyApiTypes
154+
copyApiTypes,
155+
copyIconTypes
146156
group 'copy'
147157
description 'Copies publc API types'
148158
from file("../extension/dist")

0 commit comments

Comments
 (0)