@jield/solodb-react-components 1.2.1 → 1.2.3
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 +10 -0
- package/dist/index.cjs +24 -24
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.js +6874 -5555
- package/dist/index.js.map +1 -1
- package/dist/modules/run/components/run/parent/editRunParents.d.ts +1 -0
- package/dist/modules/run/components/shared/parentRuns/parentRunSelect.d.ts +9 -0
- package/dist/modules/run/components/shared/parentRuns/partGrouping.d.ts +7 -0
- package/dist/modules/run/components/shared/parentRuns/partLevelFieldset.d.ts +10 -0
- package/dist/modules/run/components/shared/parentRuns/runPartPicker.d.ts +18 -0
- package/dist/modules/run/components/shared/parentRuns/selectedRunList.d.ts +7 -0
- package/dist/modules/run/components/wizard/createRunForm/createRunForm.d.ts +23 -0
- package/dist/modules/run/components/wizard/createRunForm/formSection.d.ts +6 -0
- package/dist/modules/run/components/wizard/createRunForm/organisationSelect.d.ts +18 -0
- package/dist/modules/run/components/wizard/createRunForm/selectionOverview.d.ts +9 -0
- package/dist/modules/run/components/wizard/getCreateRunErrorMessage.d.ts +1 -0
- package/dist/modules/run/components/wizard/substrateSelect.d.ts +12 -0
- package/dist/modules/run/components/wizard/wizardElement.d.ts +1 -0
- package/dist/modules/run/hooks/useParentRunSelection.d.ts +29 -0
- package/dist/modules/run/utils/buildRunParentPayloads.d.ts +13 -0
- package/dist/modules/run/utils/runStepPartCache.d.ts +4 -1
- package/package.json +14 -13
package/README.md
CHANGED
|
@@ -93,3 +93,13 @@ yarn build
|
|
|
93
93
|
yarn run example:install
|
|
94
94
|
yarn dev
|
|
95
95
|
```
|
|
96
|
+
|
|
97
|
+
## Release
|
|
98
|
+
|
|
99
|
+
Run the guided release script from the repository root:
|
|
100
|
+
|
|
101
|
+
```bash
|
|
102
|
+
yarn release
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
The script upgrades dependencies, shows the resulting changes, prompts for the next package version, optionally runs tests and a build, then commits, creates an annotated `vX.Y.Z` tag, and pushes the branch and tag to GitHub.
|