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

ng-lint-staged

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ng-lint-staged - npm Package Compare versions

Comparing version 0.1.3 to 0.1.4

26

ng-lint-staged.js

@@ -37,16 +37,24 @@ #!/usr/bin/env node

const npm = spawn('npm', [
'run',
script,
'--',
...scriptArgs,
...files,
]);
const npm = spawn(
'npm',
[
'run',
script,
'--',
...scriptArgs,
...files,
],
{
cwd: process.cwd(),
env: process.env,
shell: true,
}
);
npm.stdout.on('data', (data) => {
console.log(data);
console.log(data.toString());
});
npm.stderr.on('data', (data) => {
console.error(data);
console.error(data.toString());
});

@@ -53,0 +61,0 @@

{
"name": "ng-lint-staged",
"version": "0.1.3",
"version": "0.1.4",
"description": "Shim to run lint-staged with ng-lint",

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

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