File tree 3 files changed +10
-6
lines changed
3 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 1
- @import url(../ ../ .. / packages/widgets/Source /widgets.css);
2
- @import url(../ ../ .. / packages/widgets/Source /lighter.css);
1
+ @import url(../ ../ Build/CesiumUnminified/Widgets /widgets.css);
2
+ @import url(../ ../ Build/CesiumUnminified/Widgets /lighter.css);
3
3
4
4
html {
5
5
height : 100% ;
Original file line number Diff line number Diff line change @@ -778,6 +778,7 @@ export async function copyWidgetsAssets(destination) {
778
778
const widgetsStaticAssets = [
779
779
"packages/widgets/Source/**" ,
780
780
"!packages/widgets/Source/**/*.js" ,
781
+ "!packages/widgets/Source/**/*.css" ,
781
782
"!packages/widgets/Source/**/*.glsl" ,
782
783
"!packages/widgets/Source/**/*.md" ,
783
784
] ;
Original file line number Diff line number Diff line change @@ -2133,20 +2133,23 @@ async function buildCesiumViewer() {
2133
2133
handleBuildWarnings ( result ) ;
2134
2134
2135
2135
await esbuild ( {
2136
- entryPoints : [ "Source/Widgets /InfoBox/InfoBoxDescription.css" ] ,
2136
+ entryPoints : [ "packages/widgets/Source /InfoBox/InfoBoxDescription.css" ] ,
2137
2137
minify : true ,
2138
2138
bundle : true ,
2139
2139
loader : {
2140
2140
".gif" : "text" ,
2141
2141
".png" : "text" ,
2142
2142
} ,
2143
2143
outdir : cesiumViewerOutputDirectory ,
2144
- outbase : "Source" ,
2144
+ outbase : "packages/widgets/ Source/ " ,
2145
2145
} ) ;
2146
2146
2147
2147
await buildWorkers ( {
2148
- minify : true ,
2149
- removePragmas : true ,
2148
+ input : [
2149
+ "packages/engine/Source/Workers/**" ,
2150
+ "packages/engine/Source/ThirdParty/Workers/**" ,
2151
+ ] ,
2152
+ inputES6 : [ "packages/engine/Source/WorkersES6/*.js" ] ,
2150
2153
path : cesiumViewerOutputDirectory ,
2151
2154
} ) ;
2152
2155
You can’t perform that action at this time.
0 commit comments