@openremote/or-mwc-components 1.6.0-snapshot.20250512145140 → 1.6.0-snapshot.20250513081115
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/build.gradle +6 -2
- package/custom-elements.json +3193 -0
- package/package.json +7 -5
- package/tsconfig.tsbuildinfo +1 -1
package/build.gradle
CHANGED
|
@@ -6,10 +6,14 @@ task clean() {
|
|
|
6
6
|
}
|
|
7
7
|
}
|
|
8
8
|
|
|
9
|
+
task installDist() {
|
|
10
|
+
dependsOn npmAnalyze
|
|
11
|
+
}
|
|
12
|
+
|
|
9
13
|
task prepareUi() {
|
|
10
|
-
dependsOn clean, npmPrepare
|
|
14
|
+
dependsOn clean, npmAnalyze, npmPrepare
|
|
11
15
|
}
|
|
12
16
|
|
|
13
17
|
task publishUi() {
|
|
14
18
|
dependsOn clean, npmPublish
|
|
15
|
-
}
|
|
19
|
+
}
|