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

Storybook code page preview #48

Closed
wants to merge 12 commits into from
Closed
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
5 changes: 5 additions & 0 deletions .changeset/calm-starfishes-breathe.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@smile/react-front-kit': patch
---

Add BitConverter, TruncateString, Dropzone and DropzoneCard components
4 changes: 2 additions & 2 deletions .changeset/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
}
],
"commit": false,
"fixed": [["*"]],
"fixed": [["@smile/react-front-kit*"]],
"access": "public",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": ["web"]
"ignore": ["next-app"]
}
5 changes: 5 additions & 0 deletions .changeset/gentle-hotels-jog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@smile/react-front-kit': minor
---

Added code preview for page components and added turbo generation
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Release
on:
push:
branches:
- main
- '*.x'

concurrency: ${{ github.workflow }}-${{ github.ref }}

Expand Down
14 changes: 8 additions & 6 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,16 @@ Private configuration packages:

Private integration testing packages:

- apps/web: Next.js testing app
- apps/next: Next.js testing app

## Root commands

At the root level you can launch following commands:

- `npm run build`: Builds all sub projects
- `npm run dev`: Launches dev command in all sub projects
- `npm run build`: Builds all packages projects
- `npm run build:app`: Builds all apps projects
- `npm run dev`: Launches dev command in apps projects
- `npm run start`: Launches start command in apps projects
- `npm run lint`: Lints everything
- `npm run lint:root`: Lints everything but the `apps` folder
- `npm run lint:fix`: Lints and fix everything but the `apps` folder
Expand Down Expand Up @@ -89,8 +91,8 @@ To create a changeset:
2. This will create a changeset file in the `.changeset` folder you can review
3. Commit the changeset file

## Publishing
## Release

When a PR containing changesets is merged into `main` it will automatically create a release PR.
When a PR containing changesets is merged into `*.x` branch it will automatically create a release PR.

Then when that release PR is merged into `main`, it will automatically create a release and publish the packages on `npm`.
Then when that release PR is merged into the `*.x` branch, it will automatically create a release and publish the packages on `npm`.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions apps/web/package.json → apps/next/package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "web",
"name": "next-app",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"build:app": "next build",
"start": "next start",
"lint": "next lint"
},
Expand Down
File renamed without changes
File renamed without changes.
Loading