@dzeio/schema 0.4.2 → 0.4.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/dist/Schema.js CHANGED
@@ -124,7 +124,7 @@ var _SchemaItem = class _SchemaItem {
124
124
  return this;
125
125
  }
126
126
  attrs(...attributes) {
127
- this.attributes.concat(attributes);
127
+ this.attributes.push(...attributes);
128
128
  return this;
129
129
  }
130
130
  attr(...attributes) {
package/dist/Schema.mjs CHANGED
@@ -81,7 +81,7 @@ var _SchemaItem = class _SchemaItem {
81
81
  return this;
82
82
  }
83
83
  attrs(...attributes) {
84
- this.attributes.concat(attributes);
84
+ this.attributes.push(...attributes);
85
85
  return this;
86
86
  }
87
87
  attr(...attributes) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dzeio/schema",
3
- "version": "0.4.2",
3
+ "version": "0.4.3",
4
4
  "dependencies": {
5
5
  "@dzeio/object-util": "^1.8.3"
6
6
  },