@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 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ttahub/common",
3
- "version": "1.2.0",
3
+ "version": "1.4.0",
4
4
  "description": "The purpose of this package is to reduce code duplication between the frontend and backend projects.",
5
5
  "main": "src/index.js",
6
6
  "author": "",
package/src/index.js CHANGED
@@ -146,6 +146,7 @@ const TARGET_POPULATIONS = [
146
146
  'Children with Disabilities',
147
147
  'Children with Special Health Care Needs',
148
148
  'Dual-Language Learners',
149
+ 'Program Staff',
149
150
  ];
150
151
  exports.TARGET_POPULATIONS = TARGET_POPULATIONS;
151
152