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

@boost/common

Package Overview
Dependencies
Maintainers
1
Versions
53
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@boost/common - npm Package Compare versions

Comparing version 1.8.0 to 1.8.1

12

CHANGELOG.md

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

### 1.8.1 - 2020-01-25
#### 🐞 Fixes
- Bump all packages to fix build issues. ([a8e8112](https://github.com/milesj/boost/commit/a8e8112))
**Note:** Version bump only for package @boost/common
## 1.8.0 - 2020-01-25

@@ -8,0 +20,0 @@

6

lib/Contract.js

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

constructor(options) {
Object.defineProperty(this, "options", {
enumerable: true,
configurable: true,
writable: true,
value: options
});
this.options = this.configure(options);

@@ -21,0 +15,0 @@ }

28

lib/Path.js

@@ -10,14 +10,4 @@ "use strict";

constructor(...parts) {
Object.defineProperty(this, "internalPath", {
enumerable: true,
configurable: true,
writable: true,
value: ''
});
Object.defineProperty(this, "stats", {
enumerable: true,
configurable: true,
writable: true,
value: null
});
this.internalPath = '';
this.stats = null;
// Always use forward slashes for better interop

@@ -163,13 +153,3 @@ this.internalPath = path_1.default.normalize(path_1.default.join(...parts.map(String))).replace(/\\/gu, Path.SEP);

exports.default = Path;
Object.defineProperty(Path, "DELIMITER", {
enumerable: true,
configurable: true,
writable: true,
value: path_1.default.delimiter
});
Object.defineProperty(Path, "SEP", {
enumerable: true,
configurable: true,
writable: true,
value: '/'
});
Path.DELIMITER = path_1.default.delimiter;
Path.SEP = '/';

@@ -11,8 +11,3 @@ "use strict";

constructor() {
Object.defineProperty(this, "lookups", {
enumerable: true,
configurable: true,
writable: true,
value: []
});
this.lookups = [];
}

@@ -19,0 +14,0 @@ /**

{
"name": "@boost/common",
"version": "1.8.0",
"version": "1.8.1",
"description": "Common utilities for Boost applications.",

@@ -13,2 +13,3 @@ "keywords": [

"types": "./lib/index.d.ts",
"nonce": "1579986563745",
"engines": {

@@ -23,3 +24,3 @@ "node": ">=8.9.0"

"dependencies": {
"@boost/internal": "^1.0.2",
"@boost/internal": "^1.0.3",
"js-yaml": "^3.13.1",

@@ -31,3 +32,3 @@ "json5": "^2.1.1",

"devDependencies": {
"@boost/test-utils": "^1.4.0"
"@boost/test-utils": "^1.4.1"
},

@@ -38,3 +39,3 @@ "funding": {

},
"gitHead": "06877f461f77bd007a1d2e800d25a9f27b275e65"
"gitHead": "415de2e011ad6252dde167d5e4c8a93d3719ea83"
}
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