@tramvai/core 2.51.2 → 2.56.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/lib/index.d.ts CHANGED
@@ -3,4 +3,4 @@ export { createBundle } from './bundles/createBundle';
3
3
  export { createAction } from './actions/createActions';
4
4
  export * from './actions/declareAction';
5
5
  export * from '@tramvai/tokens-core';
6
- export { DI_TOKEN, IS_DI_CHILD_CONTAINER_TOKEN, Scope, Provider, createToken, provide, optional, ExtractTokenType, ExtractDependencyType, Module, MODULE_PARAMETERS, getModuleParameters, walkOfModules, isExtendedModule, ModuleType, ExtendedModule, } from '@tinkoff/dippy';
6
+ export { DI_TOKEN, IS_DI_CHILD_CONTAINER_TOKEN, Scope, Provider, createToken, provide, optional, ExtractTokenType, ExtractDependencyType, Module, MODULE_PARAMETERS, getModuleParameters, walkOfModules, isExtendedModule, ModuleType, ExtendedModule, declareModule, } from '@tinkoff/dippy';
package/lib/index.es.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { createContainer, walkOfModules, getModuleParameters, isExtendedModule, MODULE_PARAMETERS, Scope } from '@tinkoff/dippy';
2
- export { DI_TOKEN, IS_DI_CHILD_CONTAINER_TOKEN, MODULE_PARAMETERS, Module, Scope, createToken, getModuleParameters, isExtendedModule, optional, provide, walkOfModules } from '@tinkoff/dippy';
2
+ export { DI_TOKEN, IS_DI_CHILD_CONTAINER_TOKEN, MODULE_PARAMETERS, Module, Scope, createToken, declareModule, getModuleParameters, isExtendedModule, optional, provide, walkOfModules } from '@tinkoff/dippy';
3
3
  import { COMMAND_LINE_RUNNER_TOKEN, APP_INFO_TOKEN, BUNDLE_LIST_TOKEN, ACTIONS_LIST_TOKEN, MODULES_LIST_TOKEN, ACTION_PARAMETERS } from '@tramvai/tokens-core';
4
4
  export * from '@tramvai/tokens-core';
5
5
  import { LOGGER_TOKEN } from '@tramvai/tokens-common';
package/lib/index.js CHANGED
@@ -190,6 +190,10 @@ Object.defineProperty(exports, 'createToken', {
190
190
  enumerable: true,
191
191
  get: function () { return dippy.createToken; }
192
192
  });
193
+ Object.defineProperty(exports, 'declareModule', {
194
+ enumerable: true,
195
+ get: function () { return dippy.declareModule; }
196
+ });
193
197
  Object.defineProperty(exports, 'getModuleParameters', {
194
198
  enumerable: true,
195
199
  get: function () { return dippy.getModuleParameters; }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tramvai/core",
3
- "version": "2.51.2",
3
+ "version": "2.56.1",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "typings": "lib/index.d.ts",
@@ -20,10 +20,10 @@
20
20
  },
21
21
  "dependencies": {
22
22
  "@tinkoff/utils": "^2.1.2",
23
- "@tramvai/tokens-common": "2.51.2",
24
- "@tramvai/tokens-core": "2.51.2",
25
- "@tramvai/types-actions-state-context": "2.51.2",
26
- "@tinkoff/dippy": "0.8.9",
23
+ "@tramvai/tokens-common": "2.56.1",
24
+ "@tramvai/tokens-core": "2.56.1",
25
+ "@tramvai/types-actions-state-context": "2.56.1",
26
+ "@tinkoff/dippy": "0.8.10",
27
27
  "tslib": "^2.4.0"
28
28
  },
29
29
  "peerDependencies": {