UNPKG

@aws/cloudfront-hosting-toolkit

Version:

CloudFront Hosting Toolkit offers the convenience of a managed frontend hosting service while retaining full control over the hosting and deployment infrastructure to make it your own.

9 lines (8 loc) 367 B
import { getSSOTokenFilepath } from "@smithy/shared-ini-file-loader"; import { promises as fsPromises } from "fs"; const { writeFile } = fsPromises; export const writeSSOTokenToFile = (id, ssoToken) => { const tokenFilepath = getSSOTokenFilepath(id); const tokenString = JSON.stringify(ssoToken, null, 2); return writeFile(tokenFilepath, tokenString); };