Skip to content

Commit

Permalink
reverted package.json. Also fixed a bug in discover-granules-workflow…
Browse files Browse the repository at this point in the history
….asl.json #358
  • Loading branch information
Kris Stanton committed May 17, 2024
1 parent e208cb5 commit ab81393
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@
"ResultWriter": {
"Resource": "arn:aws:states:::s3:putObject",
"Parameters": {
"Bucket.$": "$.[0].cumulus_meta.system_bucket",
"Bucket.$": "$[0].cumulus_meta.system_bucket",
"Prefix": "mapRun"
}
},
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"fix:lint": "eslint src --ext .ts --fix",
"test": "echo 'skipping: run-s build test:*'",
"test:lint": "echo 'skipping: eslint src --ext .ts'",
"test:prettier": "echo 'skipping: prettier \"src/**/*.ts\" --check'",
"test:unit": "echo 'skipping: nyc --silent ava --node-arguments SQ--trace-warningsSQ'",
"test": "run-s build test:*",
"test:lint": "eslint src --ext .ts",
"test:prettier": "prettier \"src/**/*.ts\" --check",
"test:unit": "nyc --silent ava --node-arguments '--trace-warnings'",
"check-cli": "run-s test diff-integration-tests check-integration-tests",
"check-integration-tests": "run-s check-integration-test:*",
"diff-integration-tests": "mkdir -p diff && rm -rf diff/test && cp -r test diff/test && rm -rf diff/test/test-*/.git && cd diff && git init --quiet && git add -A && git commit --quiet --no-verify --allow-empty -m 'WIP' && echo '\\n\\nCommitted most recent integration test output in the \"diff\" directory. Review the changes with \"cd diff && git diff HEAD\" or your preferred git diff viewer.'",
Expand All @@ -48,7 +48,7 @@
"reset-hard": "git clean -dfx && git reset --hard && yarn",
"prepare-release": "run-s reset-hard test cov:check doc:html version doc:publish",
"lambda:install": "yarn install --production --no-bin-links --modules-folder ${PWD}/${npm_package_config_lambda_archive_dir}/node_modules && rm -rf ${PWD}/${npm_package_config_lambda_archive_dir}/node_modules/aws-sdk && rm -rf ${PWD}/${npm_package_config_lambda_archive_dir}/node_modules/'@types'",
"lambda:archive-exploded": "echo 'skipping: run-s build test lambda:install'",
"lambda:archive-exploded": "run-s build test lambda:install",
"tf:lambda:archive-exploded": "yarn lambda:archive-exploded >&2 && echo { '\"'dir'\"': '\"'${PWD}/${npm_package_config_lambda_archive_dir}'\"' }"
},
"engines": {
Expand Down

0 comments on commit ab81393

Please sign in to comment.