@storecraft/storage-s3-compatible 1.0.2 → 1.0.4

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/adapter.js CHANGED
@@ -29,7 +29,8 @@ const infer_content_type = (name) => {
29
29
  */
30
30
 
31
31
  /**
32
- * The base S3 compatible class
32
+ * @description The base S3 compatible class
33
+ *
33
34
  * @typedef {import('@storecraft/core/storage').storage_driver} storage
34
35
  *
35
36
  * @implements {storage}
package/jsconfig.json CHANGED
@@ -4,6 +4,7 @@
4
4
  "moduleResolution": "NodeNext",
5
5
  "module": "NodeNext",
6
6
  "composite": true,
7
+ "maxNodeModuleJsDepth": 10
7
8
  },
8
9
  "include": [
9
10
  "*",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storecraft/storage-s3-compatible",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "description": "Official S3-Compatible Storage adapter for storecraft",
5
5
  "license": "MIT",
6
6
  "author": "Tomer Shalev (https://github.com/store-craft)",
@@ -18,7 +18,8 @@
18
18
  ],
19
19
  "scripts": {
20
20
  "storage-s3-compatible:test": "uvu -c",
21
- "storage-s3-compatible:publish": "npm publish --access public"
21
+ "test": "npm run storage-s3-compatible:test",
22
+ "prepublishOnly": "npm version patch --force"
22
23
  },
23
24
  "type": "module",
24
25
  "main": "adapter.js",