Skip to content

Commit

Permalink
Update gitignore to remove yarn.lock
Browse files Browse the repository at this point in the history
  • Loading branch information
akfreas committed Nov 22, 2023
1 parent 8fee6f7 commit 0acecb6
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9,038 deletions.
5 changes: 1 addition & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,6 @@ refresh_token.txt
token.json
**/recordings
.env.offline
<<<<<<< Updated upstream:tangential/.gitignore
.env*
=======
*/.DS_Store
.DS_Store
>>>>>>> Stashed changes:.gitignore
**/yarn.lock
10 changes: 5 additions & 5 deletions tangential/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"main": "index.js",
"license": "MIT",
"dependencies": {
"@akfreas/tangential-core": "^1.0",
"@akfreas/tangential-core": "^1.0.18",
"@aws-sdk/client-sqs": "^3.438.0",
"aws-lambda": "^1.0.7",
"axios": "^1.6.2",
Expand All @@ -14,14 +14,13 @@
"qs": "^6.11.2"
},
"devDependencies": {
"eslint": "^8.53.0",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"serverless-offline-sqs": "^8.0.0",
"@types/jest": "^29.5.8",
"@types/luxon": "^3.3.3",
"@types/node": "^20.8.10",
"@types/qs": "^6.9.9",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.53.0",
"eslint-plugin-jest": "^27.6.0",
"http-proxy-agent": "^7.0.0",
"https-proxy-agent": "^7.0.2",
Expand All @@ -31,6 +30,7 @@
"serverless-domain-manager": "^7.1.2",
"serverless-dotenv-plugin": "^6.0.0",
"serverless-offline": "^13.2.0",
"serverless-offline-sqs": "^8.0.0",
"serverless-plugin-typescript": "^2.1.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,8 @@ export async function handleEpicAnalysisMessage(record: SQSRecord) {
);
await storeEpicReport(result);

// Write the epic report to disk
await writeFile(`Epic-${key}.json`, JSON.stringify(result, null, 2));

await sendUpdateProjectAnalysisStatusQueueMessage(key, buildId, auth);
}
Loading

0 comments on commit 0acecb6

Please sign in to comment.