@cumulus/hello-world 18.2.2 → 18.3.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/dist/lambda.zip CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cumulus/hello-world",
3
- "version": "18.2.2",
3
+ "version": "18.3.0",
4
4
  "description": "Example task",
5
5
  "main": "index.js",
6
6
  "directories": {
@@ -13,20 +13,22 @@
13
13
  "directory": "tasks/hello-world"
14
14
  },
15
15
  "engines": {
16
- "node": ">=16.19.0"
16
+ "node": ">=20.12.2"
17
17
  },
18
18
  "scripts": {
19
19
  "build": "rm -rf dist && mkdir dist && cp -R schemas dist/ && ../../node_modules/.bin/webpack",
20
20
  "clean": "rm -rf dist",
21
21
  "package": "npm run build && (cd dist && node ../../../bin/zip.js lambda.zip index.js schemas)",
22
22
  "test": "../../node_modules/.bin/ava",
23
+ "test:ci": "../../scripts/run_package_ci_unit.sh",
23
24
  "test:coverage": "../../node_modules/.bin/nyc npm test",
24
25
  "watch": "rm -rf dist && mkdir dist && cp -R schemas dist/ && ../../node_modules/.bin/webpack --progress -w",
25
26
  "coverage": "python ../../scripts/coverage_handler/coverage.py"
26
27
  },
27
28
  "ava": {
28
29
  "serial": true,
29
- "timeout": "15m"
30
+ "timeout": "15m",
31
+ "failFast": true
30
32
  },
31
33
  "publishConfig": {
32
34
  "access": "public"
@@ -34,9 +36,9 @@
34
36
  "author": "Cumulus Authors",
35
37
  "license": "Apache-2.0",
36
38
  "dependencies": {
37
- "@cumulus/aws-client": "18.2.2",
38
- "@cumulus/common": "18.2.2",
39
- "@cumulus/cumulus-message-adapter-js": "2.0.5"
39
+ "@cumulus/aws-client": "18.3.0",
40
+ "@cumulus/common": "18.3.0",
41
+ "@cumulus/cumulus-message-adapter-js": "2.2.0"
40
42
  },
41
- "gitHead": "d2f030f1d77b6d3072cb20f84261b10a7b160620"
43
+ "gitHead": "e8731c150ac49c1bab058183a7a5d91464e1701c"
42
44
  }
package/webpack.config.js CHANGED
@@ -16,7 +16,6 @@ module.exports = {
16
16
  }
17
17
  },
18
18
  externals: [
19
- 'aws-sdk',
20
19
  'electron',
21
20
  {'formidable': 'url'}
22
21
  ],