Skip to content

Commit

Permalink
* Dependency "ta-json" GitHub semver dependency becomes "ta-json-x" N…
Browse files Browse the repository at this point in the history
…PM package (fixes readium/r2-testapp-js#10 )

* Removed TypeScript linter warning message (checks for no unused variables)
* NPM updates related to the Node TypeScript typings
  • Loading branch information
danielweck committed Oct 2, 2018
1 parent 5633f6e commit ae7e32a
Show file tree
Hide file tree
Showing 23 changed files with 95 additions and 85 deletions.
19 changes: 18 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,24 @@
# Next

Git diff:
* https://github.com/readium/r2-opds-js/compare/v1.0.0-alpha.4...develop
* https://github.com/readium/r2-opds-js/compare/v1.0.0-alpha.5...develop

# 1.0.0-alpha.5

Changes:
* Dependency "ta-json" GitHub semver dependency becomes "ta-json-x" NPM package (fixes https://github.com/readium/r2-testapp-js/issues/10 )
* Removed TypeScript linter warning message (checks for no unused variables)
* NPM updates related to the Node TypeScript typings

Git revision info:
* https://unpkg.com/r2-opds-js@1.0.0-alpha.5/dist/gitrev.json
* https://github.com/edrlab/r2-opds-js-dist/blob/v1.0.0-alpha.5/dist/gitrev.json

Git commit history:
* https://github.com/readium/r2-opds-js/commits/v1.0.0-alpha.5

Git diff:
* https://github.com/readium/r2-opds-js/compare/v1.0.0-alpha.4...v1.0.0-alpha.5

# 1.0.0-alpha.4

Expand Down
112 changes: 53 additions & 59 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "r2-opds-js",
"version": "1.0.0-alpha.4",
"version": "1.0.0-alpha.5",
"description": "Readium 2 'opds' for NodeJS (TypeScript)",
"keywords": [
"readium",
Expand Down Expand Up @@ -47,15 +47,15 @@
"homepage": "https://github.com/readium/r2-opds-js",
"dependencies": {
"debug": "^4.0.1",
"r2-shared-js": "^1.0.0-alpha.4",
"r2-utils-js": "^1.0.0-alpha.4",
"ta-json": "github:danielweck/ta-json#dist",
"r2-shared-js": "^1.0.0-alpha.5",
"r2-utils-js": "^1.0.0-alpha.5",
"ta-json-x": "^2.5.0",
"tslib": "^1.9.3",
"xmldom": "^0.1.27"
},
"devDependencies": {
"@types/debug": "0.0.30",
"@types/node": "8.*.*",
"@types/node": "^8.10.32",
"@types/xmldom": "^0.1.29",
"ava": "^0.25.0",
"cpy-cli": "^2.0.0",
Expand Down
2 changes: 1 addition & 1 deletion src/opds/init-globals.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import {
import {
BufferConverter as JsonBufferConverter,
propertyConverters as jsonConverters,
} from "ta-json";
} from "ta-json-x";

import { OPDSCollection } from "./opds2/opds2-collection";
import { JsonOPDSCollectionConverter } from "./opds2/opds2-collection-json-converter";
Expand Down
2 changes: 1 addition & 1 deletion src/opds/opds2/opds2-collection-json-converter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {
IPropertyConverter,
JSON as TAJSON,
JsonValue,
} from "ta-json";
} from "ta-json-x";

import { OPDSCollection } from "./opds2-collection";

Expand Down
2 changes: 1 addition & 1 deletion src/opds/opds2/opds2-collection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {
JsonElementType,
JsonObject,
JsonProperty,
} from "ta-json";
} from "ta-json-x";

import { OPDSLink } from "./opds2-link";

Expand Down
2 changes: 1 addition & 1 deletion src/opds/opds2/opds2-contributor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {
JsonElementType,
JsonObject,
JsonProperty,
} from "ta-json";
} from "ta-json-x";

import { OPDSLink } from "./opds2-link";

Expand Down
2 changes: 1 addition & 1 deletion src/opds/opds2/opds2-facet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {
JsonObject,
JsonProperty,
OnDeserialized,
} from "ta-json";
} from "ta-json-x";

import { OPDSLink } from "./opds2-link";
import { OPDSMetadata } from "./opds2-metadata";
Expand Down
Loading

0 comments on commit ae7e32a

Please sign in to comment.