-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: run lerna boostrap and add .gitignore file
- Loading branch information
Pedro Lopez Mareque
committed
Apr 23, 2021
1 parent
0bc044f
commit 80a009c
Showing
2 changed files
with
9,873 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
.DS_Store | ||
node_modules | ||
/dist | ||
/*.tgz | ||
|
||
# Ignore every folder except build, public, report, src and tests | ||
*/* | ||
!/build/* | ||
!/public/* | ||
!/src/* | ||
!/tests/* | ||
!/static-docs/* | ||
!/build-helpers/* | ||
|
||
/tests/e2e/videos/ | ||
/tests/e2e/screenshots/ | ||
|
||
# local env files | ||
.env.local | ||
.env.*.local | ||
|
||
# Log files | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# Editor directories and files | ||
.idea | ||
.vscode | ||
*.suo | ||
*.ntvs* | ||
*.njsproj | ||
*.sln | ||
*.sw? | ||
|
Oops, something went wrong.