r2-utils-js
Advanced tools
Comparing version 1.0.23 to 1.0.24
# Next | ||
Git diff: | ||
* https://github.com/readium/r2-utils-js/compare/v1.0.23...develop | ||
* https://github.com/readium/r2-utils-js/compare/v1.0.24...develop | ||
@@ -9,2 +9,20 @@ Changes: | ||
# 1.0.24 | ||
> Build environment: NodeJS `14.15.1`, NPM `6.14.9` | ||
Changes: | ||
* NPM package updates | ||
* Fix: added missing Number converter in XML declarative parser (similar to TA-JSON) | ||
Git revision info: | ||
* https://unpkg.com/r2-utils-js@1.0.24/dist/gitrev.json | ||
* https://github.com/edrlab/r2-utils-js-dist/blob/v1.0.24/dist/gitrev.json | ||
Git commit history: | ||
* https://github.com/readium/r2-utils-js/commits/v1.0.24 | ||
Git diff: | ||
* https://github.com/readium/r2-utils-js/compare/v1.0.23...v1.0.24 | ||
# 1.0.23 | ||
@@ -11,0 +29,0 @@ |
@@ -7,3 +7,2 @@ /// <reference types="node" /> | ||
deserialize(value: string): Buffer; | ||
collapseArrayWithSingleItem(): boolean; | ||
} |
@@ -14,5 +14,2 @@ "use strict"; | ||
}; | ||
BufferConverter.prototype.collapseArrayWithSingleItem = function () { | ||
return false; | ||
}; | ||
return BufferConverter; | ||
@@ -19,0 +16,0 @@ }()); |
@@ -7,4 +7,6 @@ "use strict"; | ||
exports.propertyConverters = new Map(); | ||
exports.propertyConverters.set(Buffer, new buffer_converter_1.BufferConverter()); | ||
if (typeof window === "undefined") { | ||
exports.propertyConverters.set(Buffer, new buffer_converter_1.BufferConverter()); | ||
} | ||
exports.propertyConverters.set(Date, new date_converter_1.DateConverter()); | ||
//# sourceMappingURL=converter.js.map |
@@ -5,3 +5,2 @@ import { IPropertyConverter } from "./converter"; | ||
deserialize(value: string): Date | undefined; | ||
collapseArrayWithSingleItem(): boolean; | ||
} |
@@ -14,5 +14,2 @@ "use strict"; | ||
}; | ||
DateConverter.prototype.collapseArrayWithSingleItem = function () { | ||
return false; | ||
}; | ||
return DateConverter; | ||
@@ -19,0 +16,0 @@ }()); |
export * from "./converter"; | ||
export * from "./buffer-converter"; | ||
export * from "./date-converter"; | ||
export * from "./number-converter"; |
@@ -7,2 +7,3 @@ "use strict"; | ||
tslib_1.__exportStar(require("./date-converter"), exports); | ||
tslib_1.__exportStar(require("./number-converter"), exports); | ||
//# sourceMappingURL=index.js.map |
@@ -7,3 +7,2 @@ /// <reference types="node" /> | ||
deserialize(value: string): Buffer; | ||
collapseArrayWithSingleItem(): boolean; | ||
} |
@@ -14,7 +14,4 @@ "use strict"; | ||
} | ||
collapseArrayWithSingleItem() { | ||
return false; | ||
} | ||
} | ||
exports.BufferConverter = BufferConverter; | ||
//# sourceMappingURL=buffer-converter.js.map |
@@ -7,4 +7,6 @@ "use strict"; | ||
exports.propertyConverters = new Map(); | ||
exports.propertyConverters.set(Buffer, new buffer_converter_1.BufferConverter()); | ||
if (typeof window === "undefined") { | ||
exports.propertyConverters.set(Buffer, new buffer_converter_1.BufferConverter()); | ||
} | ||
exports.propertyConverters.set(Date, new date_converter_1.DateConverter()); | ||
//# sourceMappingURL=converter.js.map |
@@ -5,3 +5,2 @@ import { IPropertyConverter } from "./converter"; | ||
deserialize(value: string): Date | undefined; | ||
collapseArrayWithSingleItem(): boolean; | ||
} |
@@ -12,7 +12,4 @@ "use strict"; | ||
} | ||
collapseArrayWithSingleItem() { | ||
return false; | ||
} | ||
} | ||
exports.DateConverter = DateConverter; | ||
//# sourceMappingURL=date-converter.js.map |
export * from "./converter"; | ||
export * from "./buffer-converter"; | ||
export * from "./date-converter"; | ||
export * from "./number-converter"; |
@@ -7,2 +7,3 @@ "use strict"; | ||
tslib_1.__exportStar(require("./date-converter"), exports); | ||
tslib_1.__exportStar(require("./number-converter"), exports); | ||
//# sourceMappingURL=index.js.map |
@@ -7,3 +7,2 @@ /// <reference types="node" /> | ||
deserialize(value: string): Buffer; | ||
collapseArrayWithSingleItem(): boolean; | ||
} |
@@ -14,7 +14,4 @@ "use strict"; | ||
} | ||
collapseArrayWithSingleItem() { | ||
return false; | ||
} | ||
} | ||
exports.BufferConverter = BufferConverter; | ||
//# sourceMappingURL=buffer-converter.js.map |
@@ -7,4 +7,6 @@ "use strict"; | ||
exports.propertyConverters = new Map(); | ||
exports.propertyConverters.set(Buffer, new buffer_converter_1.BufferConverter()); | ||
if (typeof window === "undefined") { | ||
exports.propertyConverters.set(Buffer, new buffer_converter_1.BufferConverter()); | ||
} | ||
exports.propertyConverters.set(Date, new date_converter_1.DateConverter()); | ||
//# sourceMappingURL=converter.js.map |
@@ -5,3 +5,2 @@ import { IPropertyConverter } from "./converter"; | ||
deserialize(value: string): Date | undefined; | ||
collapseArrayWithSingleItem(): boolean; | ||
} |
@@ -12,7 +12,4 @@ "use strict"; | ||
} | ||
collapseArrayWithSingleItem() { | ||
return false; | ||
} | ||
} | ||
exports.DateConverter = DateConverter; | ||
//# sourceMappingURL=date-converter.js.map |
export * from "./converter"; | ||
export * from "./buffer-converter"; | ||
export * from "./date-converter"; | ||
export * from "./number-converter"; |
@@ -7,2 +7,3 @@ "use strict"; | ||
tslib_1.__exportStar(require("./date-converter"), exports); | ||
tslib_1.__exportStar(require("./number-converter"), exports); | ||
//# sourceMappingURL=index.js.map |
@@ -7,3 +7,2 @@ /// <reference types="node" /> | ||
deserialize(value: string): Buffer; | ||
collapseArrayWithSingleItem(): boolean; | ||
} |
@@ -14,7 +14,4 @@ "use strict"; | ||
} | ||
collapseArrayWithSingleItem() { | ||
return false; | ||
} | ||
} | ||
exports.BufferConverter = BufferConverter; | ||
//# sourceMappingURL=buffer-converter.js.map |
@@ -7,4 +7,6 @@ "use strict"; | ||
exports.propertyConverters = new Map(); | ||
exports.propertyConverters.set(Buffer, new buffer_converter_1.BufferConverter()); | ||
if (typeof window === "undefined") { | ||
exports.propertyConverters.set(Buffer, new buffer_converter_1.BufferConverter()); | ||
} | ||
exports.propertyConverters.set(Date, new date_converter_1.DateConverter()); | ||
//# sourceMappingURL=converter.js.map |
@@ -5,3 +5,2 @@ import { IPropertyConverter } from "./converter"; | ||
deserialize(value: string): Date | undefined; | ||
collapseArrayWithSingleItem(): boolean; | ||
} |
@@ -12,7 +12,4 @@ "use strict"; | ||
} | ||
collapseArrayWithSingleItem() { | ||
return false; | ||
} | ||
} | ||
exports.DateConverter = DateConverter; | ||
//# sourceMappingURL=date-converter.js.map |
export * from "./converter"; | ||
export * from "./buffer-converter"; | ||
export * from "./date-converter"; | ||
export * from "./number-converter"; |
@@ -7,2 +7,3 @@ "use strict"; | ||
tslib_1.__exportStar(require("./date-converter"), exports); | ||
tslib_1.__exportStar(require("./number-converter"), exports); | ||
//# sourceMappingURL=index.js.map |
{ | ||
"node": "12.18.2", | ||
"npm": "6.14.5", | ||
"short": "51670cf", | ||
"long": "51670cfecb630b93edacad60b21ca9439c0cfc7e", | ||
"node": "14.15.1", | ||
"npm": "6.14.9", | ||
"short": "d27f6cb", | ||
"long": "d27f6cbb027be6df75c148a286902947da89109a", | ||
"branch": "develop", | ||
"date": "2020-07-03T19:37:02.000Z", | ||
"urlHistory": "https://github.com/readium/r2-utils-js/commits/51670cfecb630b93edacad60b21ca9439c0cfc7e", | ||
"urlDiff": "https://github.com/readium/r2-utils-js/compare/51670cfecb630b93edacad60b21ca9439c0cfc7e...develop" | ||
"date": "2020-12-21T08:27:27.000Z", | ||
"urlHistory": "https://github.com/readium/r2-utils-js/commits/d27f6cbb027be6df75c148a286902947da89109a", | ||
"urlDiff": "https://github.com/readium/r2-utils-js/compare/d27f6cbb027be6df75c148a286902947da89109a...develop" | ||
} |
{ | ||
"name": "r2-utils-js", | ||
"version": "1.0.23", | ||
"version": "1.0.24", | ||
"description": "Readium 2 'utils' for NodeJS (TypeScript)", | ||
@@ -49,12 +49,12 @@ "keywords": [ | ||
"dependencies": { | ||
"debug": "^4.1.1", | ||
"debug": "^4.3.1", | ||
"filehound": "^1.17.4", | ||
"node-stream-zip": "^1.11.2", | ||
"node-stream-zip": "^1.12.0", | ||
"reflect-metadata": "^0.1.13", | ||
"request": "^2.88.2", | ||
"request-promise-native": "^1.0.8", | ||
"ta-json-x": "^2.5.2", | ||
"tslib": "^2.0.0", | ||
"request-promise-native": "^1.0.9", | ||
"ta-json-x": "^2.5.3", | ||
"tslib": "^2.0.3", | ||
"unzipper": "^0.10.11", | ||
"xpath": "^0.0.27", | ||
"xpath": "^0.0.32", | ||
"yauzl": "^2.10.0", | ||
@@ -65,3 +65,3 @@ "yazl": "^2.5.1" | ||
"@types/debug": "^4.1.5", | ||
"@types/node": "^12.12.47", | ||
"@types/node": "^12.19.9", | ||
"@types/request": "^2.48.5", | ||
@@ -72,7 +72,7 @@ "@types/request-promise-native": "^1.0.17", | ||
"cpy-cli": "^3.1.1", | ||
"cross-env": "^7.0.2", | ||
"cson": "^7.15.0", | ||
"cross-env": "^7.0.3", | ||
"cson": "^7.20.0", | ||
"eclint": "^2.8.1", | ||
"git-rev-sync": "^2.0.0", | ||
"json": "^9.0.6", | ||
"git-rev-sync": "^3.0.1", | ||
"json": "^10.0.0", | ||
"mkdirp": "^1.0.4", | ||
@@ -82,3 +82,3 @@ "rimraf": "^3.0.2", | ||
"tslint-language-service": "^0.9.9", | ||
"typescript": "^3.9.6" | ||
"typescript": "^4.1.3" | ||
}, | ||
@@ -85,0 +85,0 @@ "main": "dist/es6-es2015/src/_utils/perf-cli.js", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
1592399
582
13650
+ Addedxpath@0.0.32(transitive)
- Removedxpath@0.0.27(transitive)
Updateddebug@^4.3.1
Updatednode-stream-zip@^1.12.0
Updatedta-json-x@^2.5.3
Updatedtslib@^2.0.3
Updatedxpath@^0.0.32