-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from olliethedev/feat/blog-plugin
feat: add command logic
- Loading branch information
Showing
10 changed files
with
196 additions
and
17 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"version": "1.1.13", | ||
"version": "1.1.14", | ||
"private": true, | ||
"workspaces": [ | ||
"./packages/*" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
packages/amplify-graphql-process-image-transformer/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,21 @@ | ||
{ | ||
"name": "@amplifiers/amplify-util-blog", | ||
"version": "1.1.13", | ||
"version": "1.1.14", | ||
"description": "", | ||
"main": "index.js", | ||
"files": [ | ||
"commands", | ||
"event-handlers", | ||
"ui-components", | ||
"amplify-plugin.json" | ||
], | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1", | ||
"compile": "echo WIP" | ||
}, | ||
"author": "", | ||
"license": "ISC" | ||
"license": "ISC", | ||
"dependencies": { | ||
"fs-extra": "^11.1.1" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/*************************************************************************** | ||
* The contents of this file were generated with Amplify Studio. * | ||
* Please refrain from making any modifications to this file. * | ||
* Any changes to this file will be overwritten when running amplify pull. * | ||
**************************************************************************/ | ||
|
||
import * as React from "react"; | ||
import { EscapeHatchProps } from "@aws-amplify/ui-react/internal"; | ||
import { FlexProps } from "@aws-amplify/ui-react"; | ||
export declare type PrimitiveOverrideProps<T> = Partial<T> & React.DOMAttributes<HTMLDivElement>; | ||
export declare type PageOverridesProps = { | ||
Page?: PrimitiveOverrideProps<FlexProps>; | ||
"Frame 1"?: PrimitiveOverrideProps<FlexProps>; | ||
"Frame 2"?: PrimitiveOverrideProps<FlexProps>; | ||
} & EscapeHatchProps; | ||
export declare type PageProps = React.PropsWithChildren<Partial<FlexProps> & { | ||
overrides?: PageOverridesProps | undefined | null; | ||
}>; | ||
export default function Page(props: PageProps): React.ReactElement; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
/*************************************************************************** | ||
* The contents of this file were generated with Amplify Studio. * | ||
* Please refrain from making any modifications to this file. * | ||
* Any changes to this file will be overwritten when running amplify pull. * | ||
**************************************************************************/ | ||
|
||
/* eslint-disable */ | ||
import * as React from "react"; | ||
import { getOverrideProps } from "@aws-amplify/ui-react/internal"; | ||
import { Flex } from "@aws-amplify/ui-react"; | ||
export default function Page(props) { | ||
const { overrides, ...rest } = props; | ||
return ( | ||
<Flex | ||
gap="0" | ||
direction="column" | ||
width="1440px" | ||
height="unset" | ||
justifyContent="flex-start" | ||
alignItems="flex-start" | ||
overflow="hidden" | ||
position="relative" | ||
padding="0px 0px 0px 0px" | ||
backgroundColor="rgba(250,250,250,1)" | ||
{...getOverrideProps(overrides, "Page")} | ||
{...rest} | ||
> | ||
<Flex | ||
gap="0" | ||
direction="row" | ||
width="unset" | ||
height="unset" | ||
justifyContent="flex-start" | ||
alignItems="flex-start" | ||
overflow="hidden" | ||
shrink="0" | ||
alignSelf="stretch" | ||
position="relative" | ||
padding="0px 0px 0px 0px" | ||
{...getOverrideProps(overrides, "Frame 1")} | ||
></Flex> | ||
<Flex | ||
gap="0" | ||
direction="row" | ||
width="unset" | ||
height="unset" | ||
justifyContent="flex-start" | ||
alignItems="flex-start" | ||
overflow="hidden" | ||
shrink="0" | ||
alignSelf="stretch" | ||
position="relative" | ||
padding="0px 0px 0px 0px" | ||
{...getOverrideProps(overrides, "Frame 2")} | ||
></Flex> | ||
</Flex> | ||
); | ||
} |