Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

aws-lambda-libreoffice

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aws-lambda-libreoffice - npm Package Compare versions

Comparing version 0.1.3 to 0.1.4

3

package.json
{
"name": "aws-lambda-libreoffice",
"version": "0.1.3",
"version": "0.1.4",
"description": "85 MB LibreOffice to fit inside AWS Lambda compressed with Brotli",

@@ -25,2 +25,3 @@ "license": "MIT",

"dependencies": {
"del": "^3.0.0",
"tar-fs": "^1.16.2"

@@ -27,0 +28,0 @@ },

const fs = require('fs');
const path = require('path');
const tar = require('tar-fs');
const del = require('del');
const defaultArgs = require('./args');

@@ -17,3 +18,5 @@

if (file.endsWith('.tmp') === true || file.startsWith('OSL_PIPE')) {
fs.unlinkSync(`/tmp/${file}`);
try {
del.sync([`/tmp/${file}`, `/tmp/${file}/*`], {force: true});
} catch (error) {}
}

@@ -20,0 +23,0 @@ }

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc