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

gulp-tsconfig-update

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-tsconfig-update - npm Package Compare versions

Comparing version 1.0.8-0 to 1.0.8-1

2

lib/Index.js

@@ -47,3 +47,3 @@ ///<reference path="../typings/bundle.d.ts"/>

tsConfig.files = tsFiles.map(function (file) {
return file.path.replace(file.cwd, ".").replace("\\", "/");
return file.path.replace(file.cwd, ".").replace(/\\/g, "/");
});

@@ -50,0 +50,0 @@ fs.writeFileSync(tsConfigPath, JSON.stringify(tsConfig, null, 4), "utf-8");

{
"name": "gulp-tsconfig-update",
"version": "1.0.8-0",
"version": "1.0.8-1",
"description": "A gulp plugin to update `files` property in tsconfig.json by `gulp.src`.",

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

@@ -60,3 +60,3 @@ ///<reference path="../typings/bundle.d.ts"/>

tsConfig.files = tsFiles.map((file)=> {
return file.path.replace(file.cwd, ".").replace("\\", "/");
return file.path.replace(file.cwd, ".").replace(/\\/g,"/");
});

@@ -63,0 +63,0 @@ fs.writeFileSync(tsConfigPath, JSON.stringify(tsConfig, null, 4), "utf-8");

Sorry, the diff of this file is not supported yet

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