@diia-inhouse/test 6.3.0 → 6.3.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/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +14 -6
package/dist/index.js
CHANGED
|
@@ -20,8 +20,8 @@ class TestKit {
|
|
|
20
20
|
constructor() {
|
|
21
21
|
this.random = new randomGenerator_1.default();
|
|
22
22
|
this.session = new sessionGenerator_1.default(this.random);
|
|
23
|
-
this.docs = new documentsGenerator_1.default();
|
|
24
23
|
this.public = new publicServiceGenerator_1.default();
|
|
24
|
+
this.docs = new documentsGenerator_1.default();
|
|
25
25
|
}
|
|
26
26
|
}
|
|
27
27
|
exports.default = TestKit;
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;AAAA,8EAAqD;AACrD,sFAA6D;AAC7D,wEAA+C;AAC/C,0EAAiD;AAEjD,+BAA8D;AAArD,iGAAA,SAAS,OAAA;AAAE,oGAAA,YAAY,OAAA;AAAE,oGAAA,YAAY,OAAA;AAE9C,MAAqB,OAAO;IACf,OAAO,CAAkB;IAEzB,MAAM,CAAiB;IAEvB,IAAI,CAAoB;IAExB,MAAM,CAAwB;IAEvC;QACI,IAAI,CAAC,MAAM,GAAG,IAAI,yBAAe,EAAE,CAAA;QACnC,IAAI,CAAC,OAAO,GAAG,IAAI,0BAAgB,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;QAChD,IAAI,CAAC,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;AAAA,8EAAqD;AACrD,sFAA6D;AAC7D,wEAA+C;AAC/C,0EAAiD;AAEjD,+BAA8D;AAArD,iGAAA,SAAS,OAAA;AAAE,oGAAA,YAAY,OAAA;AAAE,oGAAA,YAAY,OAAA;AAE9C,MAAqB,OAAO;IACf,OAAO,CAAkB;IAEzB,MAAM,CAAiB;IAEvB,IAAI,CAAoB;IAExB,MAAM,CAAwB;IAEvC;QACI,IAAI,CAAC,MAAM,GAAG,IAAI,yBAAe,EAAE,CAAA;QACnC,IAAI,CAAC,OAAO,GAAG,IAAI,0BAAgB,CAAC,IAAI,CAAC,MAAM,CAAC,CAAA;QAChD,IAAI,CAAC,MAAM,GAAG,IAAI,gCAAsB,EAAE,CAAA;QAC1C,IAAI,CAAC,IAAI,GAAG,IAAI,4BAAkB,EAAE,CAAA;IACxC,CAAC;CACJ;AAfD,0BAeC;AAED,uDAAgE;AAAvD,qIAAA,OAAO,OAAoB"}
|
package/package.json
CHANGED
|
@@ -1,12 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@diia-inhouse/test",
|
|
3
|
-
"version": "6.3.
|
|
3
|
+
"version": "6.3.1",
|
|
4
4
|
"description": "test-utils",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"author": "Diia",
|
|
7
|
-
"repository": "https://github.com/diia-open-source/be-pkg-test.git",
|
|
8
7
|
"types": "dist/types/index.d.ts",
|
|
9
|
-
"license": "SEE LICENCE IN LICENCE.md",
|
|
10
8
|
"scripts": {
|
|
11
9
|
"build": "tsc",
|
|
12
10
|
"prebuild": "rimraf dist",
|
|
@@ -24,8 +22,16 @@
|
|
|
24
22
|
"dist"
|
|
25
23
|
],
|
|
26
24
|
"exports": {
|
|
27
|
-
".":
|
|
28
|
-
|
|
25
|
+
".": {
|
|
26
|
+
"import": "./dist/index.js",
|
|
27
|
+
"require": "./dist/index.js",
|
|
28
|
+
"types": "./dist/types/index.d.ts"
|
|
29
|
+
},
|
|
30
|
+
"./mongooseMock": {
|
|
31
|
+
"import": "./dist/mongooseMock.js",
|
|
32
|
+
"require": "./dist/mongooseMock.js",
|
|
33
|
+
"types": "./dist/types/mongooseMock.d.ts"
|
|
34
|
+
}
|
|
29
35
|
},
|
|
30
36
|
"typesVersions": {
|
|
31
37
|
"*": {
|
|
@@ -93,5 +99,7 @@
|
|
|
93
99
|
"prettier": "@diia-inhouse/eslint-config/prettier",
|
|
94
100
|
"madge": {
|
|
95
101
|
"tsConfig": "./tsconfig.json"
|
|
96
|
-
}
|
|
102
|
+
},
|
|
103
|
+
"repository": "https://github.com/diia-open-source/be-pkg-test.git",
|
|
104
|
+
"license": "SEE LICENCE IN LICENCE.md"
|
|
97
105
|
}
|