phecda-core 2.0.0 → 2.0.1-alpha.0

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/index.js CHANGED
@@ -346,6 +346,7 @@ function Pipe(v) {
346
346
  __name(Pipe, "Pipe");
347
347
  function Tag(tag) {
348
348
  return (target) => {
349
+ init(target.prototype);
349
350
  target.prototype.__TAG__ = tag;
350
351
  };
351
352
  }
@@ -382,6 +383,7 @@ function Global(target) {
382
383
  }
383
384
  __name(Global, "Global");
384
385
  function Empty(_target) {
386
+ init(_target.prototype);
385
387
  }
386
388
  __name(Empty, "Empty");
387
389
  var DataMap = {};
package/dist/index.mjs CHANGED
@@ -255,6 +255,7 @@ function Pipe(v) {
255
255
  __name(Pipe, "Pipe");
256
256
  function Tag(tag) {
257
257
  return (target) => {
258
+ init(target.prototype);
258
259
  target.prototype.__TAG__ = tag;
259
260
  };
260
261
  }
@@ -291,6 +292,7 @@ function Global(target) {
291
292
  }
292
293
  __name(Global, "Global");
293
294
  function Empty(_target) {
295
+ init(_target.prototype);
294
296
  }
295
297
  __name(Empty, "Empty");
296
298
  var DataMap = {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "phecda-core",
3
- "version": "2.0.0",
3
+ "version": "2.0.1-alpha.0",
4
4
  "description": "provide base function and abstract limit to other phecda module ",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",