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: makefile and gitignore enhancements #184

Merged
merged 1 commit into from
Oct 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,8 @@ dist/**
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
!.yarn/versions

packages/design-system/dist/**
lerna-debug.log
pub.sh
12 changes: 8 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
setup:
.PHONY: setup build format-check format-fix

## Install Sistent dependencies your local machine.
package-setup:
yarn install

build: install
## Build Sistent components and packages on your local machine.
package-build: setup
yarn run build-all

format-check:
package-format-check:
yarn run format:check

format-fix:
package-format-fix:
yarn run format:write
4 changes: 1 addition & 3 deletions system/foundations/responsive.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,7 @@ Providing support at these smaller sizes enable people with low vision to use La

To understand how to break down a page to work on smaller viewports, check out [Responsive foundations](/foundations/layout) and [Responsive behavior](/foundations/layout) sections in the [Layout](/foundations/layout) page.


TODO: Capture SVG requirements and practices from Meshery.


- **Minimum viewport width**: 375px
- **Minimum viewport height**: 300px
- **Minimum viewport height**: 300px
Loading