Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@ot-builder/common-impl

Package Overview
Dependencies
Maintainers
1
Versions
78
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ot-builder/common-impl - npm Package Compare versions

Comparing version
0.7.0
to
0.10.5
+2
lib/path-map/index.test.d.ts
export {};
//# sourceMappingURL=index.test.d.ts.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const index_1 = require("./index");
test("Path map test", () => {
const map = new index_1.PathMapImpl();
map.set([1, 2, 3], 1);
map.set([2, 3, 4], 2);
expect(map.get([])).toBe(undefined);
expect(map.get([1, 2, 3])).toBe(1);
expect(map.get([1, 2])).toBe(undefined);
expect(map.get([1, 2, 3, 4])).toBe(undefined);
expect(map.get([2, 3, 4])).toBe(2);
});
//# sourceMappingURL=index.test.js.map
+7
-38

@@ -5,11 +5,11 @@ {

{
"date": "Sun, 29 Mar 2020 00:13:11 GMT",
"tag": "@ot-builder/common-impl_v0.6.0",
"version": "0.6.0",
"date": "Mon, 20 Apr 2020 06:40:47 GMT",
"tag": "@ot-builder/common-impl_v0.10.5",
"version": "0.10.5",
"comments": {
"patch": [
{
"comment": "Remove unnecessary newline in .npmignore",
"author": "belleve@typeof.net",
"commit": "d7e6db36e4fae5c3ed2a643ea8b35bc986674a95",
"comment": "Force republish -- try 2",
"author": "otbbuilder-dev@users.noreply.github.com",
"commit": "b840fb34be36255312dc32dae4573d9cdf4fd568",
"package": "@ot-builder/common-impl"

@@ -19,35 +19,4 @@ }

}
},
{
"date": "Fri, 17 Jan 2020 05:07:07 GMT",
"tag": "@ot-builder/common-impl_v0.3.0",
"version": "0.3.0",
"comments": {
"minor": [
{
"comment": "Add documentation; Refactor some API exports",
"author": "belleve@typeof.net",
"commit": "563ded6f3217c64388e623b5538284a59f5776ed"
}
],
"patch": [
{
"comment": "Add production build",
"author": "belleve@typeof.net",
"commit": "a1691f4c50b69a4d2cca3c3e58431155c845a1da"
},
{
"comment": "Fix all CRLF",
"author": "belleve@typeof.net",
"commit": "b62d3ac2cac20f161c931c4a466c1f6c97e00451"
},
{
"comment": "Move tslint -> eslint",
"author": "belleve@typeof.net",
"commit": "f41ebb9ed11f836db151a0974c7d1f99d0ab1903"
}
]
}
}
]
}
}
# Change Log - @ot-builder/common-impl
This log was last generated on Sun, 29 Mar 2020 00:13:11 GMT and should not be manually modified.
This log was last generated on Mon, 20 Apr 2020 06:40:47 GMT and should not be manually modified.
## 0.6.0
Sun, 29 Mar 2020 00:13:11 GMT
<!-- Start content -->
### Patches
## 0.10.5
- Remove unnecessary newline in .npmignore (belleve@typeof.net)
## 0.3.0
Fri, 17 Jan 2020 05:07:07 GMT
Mon, 20 Apr 2020 06:40:47 GMT
### Minor changes
- Add documentation; Refactor some API exports (belleve@typeof.net)
### Patches
- Add production build (belleve@typeof.net)
- Fix all CRLF (belleve@typeof.net)
- Move tslint -> eslint (belleve@typeof.net)
- Force republish -- try 2 (otbbuilder-dev@users.noreply.github.com)

@@ -55,3 +55,3 @@ "use strict";

if (!g)
throw new RangeError(`Missing Item in ${this.sourceKind}`);
throw new RangeError(`Missing Item #${gid} in ${this.sourceKind}`);
else

@@ -58,0 +58,0 @@ return g;

{
"name": "@ot-builder/common-impl",
"version": "0.7.0",
"version": "0.10.5",
"scripts": {

@@ -20,3 +20,3 @@ "build": "tsc -b ./tsconfig.package.json",

"dependencies": {
"@ot-builder/prelude": "0.7.0",
"@ot-builder/prelude": "0.10.5",
"tslib": "^1.9.3"

@@ -23,0 +23,0 @@ },