https://github.com/iadvize/hello-world-monorepo-javascript-library
Hello world javascript library used as repo template for other javascript oss libraries at iAdvize (monorepo version)
https://github.com/iadvize/hello-world-monorepo-javascript-library
Last synced: about 1 year ago
JSON representation
Hello world javascript library used as repo template for other javascript oss libraries at iAdvize (monorepo version)
- Host: GitHub
- URL: https://github.com/iadvize/hello-world-monorepo-javascript-library
- Owner: iadvize
- License: mit
- Created: 2020-02-02T13:50:38.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T06:18:00.000Z (over 3 years ago)
- Last Synced: 2025-03-01T03:36:55.994Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 1.05 MB
- Stars: 0
- Watchers: 18
- Forks: 1
- Open Issues: 29
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
Hello-world monorepo library
========================
This is a mono-repo of javascript libraries.
- [Packages in this monorepo](#packages-in-this-monorepo)
- [How to develop](#how-to-develop)
- [How to contribute](#how-to-contribute)
## Packages in this monorepo
It contains :
- [`@iadvize-oss/hello-1`](./packages/hello-1)
- [`@iadvize-oss/hello-2`](./packages/hello-2)
## How to develop
- Develop your change in the package `packages/`
- Build the package with `npm run build`
- Add tests that run with `npm run test:js`
- Add lint that run with `npm run lint:js`
## How to contribute
1. Create a new branch with your changes. Create your PR.
2. Push your code. *Don't forget to update `packages//CHANGELOG.md`*
3. Tag your PR with a version tag (`no-release`, `patch`, `minor` or `major`).
Tag your PR with your package (eg. `packages/hello-1`). Submit it for approval.
4. The CI will publish the new version of the package for you once merged on master.