File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change
1
+ - Addressed an issue preventing Astro applications from being deployed from Windows. (#5709 )
1
2
- Fixed an issue preventing Angular apps using ng-deploy from being emulated or deployed. (#6584 )
2
3
- Warn if a Web Framework is outside a well known version range on deploy/emulate. (#6562 )
3
4
- Use Web Framework's well known version range in ` firebase init hosting ` . (#6562 )
Original file line number Diff line number Diff line change 1
1
import { dirname , join , relative } from "path" ;
2
2
import { findDependency } from "../utils" ;
3
3
import { gte } from "semver" ;
4
+ import { fileURLToPath } from "url" ;
4
5
5
6
const { dynamicImport } = require ( true && "../../dynamicImport" ) ;
6
7
@@ -29,8 +30,8 @@ export async function getConfig(cwd: string) {
29
30
config = astroConfig ;
30
31
}
31
32
return {
32
- outDir : relative ( cwd , config . outDir . pathname ) ,
33
- publicDir : relative ( cwd , config . publicDir . pathname ) ,
33
+ outDir : relative ( cwd , fileURLToPath ( config . outDir ) ) ,
34
+ publicDir : relative ( cwd , fileURLToPath ( config . publicDir ) ) ,
34
35
output : config . output ,
35
36
adapter : config . adapter ,
36
37
} ;
You can’t perform that action at this time.
0 commit comments