New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

tt-ide-cli

Package Overview
Dependencies
Maintainers
4
Versions
133
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tt-ide-cli - npm Package Compare versions

Comparing version 0.0.14-beta2 to 0.0.14-beta3

2

lib/index.js

@@ -37,2 +37,3 @@ const _preview = require('./preview');

proxy = '',
tempDir = null
}) {

@@ -44,2 +45,3 @@ return _preview(entry, {

proxy,
tempDir,
});

@@ -46,0 +48,0 @@ }

2

lib/preview.js

@@ -37,3 +37,3 @@ // Preview project

const tempDir = path.join(__dirname, '../temp');
const tempDir = options.tempDir || path.join(__dirname, '../temp');
await fs.emptyDir(tempDir);

@@ -40,0 +40,0 @@ const { filePath } = await zipFile(entry, tempDir);

@@ -12,3 +12,8 @@ // const os = require('os');

cookieStr = cookies.map(cookie => cookie.split(';')[0]).join(';');
fs.writeFile(path.join(cookieSavedPath), cookieStr);
try {
fs.writeFile(path.join(cookieSavedPath), cookieStr);
}
catch (err) {
console.error(err);
}
}

@@ -15,0 +20,0 @@

{
"name": "tt-ide-cli",
"version": "0.0.14-beta2",
"version": "0.0.14-beta3",
"description": "Command line interface for micro app development",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

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