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