feat: cname emitter (#590)
* feat: cname emitter * feat: impl cname.ts * Update cname.ts * Update index.ts * Update cname.ts * Update cname.ts * Update cname.ts * Update cname.ts
This commit is contained in:
		
							parent
							
								
									95b1141b9d
								
							
						
					
					
						commit
						50f0ba29a2
					
				
					 2 changed files with 30 additions and 0 deletions
				
			
		
							
								
								
									
										29
									
								
								quartz/plugins/emitters/cname.ts
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										29
									
								
								quartz/plugins/emitters/cname.ts
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,29 @@
 | 
			
		|||
import { FilePath, joinSegments } from "../../util/path"
 | 
			
		||||
import { QuartzEmitterPlugin } from "../types"
 | 
			
		||||
import fs from "fs"
 | 
			
		||||
import chalk from "chalk"
 | 
			
		||||
 | 
			
		||||
export function extractDomainFromBaseUrl(baseUrl: string) {
 | 
			
		||||
  const url = new URL(`https://${baseUrl}`)
 | 
			
		||||
  return url.hostname
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
export const CNAME: QuartzEmitterPlugin = () => ({
 | 
			
		||||
  name: "CNAME",
 | 
			
		||||
  getQuartzComponents() {
 | 
			
		||||
    return []
 | 
			
		||||
  },
 | 
			
		||||
  async emit({ argv, cfg }, _content, _resources, _emit): Promise<FilePath[]> {
 | 
			
		||||
    if (!cfg.configuration.baseUrl) {
 | 
			
		||||
      console.warn(chalk.yellow("CNAME emitter requires `baseUrl` to be set in your configuration"))
 | 
			
		||||
      return []
 | 
			
		||||
    }
 | 
			
		||||
    const path = joinSegments(argv.output, "CNAME")
 | 
			
		||||
    const content = extractDomainFromBaseUrl(cfg.configuration.baseUrl)
 | 
			
		||||
    if (!content) {
 | 
			
		||||
      return []
 | 
			
		||||
    }
 | 
			
		||||
    fs.writeFileSync(path, content)
 | 
			
		||||
    return [path] as FilePath[]
 | 
			
		||||
  },
 | 
			
		||||
})
 | 
			
		||||
| 
						 | 
				
			
			@ -7,3 +7,4 @@ export { Assets } from "./assets"
 | 
			
		|||
export { Static } from "./static"
 | 
			
		||||
export { ComponentResources } from "./componentResources"
 | 
			
		||||
export { NotFoundPage } from "./404"
 | 
			
		||||
export { CNAME } from "./cname"
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue