-
Notifications
You must be signed in to change notification settings - Fork 401
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 #157 from WildCodeSchool/dev
Dev
- Loading branch information
Showing
63 changed files
with
3,464 additions
and
10,574 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -4,9 +4,9 @@ | |
|
||
- **Do not open up a GitHub issue if the bug is a security vulnerability**, and instead send an email to [email protected]. | ||
|
||
- **Ensure the bug was not already reported** by searching on GitHub under [Issues](https://github.com/wildcodeschool/create-harmonia/issues). | ||
- **Ensure the bug was not already reported** by searching on GitHub under [Issues](https://github.com/wildcodeschool/create-js-monorepo/issues). | ||
|
||
- If you're unable to find an open issue addressing the problem, [open a new one](https://github.com/wildcodeschool/create-harmonia/issues/new). Be sure to include a **title and clear description**, as much relevant information as possible, and a **code sample** or an **executable test case** demonstrating the expected behavior that is not occurring. | ||
- If you're unable to find an open issue addressing the problem, [open a new one](https://github.com/wildcodeschool/create-js-monorepo/issues/new). Be sure to include a **title and clear description**, as much relevant information as possible, and a **code sample** or an **executable test case** demonstrating the expected behavior that is not occurring. | ||
|
||
#### **Did you write a patch that fixes a bug?** | ||
|
||
|
@@ -20,9 +20,9 @@ Changes that are cosmetic in nature and do not add anything substantial to the s | |
|
||
#### **Do you intend to add a new feature or change an existing one?** | ||
|
||
- **Ensure the change was not already proposed** by searching on GitHub under [Issues](https://github.com/wildcodeschool/create-harmonia/issues). | ||
- **Ensure the change was not already proposed** by searching on GitHub under [Issues](https://github.com/wildcodeschool/create-js-monorepo/issues). | ||
|
||
- If you're unable to find an appropriate open issue, [open a new one](https://github.com/wildcodeschool/create-harmonia/issues/new). Be sure to include a **title and clear description**, as much relevant information as possible, and a **code sample** or an **executable test case** demonstrating the expected behavior that is not occurring. | ||
- If you're unable to find an appropriate open issue, [open a new one](https://github.com/wildcodeschool/create-js-monorepo/issues/new). Be sure to include a **title and clear description**, as much relevant information as possible, and a **code sample** or an **executable test case** demonstrating the expected behavior that is not occurring. | ||
|
||
- Do not start writing code until you have collected positive feedback on the issue 🙂 | ||
|
||
|
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,18 +1,18 @@ | ||
# Harmonia | ||
# JS Monorepo | ||
|
||
Harmonia is a framework meant to serve as a foundation for every project following the React-Express-MySQL stack, as learned in Wild Code School. | ||
This JS monorepo is a framework meant to serve as a foundation for every project following the React-Express-MySQL stack, as learned in Wild Code School. | ||
It's pre-configured with a set of tools which'll help students produce industry-quality and easier-to-maintain code, while staying a pedagogical tool. | ||
|
||
## Setup & Use | ||
|
||
Basic usage: | ||
|
||
```bash | ||
npm create harmonia@latest my-project | ||
npm create @wildcodeschool/js-monorepo@latest my-project | ||
``` | ||
|
||
You may prefix your project name with the name of your organization: | ||
|
||
```bash | ||
npm create harmonia@latest my-org/my-project | ||
npm create @wildcodeschool/js-monorepo@latest my-org/my-project | ||
``` |
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
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
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,29 @@ | ||
name: check | ||
|
||
on: | ||
pull_request: | ||
types: [opened, synchronize, reopened, ready_for_review] | ||
branches: | ||
- develop | ||
- dev | ||
|
||
jobs: | ||
lint: | ||
name: Run checks | ||
runs-on: ubuntu-latest | ||
|
||
permissions: | ||
checks: write | ||
contents: write | ||
|
||
steps: | ||
- name: Check out Git repository | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Setup Biome | ||
uses: biomejs/setup-biome@v2 | ||
|
||
- name: Run checks | ||
run: biome ci --error-on-warnings --changed --since="origin/${GITHUB_BASE_REF}" . |
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 was deleted.
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 |
---|---|---|
|
@@ -20,4 +20,4 @@ fi | |
echo '----- Done!' | ||
|
||
npx validate-branch-name | ||
npm run lint | ||
npm run check |
Oops, something went wrong.