@ttahub/common 1.2.0 → 1.4.0
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 +7 -1
- package/package.json +1 -1
- package/src/index.js +1 -0
package/README.md
CHANGED
|
@@ -15,9 +15,15 @@ Whenever changes to this package are made, you will need to:
|
|
|
15
15
|
- Bump the version in `package.json`.
|
|
16
16
|
- Publish the latest version of the package to npm by running `npm publish` in this directory. There is also a yarn task in the root of the TTAHUB app you can run ```yarn publish:common```
|
|
17
17
|
|
|
18
|
-
If your PR depends on the latest version of this package, please don't forget to run `yarn upgrade @ttahub/common` and commit the changes to `package.json` and `yarn.lock
|
|
18
|
+
If your PR depends on the latest version of this package, please don't forget to run `yarn upgrade @ttahub/common` (in BE and FE) and commit the changes to `package.json` (all 3: ./package.json, ./frontend/package.json, ./packages/common/package.json) and `yarn.lock` (BE and FE).
|
|
19
|
+
|
|
20
|
+
Note: On Windows you will need to use `yarn add @ttahub/common@1.x.0` to update the package.json file's.
|
|
19
21
|
|
|
20
22
|
## Versions
|
|
23
|
+
|
|
24
|
+
### 1.1.9/1.2.0
|
|
25
|
+
(Sorry for the multiple versions) Update the name of the const COLLABORATOR_TRAINING_REPORTS to POC_TRAINING_REPORTS
|
|
26
|
+
|
|
21
27
|
### 1.1.8
|
|
22
28
|
Reorder training report url param statuses so suspended is third tab and not second on TR landing
|
|
23
29
|
|
package/package.json
CHANGED