propro-common-components 0.2.65 → 0.2.67
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 -0
- package/dist/main.css +1 -1
- package/dist/propro-common-components.js +627 -619
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -28,3 +28,20 @@ export default {
|
|
|
28
28
|
- Replace `plugin:@typescript-eslint/recommended` to `plugin:@typescript-eslint/recommended-type-checked` or `plugin:@typescript-eslint/strict-type-checked`
|
|
29
29
|
- Optionally add `plugin:@typescript-eslint/stylistic-type-checked`
|
|
30
30
|
- Install [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) and add `plugin:react/recommended` & `plugin:react/jsx-runtime` to the `extends` list
|
|
31
|
+
|
|
32
|
+
## Contribution Guide
|
|
33
|
+
|
|
34
|
+
Follow these steps to contribute to the project:
|
|
35
|
+
|
|
36
|
+
1. **Pull latest changes**: Before making any changes, make sure you have the latest version of the code by pulling from the branch.
|
|
37
|
+
|
|
38
|
+
2. **Plasmic Sync**: If you've made changes in Plasmic, run the following command to sync them with the project before publishing.
|
|
39
|
+
```bash
|
|
40
|
+
plasmic sync
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
3. **Publishing**: To publish a new version, run the following -
|
|
44
|
+
```bash
|
|
45
|
+
yarn publish
|
|
46
|
+
```
|
|
47
|
+
When prompted for a new version, increment the last digit of the current version by 1 (e.g., if the current version is `1.0.0`, the new version should be `1.0.1`).
|