@rocketui/vue 0.0.4 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +17 -1
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -85,7 +85,23 @@ yarn lint
|
|
|
85
85
|
|
|
86
86
|
## Contribution
|
|
87
87
|
|
|
88
|
-
|
|
88
|
+
Contribution
|
|
89
|
+
We welcome contributions of any kind including documentation, bug reports, bug fixes, feature requests, feature implementations, and pull requests. If you're interested in contributing to this project, please follow these guidelines:
|
|
90
|
+
|
|
91
|
+
- Fork this repository to your own GitHub account and then clone it to your local device.
|
|
92
|
+
- Install the dependencies by running `yarn install`.
|
|
93
|
+
- Run `yarn dev` to start the dev server and see your changes in real-time as you edit the source files.
|
|
94
|
+
- Create a new branch for your changes, e.g. `git checkout -b my-feature`.
|
|
95
|
+
- Make your changes and commit them with a descriptive message.
|
|
96
|
+
- Push your changes to your forked repository, e.g. `git push -u origin my-feature`.
|
|
97
|
+
- Create a pull request from your forked repository to this repository, and describe the changes you've made and why they should be merged.
|
|
98
|
+
- Before submitting a pull request, please make sure that your changes pass the following checks:
|
|
99
|
+
|
|
100
|
+
The unit tests pass by running `yarn test:unit`.
|
|
101
|
+
The code passes the ESLint check by running `yarn lint`.
|
|
102
|
+
The code builds without errors by running `yarn build`.
|
|
103
|
+
|
|
104
|
+
We aim to respond to all pull requests and issues within 48 hours. Thank you for your interest in contributing to Rocket UI Vue!
|
|
89
105
|
|
|
90
106
|
## License
|
|
91
107
|
|
package/package.json
CHANGED