@hubspot/project-parsing-lib 0.1.5 → 0.1.6

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/lang/copy.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hubspot/project-parsing-lib",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "Parsing library for converting projects directory structures to their intermediate representation",
5
5
  "license": "Apache-2.0",
6
6
  "main": "src/index.js",
package/src/lang/copy.js CHANGED
@@ -16,7 +16,7 @@ exports.errorMessages = {
16
16
  missingRequiredField: (field) => `Missing required field: '${field}'`,
17
17
  missingUid: `Missing required field: 'uid'`,
18
18
  emptyUid: `'uid' must be at least one character long`,
19
- invalidUid: `'uid' must be lowercase and contain only numbers and underscores`,
19
+ invalidUid: `'uid' should be in lowercase, using only letters, numbers, and underscores. For example: app_id_123`,
20
20
  uidTooLong: `'uid' must be 64 characters or less`,
21
21
  missingType: `Missing required field: 'type'`,
22
22
  missingConfig: `Missing required field: 'config'`,