Replace npm with yarn (#113)
* package.json: private true * delete package-lock.json * cvat-core/package.json: fix path for cvat-data * replace npm with yarn * replace npm with yarn * add yarn.lock files * replace npm with yarn * remark: replace npm with yarn * fixes * fixes * alligment * workflows: replace npm with yarn * revert husky version * replace npm with yarn on ci image * add yarn for ci image * enable debug mode for main workflow * debug mode * v0.0.0 * resolve dependencies issues * update docs * exit debug mode * add yarn.lock to the ui image * fix three version * resolve conflicts * [no ci] use yarn instead of npm * fix src pathmain
parent
987a09201b
commit
2240b3f4aa
@ -1,15 +1,15 @@
|
||||
# cvat-data module
|
||||
|
||||
```bash
|
||||
npm run build # build with minification
|
||||
npm run build -- --mode=development # build without minification
|
||||
npm run server # run debug server
|
||||
yarn run build # build with minification
|
||||
yarn run build --mode=development # build without minification
|
||||
yarn run server # run debug server
|
||||
```
|
||||
|
||||
## Versioning
|
||||
|
||||
If you make changes in this package, please do following:
|
||||
|
||||
- After not important changes (typos, backward compatible bug fixes, refactoring) do: `npm version patch`
|
||||
- After changing API (backward compatible new features) do: `npm version minor`
|
||||
- After changing API (changes that break backward compatibility) do: `npm version major`
|
||||
- After not important changes (typos, backward compatible bug fixes, refactoring) do: `yarn version --patch`
|
||||
- After changing API (backward compatible new features) do: `yarn version --minor`
|
||||
- After changing API (changes that break backward compatibility) do: `yarn version --major`
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue