@tramvai/types-actions-state-context 2.70.1 → 2.72.3

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.
@@ -0,0 +1,3 @@
1
+ const ACTION_PARAMETERS = '__action_parameters__';
2
+
3
+ export { ACTION_PARAMETERS };
package/lib/actions.js ADDED
@@ -0,0 +1,7 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ const ACTION_PARAMETERS = '__action_parameters__';
6
+
7
+ exports.ACTION_PARAMETERS = ACTION_PARAMETERS;
package/lib/index.es.js CHANGED
@@ -1,3 +1 @@
1
- const ACTION_PARAMETERS = '__action_parameters__';
2
-
3
- export { ACTION_PARAMETERS };
1
+ export { ACTION_PARAMETERS } from './actions.es.js';
package/lib/index.js CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- const ACTION_PARAMETERS = '__action_parameters__';
5
+ var actions = require('./actions.js');
6
6
 
7
- exports.ACTION_PARAMETERS = ACTION_PARAMETERS;
7
+
8
+
9
+ exports.ACTION_PARAMETERS = actions.ACTION_PARAMETERS;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tramvai/types-actions-state-context",
3
- "version": "2.70.1",
3
+ "version": "2.72.3",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "typings": "lib/index.d.ts",
@@ -13,15 +13,14 @@
13
13
  "url": "git@github.com:Tinkoff/tramvai.git"
14
14
  },
15
15
  "scripts": {
16
- "build": "tramvai-build --for-publish",
17
- "watch": "tsc -w",
18
- "build-for-publish": "true"
16
+ "build": "tramvai-build --forPublish --preserveModules",
17
+ "watch": "tsc -w"
19
18
  },
20
19
  "dependencies": {
21
20
  "tslib": "^2.4.0"
22
21
  },
23
22
  "peerDependencies": {
24
- "@tinkoff/dippy": "0.8.12"
23
+ "@tinkoff/dippy": "0.8.13"
25
24
  },
26
25
  "devDependencies": {},
27
26
  "license": "Apache-2.0",