convention_builder 1.6.0 → 1.6.1
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/module/index.js +4 -3
- package/dist/node/index.js +4 -3
- package/package.json +1 -1
package/dist/module/index.js
CHANGED
|
@@ -25315,9 +25315,10 @@ var require_array_examples_preparator = __commonJS({
|
|
|
25315
25315
|
*/
|
|
25316
25316
|
initialize() {
|
|
25317
25317
|
return __async(this, null, function* () {
|
|
25318
|
-
this.getConventions().then((d) => {
|
|
25319
|
-
this.structureInstances();
|
|
25320
|
-
});
|
|
25318
|
+
yield this.getConventions().then((d) => __async(this, null, function* () {
|
|
25319
|
+
yield this.structureInstances();
|
|
25320
|
+
}));
|
|
25321
|
+
return this.instances;
|
|
25321
25322
|
});
|
|
25322
25323
|
}
|
|
25323
25324
|
/**
|
package/dist/node/index.js
CHANGED
|
@@ -25308,9 +25308,10 @@ var require_array_examples_preparator = __commonJS({
|
|
|
25308
25308
|
*/
|
|
25309
25309
|
initialize() {
|
|
25310
25310
|
return __async(this, null, function* () {
|
|
25311
|
-
this.getConventions().then((d) => {
|
|
25312
|
-
this.structureInstances();
|
|
25313
|
-
});
|
|
25311
|
+
yield this.getConventions().then((d) => __async(this, null, function* () {
|
|
25312
|
+
yield this.structureInstances();
|
|
25313
|
+
}));
|
|
25314
|
+
return this.instances;
|
|
25314
25315
|
});
|
|
25315
25316
|
}
|
|
25316
25317
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "convention_builder",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.1",
|
|
4
4
|
"description": "Helper tools that offer a high level interface that transforms a convention description into it's json schema.",
|
|
5
5
|
"main": "./dist/node/index.js",
|
|
6
6
|
"browser": "./dist/browser/index.js",
|