@boost/common
Advanced tools
Comparing version 1.8.0 to 1.8.1
@@ -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 @@ |
@@ -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 @@ } |
@@ -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" | ||
} |
39655
683
Updated@boost/internal@^1.0.3