@signalk/streams 1.19.0 → 2.0.0
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/package.json +1 -1
- package/s3.js +9 -1
package/package.json
CHANGED
package/s3.js
CHANGED
|
@@ -15,7 +15,15 @@
|
|
|
15
15
|
*/
|
|
16
16
|
|
|
17
17
|
var Transform = require('stream').Transform
|
|
18
|
-
|
|
18
|
+
/*
|
|
19
|
+
aws-sdk is not included in dependencies because of the
|
|
20
|
+
persistent deprecation warnings caused by its transitive
|
|
21
|
+
dependencies. This feature is not in wide use, especially
|
|
22
|
+
not in signalk-server where people encounter the scary looking
|
|
23
|
+
deprecation warnings.
|
|
24
|
+
Known to work with ^2.413.0
|
|
25
|
+
*/
|
|
26
|
+
const AWS = require('aws-sdk')
|
|
19
27
|
const debug = require('debug')('signalk:streams:s3-provider')
|
|
20
28
|
|
|
21
29
|
function S3Provider ({ bucket, prefix }) {
|