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

baset-core

Package Overview
Dependencies
Maintainers
1
Versions
31
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

baset-core - npm Package Compare versions

Comparing version 0.2.0 to 0.2.1

11

CHANGELOG.md

@@ -6,2 +6,13 @@ # Change Log

<a name="0.2.1"></a>
## [0.2.1](https://github.com/Igmat/baset/compare/v0.2.0...v0.2.1) (2018-01-18)
### Bug Fixes
* **Core:** Removing temp files after accepting new baseline ([cb13be3](https://github.com/Igmat/baset/commit/cb13be3))
<a name="0.2.0"></a>

@@ -8,0 +19,0 @@ # [0.2.0](https://github.com/Igmat/baset/compare/v0.1.0...v0.2.0) (2018-01-17)

5

dist/index.js

@@ -31,3 +31,6 @@ "use strict";

const filePath = file.replace(/.tmp$/, '');
fs.writeFile(filePath, baseline, err => console.log(err || `Baseline ${filePath} is written.`));
fs.writeFile(filePath, baseline, err => {
console.log(err || `Baseline ${filePath} is written.`);
fs.unlinkSync(file);
});
});

@@ -34,0 +37,0 @@ }

2

package.json
{
"name": "baset-core",
"version": "0.2.0",
"version": "0.2.1",
"description": "",

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

@@ -34,4 +34,7 @@ import * as fs from 'fs';

baseline,
err => console.log(err || `Baseline ${filePath} is written.`));
err => {
console.log(err || `Baseline ${filePath} is written.`);
fs.unlinkSync(file);
});
});
}

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