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

ws-ts

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ws-ts - npm Package Compare versions

Comparing version 1.1.3 to 1.1.4

dist/commands/build/index.js

0

dist/index.js

@@ -0,0 +0,0 @@ #! /usr/bin/env node

@@ -48,2 +48,13 @@ "use strict";

let patterns = [...partial.javascriptSourcePatterns, ...this.javascriptSourcePatterns];
let tsconfig = (yield this.context.generateTsconfig());
if (tsconfig && tsconfig.include != null) {
let include_paths = tsconfig.include;
if (Array.isArray(include_paths)) {
patterns.push(...include_paths.map(p => {
if (p.endsWith('.ts'))
return p.slice(0, p.length - 3) + '.js';
return p;
}));
}
}
this.logger.debug('javascript source patterns(only valid in the outputDirectory):', patterns);

@@ -50,0 +61,0 @@ let jsAcceptor = ignore_to_acceptor_1.ignoreToNegateAcceptor(patterns);

2

package.json
{
"name": "ws-ts",
"version": "1.1.3",
"version": "1.1.4",
"description": "build|watch typescript projects(backend) with paths.",

@@ -5,0 +5,0 @@ "main": "dist/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