@quatrain/cloudwrapper 1.1.24 → 1.1.26
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/README.md +4 -0
- package/package.json +10 -5
package/README.md
CHANGED
|
@@ -23,6 +23,10 @@ npm install @quatrain/cloudwrapper-firebase
|
|
|
23
23
|
|
|
24
24
|
The wrapper acts as a macro. When you configure and register it, it automatically creates and registers the underlying `@quatrain/backend`, `@quatrain/storage`, and `@quatrain/auth` adapters with the respective registries.
|
|
25
25
|
|
|
26
|
+
## Documentation
|
|
27
|
+
|
|
28
|
+
For concrete examples and usage guides, please refer to the [How-To Guide](HOWTO.md).
|
|
29
|
+
|
|
26
30
|
## License
|
|
27
31
|
|
|
28
32
|
AGPL-3.0-only
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quatrain/cloudwrapper",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.26",
|
|
4
4
|
"license": "AGPL-3.0-only",
|
|
5
5
|
"description": "Cloud wrappers commons",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -12,10 +12,15 @@
|
|
|
12
12
|
"dist/",
|
|
13
13
|
"README.md"
|
|
14
14
|
],
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "git+https://github.com/Quatrain/Core.git",
|
|
18
|
+
"directory": "packages/cloudwrapper"
|
|
19
|
+
},
|
|
15
20
|
"author": "Quatrain Développement SAS <developers@quatrain.com>",
|
|
16
21
|
"peerDependencies": {
|
|
17
|
-
"@quatrain/backend": "^1.1.
|
|
18
|
-
"@quatrain/core": "^1.1.
|
|
22
|
+
"@quatrain/backend": "^1.1.36",
|
|
23
|
+
"@quatrain/core": "^1.1.50"
|
|
19
24
|
},
|
|
20
25
|
"devDependencies": {
|
|
21
26
|
"@tsconfig/recommended": "^1.0.1",
|
|
@@ -36,8 +41,8 @@
|
|
|
36
41
|
"bump-to": "yarn version"
|
|
37
42
|
},
|
|
38
43
|
"dependencies": {
|
|
39
|
-
"@quatrain/backend": "^1.1.
|
|
40
|
-
"@quatrain/core": "^1.1.
|
|
44
|
+
"@quatrain/backend": "^1.1.36",
|
|
45
|
+
"@quatrain/core": "^1.1.50",
|
|
41
46
|
"@quatrain/storage": "^1.1"
|
|
42
47
|
}
|
|
43
48
|
}
|