From 30d1c2cfcb3071baec682e6c5a889e88f5942fe0 Mon Sep 17 00:00:00 2001 From: Joe Hoyle Date: Thu, 10 Oct 2024 15:51:56 -0400 Subject: [PATCH] Remove unneeded filesize --- package.json | 2 -- 1 file changed, 2 deletions(-) diff --git a/package.json b/package.json index 818ff58..9d85899 100644 --- a/package.json +++ b/package.json @@ -18,8 +18,6 @@ "build": "sam build -u", "start": "tsc -w & nodemon --watch dist/lambda-handler.js --exec 'node dist/lambda-handler.js'", "test": "AWS_PROFILE=hmn-test S3_BUCKET=testtachyonbucket S3_REGION=us-east-1 jest", - "test-filesize": "docker run --rm -v `pwd`:/var/task -it --entrypoint='node' lambci/lambda:nodejs18.x /var/task/test-filesize/index.js", - "update-test-fixtures": "docker run --rm -v `pwd`:/var/task -it --entrypoint='node' lambci/lambda:nodejs18.x /var/task/test-filesize/index.js --update-fixtures", "build-zip": "rm lambda.zip ; cd .aws-sam/build/Tachyon && zip -r --exclude='node_modules/animated-gif-detector/test/*' ../../../lambda.zip ./node_modules/ package.json ./dist/", "upload-zip": "aws s3 --region=$npm_config_region cp ./lambda.zip s3://$npm_config_bucket/$npm_config_path", "update-function-code": "aws lambda update-function-code --region $npm_config_region --function-name $npm_config_function_name --zip-file fileb://`pwd`/lambda.zip",