@cumulus/test-processing 20.1.1 → 20.1.2

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/dist/lambda.zip CHANGED
Binary file
package/index.js CHANGED
@@ -51,13 +51,13 @@ async function fakeProcessing(event) {
51
51
  input.granules = await uploadFakeBrowse(input);
52
52
  }
53
53
 
54
- const outputFiles = await generateCmrFilesForGranules(
55
- input.granules,
54
+ const outputFiles = await generateCmrFilesForGranules({
55
+ granules: input.granules,
56
56
  collection,
57
- event.config.bucket,
58
- event.config.cmrMetadataFormat,
59
- event.config.additionalUrls
60
- );
57
+ bucket: event.config.bucket,
58
+ cmrMetadataFormat: event.config.cmrMetadataFormat,
59
+ additionalUrls: event.config.additionalUrls,
60
+ });
61
61
  return { files: outputFiles, granules: input.granules };
62
62
  }
63
63
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cumulus/test-processing",
3
- "version": "20.1.1",
3
+ "version": "20.1.2",
4
4
  "description": "Fake processing task used for integration tests",
5
5
  "main": "index.js",
6
6
  "homepage": "https://github.com/nasa/cumulus/tree/master/tasks/test-processing",
@@ -21,9 +21,9 @@
21
21
  "author": "Cumulus Authors",
22
22
  "license": "Apache-2.0",
23
23
  "dependencies": {
24
- "@cumulus/aws-client": "20.1.1",
24
+ "@cumulus/aws-client": "20.1.2",
25
25
  "@cumulus/cumulus-message-adapter-js": "2.3.0",
26
- "@cumulus/integration-tests": "20.1.1"
26
+ "@cumulus/integration-tests": "20.1.2"
27
27
  },
28
- "gitHead": "dde772911627dd96b944a8eca65fdff388848ec6"
28
+ "gitHead": "051ef1428ac21105fd55370d15e26009f4b49f57"
29
29
  }
package/webpack.config.js CHANGED
@@ -4,6 +4,7 @@ const { IgnorePlugin } = require('webpack');
4
4
  const root = path.resolve(__dirname);
5
5
 
6
6
  const ignoredPackages = [
7
+ 'cloudflare:sockets',
7
8
  'better-sqlite3',
8
9
  'mssql',
9
10
  'mssql/lib/base',