https://github.com/rimsila/next-dev
next-dev-library mono package such as core/component/hooks/provider maintain by Sila Rim
https://github.com/rimsila/next-dev
Last synced: 8 months ago
JSON representation
next-dev-library mono package such as core/component/hooks/provider maintain by Sila Rim
- Host: GitHub
- URL: https://github.com/rimsila/next-dev
- Owner: rimsila
- Archived: true
- Created: 2020-11-20T09:55:50.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-07-11T03:22:56.000Z (over 4 years ago)
- Last Synced: 2025-01-13T23:13:00.645Z (9 months ago)
- Language: TypeScript
- Homepage: https://rimsila.github.io/next-dev/
- Size: 21.8 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: .github/README.md
- Contributing: .github/CONTRIBUTING.md
Awesome Lists containing this project
README
# Contributing to Next Dev
## Set up
Install dev deps after git clone the repo.
```bash
$ yarn
```## Common Tasks
Transform with babel and rollup.
```bash
# Start in the development environment
$ yarn start# Build
$ yarn build# Build and monitor file changes
$ yarn build --watch# Build specified package only
$ PACKAGE=plugin-antd yarn build --watch
```Run test.
```bash
$ yarn test# Test specified file and watch
$ yarn test getMockData.test.js -w# Test specified package
$ yarn test --package core# Generate coverage
$ yarn test --coverage
```## Release
1. Modify the version number in the corresponding package package.json
2. Tag, the tag rule is package + version```bash
# Take core package as an example
git tag @next-dev/core@1.0.0-beta1
```3. Submit according to the git commit specification (will be released automatically)
> Please refer to https://www.conventionalcommits.org/en/v1.0.0/ for git submit specifications