Skip to content
This repository was archived by the owner on Jun 28, 2022. It is now read-only.

Commit

Permalink
fix: change method name
Browse files Browse the repository at this point in the history
  • Loading branch information
arantespp committed Oct 18, 2020
1 parent 22132d8 commit 8e22490
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/website/api/getTemplates.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { dumpCloudFormationTemplate } from 'carlin/dist/utils';
import { dumpToYamlCloudFormationTemplate } from 'carlin/dist/utils';
import { CloudFormationTemplate } from 'carlin/dist/utils/cloudFormationTemplate';

export { getStaticAppTemplate } from 'carlin/dist/deploy/staticApp/staticApp.template';
Expand All @@ -13,6 +13,6 @@ export const getJsonYamlTemplates = (
): JsonYamlTemplates => {
return {
templateJson,
templateYaml: dumpCloudFormationTemplate(templateJson),
templateYaml: dumpToYamlCloudFormationTemplate(templateJson),
};
};
1 change: 1 addition & 0 deletions packages/website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"build": "rm -rf .next && next build && next export",
"start": "next dev",
"dev": "next dev",
"predeploy": "yarn run build",
"deploy": "node ../cli/dist/index.js deploy static-app"
},
"dependencies": {
Expand Down

0 comments on commit 8e22490

Please sign in to comment.