@quatrain/cloudwrapper 1.0.0 → 1.1.5
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/CloudWrapper.d.ts +3 -0
- package/lib/CloudWrapper.js +7 -0
- package/lib/index.d.ts +4 -0
- package/lib/index.js +7 -0
- package/package.json +8 -7
package/lib/index.d.ts
ADDED
package/lib/index.js
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CloudWrapper = exports.AbstractCloudWrapper = void 0;
|
|
4
|
+
const AbstractCloudWrapper_1 = require("./AbstractCloudWrapper");
|
|
5
|
+
Object.defineProperty(exports, "AbstractCloudWrapper", { enumerable: true, get: function () { return AbstractCloudWrapper_1.AbstractCloudWrapper; } });
|
|
6
|
+
const CloudWrapper_1 = require("./CloudWrapper");
|
|
7
|
+
Object.defineProperty(exports, "CloudWrapper", { enumerable: true, get: function () { return CloudWrapper_1.CloudWrapper; } });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quatrain/cloudwrapper",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.5",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Cloud wrappers commons",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -11,13 +11,13 @@
|
|
|
11
11
|
],
|
|
12
12
|
"author": "Quatrain Développement SAS <developers@quatrain.com>",
|
|
13
13
|
"peerDependencies": {
|
|
14
|
-
"@quatrain/
|
|
14
|
+
"@quatrain/backend": "^1.1.5",
|
|
15
|
+
"@quatrain/core": "^1.1.5"
|
|
15
16
|
},
|
|
16
17
|
"devDependencies": {
|
|
17
|
-
"@faker-js/faker": "^7.6.0",
|
|
18
|
-
"@firebase/rules-unit-testing": "^2.0.7",
|
|
19
18
|
"@tsconfig/recommended": "^1.0.1",
|
|
20
19
|
"@types/jest": "^27.0.3",
|
|
20
|
+
"@types/node": "^22.10.1",
|
|
21
21
|
"jest": "^27.4.7",
|
|
22
22
|
"jest-node-exports-resolver": "^1.1.6",
|
|
23
23
|
"jest-serial-runner": "^1.2.1",
|
|
@@ -30,8 +30,9 @@
|
|
|
30
30
|
"pretest": "tsc",
|
|
31
31
|
"test": "clear && firebase emulators:exec 'jest -i --verbose --silent=false'",
|
|
32
32
|
"test-ci": "jest --runInBand",
|
|
33
|
-
"build": "tsc
|
|
34
|
-
"
|
|
35
|
-
"
|
|
33
|
+
"build": "tsc",
|
|
34
|
+
"wbuild": "tsc --watch",
|
|
35
|
+
"bump-to": "yarn version",
|
|
36
|
+
"publish": "yarn build && yarn npm publish --access public"
|
|
36
37
|
}
|
|
37
38
|
}
|