mesh-ioc 1.1.1 → 1.2.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/README.md CHANGED
@@ -6,7 +6,7 @@ Mesh IoC solves the problem of dependency management of application services. It
6
6
 
7
7
  ## Key features
8
8
 
9
- - 👗 Very slim — about 4KB minified, even less gzipped
9
+ - 👗 Very slim — about 2KB minified, few hundred bytes gzipped
10
10
  - ⚡️ Blazing fast
11
11
  - 🧩 Flexible and composable
12
12
  - 🌿 Ergonomic
@@ -1,5 +1,4 @@
1
1
  export * from './decorators/dep';
2
- export * from './decorators/service';
3
2
  export * from './errors';
4
3
  export * from './mesh';
5
4
  export * from './scope';
package/out/main/index.js CHANGED
@@ -11,7 +11,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
11
11
  };
12
12
  Object.defineProperty(exports, "__esModule", { value: true });
13
13
  __exportStar(require("./decorators/dep"), exports);
14
- __exportStar(require("./decorators/service"), exports);
15
14
  __exportStar(require("./errors"), exports);
16
15
  __exportStar(require("./mesh"), exports);
17
16
  __exportStar(require("./scope"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mesh-ioc",
3
- "version": "1.1.1",
3
+ "version": "1.2.0",
4
4
  "description": "Mesh: Powerful and Lightweight IoC Library",
5
5
  "main": "out/main/index.js",
6
6
  "types": "out/main/index.d.ts",