Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: add style-guide page #663

Open
wants to merge 30 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
38d166c
chore(references): add style guide
dudymas Aug 19, 2024
4574a29
chore(repo): tidy local dev resources
dudymas Aug 20, 2024
ed23db7
chore(style-guide): more code examples
dudymas Aug 20, 2024
a277854
chore(style-guide): show attribute usage in Atmos component
dudymas Aug 20, 2024
feb9ab9
chore(style-guide): recommend admonition component
dudymas Aug 20, 2024
5531043
fix(style-guide): feedback corrections
dudymas Aug 21, 2024
d5ca16d
fix(style-guide): correct sidebar label
dudymas Aug 21, 2024
ecf46e9
fix(style-guide/slider): remove demo and refer to working sample
dudymas Aug 21, 2024
42dd29d
fix(style-guide/steps): remove from ToC
dudymas Aug 21, 2024
4134892
chore(src/components): restore Terminal and EmbedFile
dudymas Aug 21, 2024
e737fe8
fix(style-guide/actionCard): add secondarycta and tidy attrs
dudymas Aug 21, 2024
92cd663
chore(style-guide/taskList): add description
dudymas Aug 21, 2024
2f7ac71
chore(style-guide/lists): add more examples and description
dudymas Aug 21, 2024
091252d
chore(style-guide/docCardList): improved description
dudymas Aug 21, 2024
a9a377c
chore(style-guide/headings): mention 4th heading behavior
dudymas Aug 21, 2024
5f47f19
chore(style-guide/headings): additional spacing
dudymas Aug 21, 2024
323bcf3
fix(docker): add make targets
dudymas Aug 21, 2024
c159560
fix(style-guide): remove EmbedFile for now
dudymas Aug 21, 2024
7381706
chore(style-guide): more feedback
dudymas Aug 21, 2024
b038e80
chore(style-guide): continued feedback fixes on spacing
dudymas Aug 21, 2024
1d6bfda
chore(style-guide): update components description
dudymas Aug 22, 2024
74cc21b
Merge branch 'master' into chore/references/style-guide
dudymas Aug 22, 2024
e1afefa
chore(style-guide/actionCard): wrap cta in div
dudymas Aug 22, 2024
0ec164b
Merge branch 'master' into chore/references/style-guide
dudymas Sep 9, 2024
4ece920
Merge branch 'master' into chore/references/style-guide
dudymas Sep 12, 2024
5402ce4
chore(style-guide): move admonition. add terminal title
dudymas Sep 16, 2024
58b1671
chore(Makefile): rename make targets
dudymas Sep 16, 2024
0ae0f62
chore(style-guide): reword Component intro
dudymas Sep 16, 2024
33d8a2a
feat(style-guide): added more summaries
dudymas Sep 16, 2024
2e4bc88
chore(style-guide/details): update heading
dudymas Sep 17, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,18 @@ render:
./scripts/render-docs-for-components.sh
./scripts/render-docs-for-modules.sh
./scripts/render-docs-for-github-actions.sh

docker/build:
docker build . -t cloudposse/docs
docker build scripts -t cloudposse/docs:scripts

docker/render: containers
docker run --rm -v -it $(PWD):/app -w /app cloudposse/docs:scripts scripts/render-docs-for-components.sh
docker run --rm -v -it $(PWD):/app -w /app -e PUBLIC_REPO_ACCESS_TOKEN="$$(gh auth token)" cloudposse/docs:scripts scripts/render-docs-for-modules.sh
docker run --rm -v -it $(PWD):/app -w /app -e PUBLIC_REPO_ACCESS_TOKEN="$$(gh auth token)" cloudposse/docs:scripts scripts/render-docs-for-github-actions.sh

build-library: containers
docker run --rm -v $(PWD):/app -w /app cloudposse/docs npm run build

build: deps
npm run build
Expand Down
Loading