pacc 9.2.8 → 9.2.9

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
@@ -282,6 +282,7 @@ Type: [Object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Globa
282
282
  * `externalName` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)?** attribute name used by external system
283
283
  * `env` **([Array](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array)<[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)> | [string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String))?** environment variable(s) used to provide the value
284
284
  * `additionalValues` **[object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object)?** other values to be set in case our attribute is set
285
+ * `separator` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)?** separator for collections
285
286
 
286
287
  ## default\_attribute
287
288
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pacc",
3
- "version": "9.2.8",
3
+ "version": "9.2.9",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "provenance": true
@@ -44,7 +44,7 @@
44
44
  "devDependencies": {
45
45
  "@mitata/counters": "^0.0.8",
46
46
  "ava": "^8.0.1",
47
- "browser-ava": "^2.3.57",
47
+ "browser-ava": "^2.3.61",
48
48
  "c8": "^11.0.0",
49
49
  "documentation": "^14.0.3",
50
50
  "mitata": "^1.0.34",
@@ -57,7 +57,7 @@
57
57
  }
58
58
  },
59
59
  "engines": {
60
- "node": ">=26.1.0"
60
+ "node": ">=26.2.0"
61
61
  },
62
62
  "repository": {
63
63
  "type": "git",
package/src/types.mjs CHANGED
@@ -136,9 +136,7 @@ export function addType(type) {
136
136
  type.specializationOf.specializations[type.name] = type;
137
137
  }
138
138
 
139
- if (!type.owners) {
140
- type.owners = [];
141
- }
139
+ type.owners ||= [];
142
140
 
143
141
  switch (typeof type.extends) {
144
142
  case "undefined":