@evlop/commons 1.0.72 → 1.0.73

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,16 +7,16 @@ export declare const setContext: (context?: {}) => {
7
7
  };
8
8
  export declare const addContext: (name: any, data?: {}) => {
9
9
  type: string;
10
- name: any;
10
+ name: string;
11
11
  data: {};
12
12
  };
13
13
  export declare const resetContext: (name: any) => {
14
14
  type: string;
15
- name: any;
15
+ name: string;
16
16
  };
17
17
  export declare const updateContext: (name: any, data?: {}) => {
18
18
  type: string;
19
- name: any;
19
+ name: string;
20
20
  data: {};
21
21
  };
22
22
  declare const context: (state: any, action: any) => any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@evlop/commons",
3
- "version": "1.0.72",
3
+ "version": "1.0.73",
4
4
  "description": "",
5
5
  "main": "dist/main.js",
6
6
  "peerDependencies": {
@@ -27,12 +27,12 @@
27
27
  "moment": "^2.29.1"
28
28
  },
29
29
  "scripts": {
30
- "prepack": "tsc",
30
+ "prepack": " rm -rf dist && tsc",
31
31
  "docs": "jsdoc -c jsdoc.json",
32
32
  "dev": "tsc --watch",
33
33
  "test": "mocha -r ts-node/register src/**/*.test.ts",
34
34
  "build": "tsc",
35
- "build-a": "site pack"
35
+ "generate-icon-names": "ts-node ./generateIcons.ts"
36
36
  },
37
37
  "files": [
38
38
  "dist/*"
@@ -46,8 +46,12 @@
46
46
  "@types/node": "^15.0.2",
47
47
  "@types/react": "^16.14.0",
48
48
  "chai": "^4.3.4",
49
+ "change-case": "^4.1.2",
49
50
  "jest": "^26.6.3",
51
+ "lodash": "^4.17.21",
50
52
  "mocha": "^8.4.0",
53
+ "react-native-vector-icons": "^9.0.0",
54
+ "ts-node": "^10.4.0",
51
55
  "typescript": "^4.1.3"
52
56
  }
53
57
  }