neo.mjs 4.2.4 → 4.2.5

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.
@@ -7,10 +7,10 @@
7
7
  "image" : "the-secret-of-successfully-using-multi-window-webgl-canvas.png",
8
8
  "name" : "The secret of successfully using multi window WebGL Canvas",
9
9
  "provider" : "Medium",
10
- "publisher" : "",
10
+ "publisher" : "ITNEXT",
11
11
  "selectedInto": [],
12
12
  "type" : "Blog Post",
13
- "url" : "https://tobiasuhlig.medium.com/the-secret-of-successfully-using-multi-window-webgl-canvas-5a2d05555ad1?source=friends_link&sk=d24ec0ec25aa6678d5fd1f59aaf09007"
13
+ "url" : "https://itnext.io/the-secret-of-successfully-using-multi-window-webgl-canvas-5a2d05555ad1?source=friends_link&sk=d24ec0ec25aa6678d5fd1f59aaf09007"
14
14
  },
15
15
  {
16
16
  "author" : "Tobias Uhlig",
@@ -397,4 +397,6 @@ if (programOpts.info) {
397
397
  }
398
398
 
399
399
  fs.writeFileSync(classPath, contentArray.join(os.EOL));
400
+
401
+ process.exit();
400
402
  }
@@ -657,6 +657,13 @@ if (programOpts.info) {
657
657
  " singleton: true"
658
658
  );
659
659
 
660
+ baseClass === 'model.Component' && addComma(classContent).push(
661
+ " /**",
662
+ " * @member {Object} stores",
663
+ " */",
664
+ " stores: {}",
665
+ );
666
+
660
667
  baseClass === 'component.Base' && addComma(classContent).push(
661
668
  " /**",
662
669
  " * @member {Object} _vdom",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "neo.mjs",
3
- "version": "4.2.4",
3
+ "version": "4.2.5",
4
4
  "description": "The webworkers driven UI framework",
5
5
  "type": "module",
6
6
  "repository": {