File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
packages/@apphosting/adapter-angular/src Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 44 checkBuildConditions ,
55 validateOutputDirectory ,
66 parseOutputBundleOptions ,
7- outputBundleExists
7+ outputBundleExists ,
88} from "../utils.js" ;
99import { getBuildOptions , runBuild } from "@apphosting/common" ;
1010
@@ -23,9 +23,9 @@ if (!output) {
2323 throw new Error ( "No output from Angular build command, expecting a build manifest file." ) ;
2424}
2525const outputBundleOptions = parseOutputBundleOptions ( output ) ;
26- if ( ! outputBundleExists ( outputBundleOptions ) ) {
26+ if ( ! outputBundleExists ( outputBundleOptions ) ) {
2727 const root = process . cwd ( ) ;
2828 await generateBuildOutput ( root , outputBundleOptions , process . env . FRAMEWORK_VERSION ) ;
29-
29+
3030 await validateOutputDirectory ( outputBundleOptions ) ;
3131}
Original file line number Diff line number Diff line change @@ -227,9 +227,9 @@ export const isMain = (meta: ImportMeta) => {
227227 return process . argv [ 1 ] === fileURLToPath ( meta . url ) ;
228228} ;
229229
230- export const outputBundleExists = ( outputBundleOptions : OutputBundleOptions ) => {
231- if ( existsSync ( dirname ( outputBundleOptions . bundleYamlPath ) ) ) {
230+ export const outputBundleExists = ( outputBundleOptions : OutputBundleOptions ) => {
231+ if ( existsSync ( dirname ( outputBundleOptions . bundleYamlPath ) ) ) {
232232 return true ;
233233 }
234234 return false ;
235- }
235+ } ;
You can’t perform that action at this time.
0 commit comments