Skip to content

Commit

Permalink
update for 25.4
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastientromp committed Feb 17, 2023
1 parent 9bcc7b2 commit 20b70c5
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 53 deletions.
62 changes: 15 additions & 47 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"build": "npm audit fix && npm run lint && webpack --env.buildEnv=prod --color",
"package": "sam package --template-file template.yaml --s3-bucket com.zerotoheroes.artifact --output-template-file template.packaged.yaml",
"deploy": "sam deploy --template-file template.packaged.yaml --stack-name SyncDataStack --capabilities CAPABILITY_IAM",
"clean": "rm -rf -v dist/*"
"clean": "rm -rf -v dist/*",
"full-deploy": "npm run build && npm run package && npm run deploy"
},
"repository": {},
"author": "",
Expand All @@ -28,7 +29,7 @@
"cross-fetch": "^3.1.5",
"elementtree": "^0.1.7",
"immutable": "3.8.2",
"jszip": "^3.7.1",
"jszip": "^3.10.1",
"mysql": "^2.17.1",
"ngx-logger": "3.3.11",
"node-fetch": "^2.6.7",
Expand Down
2 changes: 1 addition & 1 deletion src/extractor/vs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const extractViciousSyndicateStats = async (
prefs: Preferences,
): Promise<void> => {
// return;
// if (+message.buildNumber > 158725) {
// if (+message.buildNumber > 163976) {
// return;
// }

Expand Down
6 changes: 3 additions & 3 deletions src/trigger-sync-reprocess.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ const sns = new Sns();
// [1]: https://aws.amazon.com/blogs/compute/node-js-8-10-runtime-now-available-in-aws-lambda/
export default async (event): Promise<any> => {
const mysql = await getConnection();
const startId = 272988105;
const endId = 273023190;
const buildNumber = 158725;
const startId = 304424215;
const endId = 305745345;
const buildNumber = 165029;
const query = `
SELECT * FROM replay_summary
where gameMode = 'ranked'
Expand Down

0 comments on commit 20b70c5

Please sign in to comment.