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

Replace lerna with turborepo #1367

Merged
merged 38 commits into from
Sep 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
b29f84f
removed reproductions
piotrpospiech Sep 7, 2024
a049a2e
removed docs
piotrpospiech Sep 7, 2024
7ad020b
removed lerna config file
piotrpospiech Sep 7, 2024
f0ead9a
removed lerna from install script
piotrpospiech Sep 7, 2024
1d20da1
removed lerna package
piotrpospiech Sep 7, 2024
9aa031b
added turbo package
piotrpospiech Sep 7, 2024
a05f18c
added turbo to gitignore
piotrpospiech Sep 7, 2024
2426e14
changed build script for uniforms core package
piotrpospiech Sep 7, 2024
8216876
changed build script for uniforms-antd package
piotrpospiech Sep 7, 2024
1ebe503
changed build script for uniforms-bootstrap4 package
piotrpospiech Sep 7, 2024
cd2587a
changed build script for uniforms-bootstrap5 package
piotrpospiech Sep 7, 2024
eeec8f2
changed build script for uniforms-unstyled package
piotrpospiech Sep 7, 2024
480eaea
changed build script for uniforms-semantic package
piotrpospiech Sep 7, 2024
f33658a
changed build script for uniforms-mui package
piotrpospiech Sep 8, 2024
fc3adc9
changed build script for uniforms-bridge-zod package
piotrpospiech Sep 8, 2024
5940ac6
changed build script for uniforms-bridge-simple-schema-2 package
piotrpospiech Sep 8, 2024
a9874d1
changed build script for uniforms-bridge-json-schema package
piotrpospiech Sep 8, 2024
991626c
removed tsconfig.build.json
piotrpospiech Sep 8, 2024
5c0a1a4
removed tslib from root package.json
piotrpospiech Sep 8, 2024
8cf953d
removed engines field from package.json
piotrpospiech Sep 8, 2024
1ae67c4
updated clean script
piotrpospiech Sep 8, 2024
0393869
added turbo to prettierignore
piotrpospiech Sep 8, 2024
d6e7418
removed mentions of the lerna package
piotrpospiech Sep 8, 2024
a81b47d
removed publish script
piotrpospiech Sep 8, 2024
0d34840
added nvmrc
piotrpospiech Sep 8, 2024
b4dc61a
added removing turbo cache to reset script
piotrpospiech Sep 8, 2024
483a453
updated package versions
piotrpospiech Sep 8, 2024
2580832
added missing types
piotrpospiech Sep 8, 2024
3e25462
removed tsconfig.global.json
piotrpospiech Sep 8, 2024
f942974
removed unused packages
piotrpospiech Sep 8, 2024
be1685a
changed dependencies to devDependencies
piotrpospiech Sep 8, 2024
21ae3dc
added newline at end of nvmrc file
piotrpospiech Sep 8, 2024
0575a54
updated packageManager version
piotrpospiech Sep 8, 2024
7fc4aba
revert changes - included files in package.json
piotrpospiech Sep 8, 2024
9e692dc
added reproductions
piotrpospiech Sep 13, 2024
3a8ae0d
reverted change - tsconfig - skipLibCheck
piotrpospiech Sep 13, 2024
8759b35
updated contributing file and added build:watch script
piotrpospiech Sep 13, 2024
62a90df
added empty line on the end of the file
piotrpospiech Sep 13, 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
1 change: 0 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
/.idea
/.parcel-cache
/coverage
/lerna-debug.log

/node_modules
/npm-debug.log
Expand Down
6 changes: 3 additions & 3 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Our kanban board is public and available [here](https://github.com/orgs/vazco/pr

- Create a fork from where you want to base your work.
- Clone the repo and run `npm ci` **in the top-level only**.
- Make sure you are using `npm` that understands the `package-lock.json` format. At the moment, it's at least v7.
- Make sure you are using `npm` that understands the `package-lock.json` format. Check the current version in the `package.json` file.
- Make sure your commit messages are in the proper format:
- Bugfix or feature:
- `Implemented asynchronous validation (closes #17).`
Expand All @@ -32,14 +32,14 @@ Our kanban board is public and available [here](https://github.com/orgs/vazco/pr

### Development

For the best local developer experience (DX) it is recommended to start `build` and `test` in `--watch` mode.
For the best local developer experience (DX) it is recommended to run scripts in watch mode.

Run the commands below in the root directory.

#### Running the build in watch mode

```sh
npm run build -- --watch
npm run build:watch
```

#### Running the tests in watch mode
Expand Down
2 changes: 1 addition & 1 deletion .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
- .prettierrc.js
- .stylelintrc
- jest.config.js
- lerna.json
- turbo.json
- package-lock.json
- package.json
- scripts/**/*
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/.idea
/.parcel-cache
/coverage
/lerna-debug.log
.DS_Store
.turbo

/node_modules
/npm-debug.log
Expand All @@ -12,6 +12,7 @@
/packages/*/node_modules
/reproductions/dist
/reproductions/node_modules
/reproductions/.parcel-cache
/website/.cache-loader
/website/.docusaurus
/website/build
Expand Down
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
22.8.0
3 changes: 1 addition & 2 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
/.idea
/.parcel-cache
/coverage
/lerna-debug.log
/lerna.json
/node_modules
/npm-debug.log
/npm-debug.log*
Expand All @@ -15,3 +13,4 @@
/website/.docusaurus
/website/build
/website/node_modules
.turbo
287 changes: 0 additions & 287 deletions docs/api-bridges.md

This file was deleted.

Loading
Loading