apollo-link-dedup
Advanced tools
Comparing version 0.3.0 to 0.3.2
@@ -1,2 +0,1 @@ | ||
"use strict"; | ||
var __extends = (this && this.__extends) || (function () { | ||
@@ -12,5 +11,4 @@ var extendStatics = Object.setPrototypeOf || | ||
})(); | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var apollo_link_core_1 = require("apollo-link-core"); | ||
var printer_1 = require("graphql/language/printer"); | ||
import { ApolloLink, Observable, } from 'apollo-link-core'; | ||
import { print } from 'graphql/language/printer'; | ||
var DedupLink = (function (_super) { | ||
@@ -32,4 +30,4 @@ __extends(DedupLink, _super); | ||
} | ||
return new apollo_link_core_1.Observable(function (observer) { | ||
_this.inFlightRequestObservables[key].subscribe({ | ||
return new Observable(function (observer) { | ||
return _this.inFlightRequestObservables[key].subscribe({ | ||
next: observer.next.bind(observer), | ||
@@ -48,7 +46,7 @@ error: function (error) { | ||
DedupLink.prototype.getKey = function (operation) { | ||
return printer_1.print(operation.query) + "|" + JSON.stringify(operation.variables) + "|" + operation.operationName; | ||
return print(operation.query) + "|" + JSON.stringify(operation.variables) + "|" + operation.operationName; | ||
}; | ||
return DedupLink; | ||
}(apollo_link_core_1.ApolloLink)); | ||
exports.default = DedupLink; | ||
}(ApolloLink)); | ||
export default DedupLink; | ||
//# sourceMappingURL=dedupLink.js.map |
@@ -32,3 +32,3 @@ "use strict"; | ||
return new apollo_link_core_1.Observable(function (observer) { | ||
_this.inFlightRequestObservables[key].subscribe({ | ||
return _this.inFlightRequestObservables[key].subscribe({ | ||
next: observer.next.bind(observer), | ||
@@ -35,0 +35,0 @@ error: function (error) { |
{ | ||
"name": "apollo-link-dedup", | ||
"version": "0.3.0", | ||
"version": "0.3.2", | ||
"description": "Deduplicates queries that are currently on the wire", | ||
@@ -13,4 +13,6 @@ "author": "Evans Hauser <evanshauser@gmail.com>", | ||
"license": "MIT", | ||
"main": "./lib/dedupLink.js", | ||
"typings": "./lib/dedupLink.d.ts", | ||
"main": "./dist/src/bundle.umd.js", | ||
"module": "./dist/src/dedupLink.js", | ||
"jsnext:main": "./dist/src/dedupLink.js", | ||
"typings": "./dist/src/dedupLink.d.ts", | ||
"repository": { | ||
@@ -25,16 +27,23 @@ "type": "git", | ||
"scripts": { | ||
"pretest": "npm run build", | ||
"pretest": "npm run build-test", | ||
"test": "npm run test-only --", | ||
"posttest": "npm run lint", | ||
"test-only": "mocha --reporter spec --full-trace dist/tests/tests.js", | ||
"test-watch": "mocha --reporter spec --full-trace dist/tests/tests.js --watch", | ||
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha -- --reporter dot --full-trace dist/tests/tests.js", | ||
"postcoverage": "remap-istanbul --input coverage/coverage.json --type lcovonly --output coverage/lcov.info", | ||
"lint": "tslint --type-check -p tsconfig.json src/*.ts && tslint --type-check -p tsconfig.json tests/*.ts", | ||
"test-watch": | ||
"mocha --reporter spec --full-trace dist/tests/tests.js --watch", | ||
"coverage": | ||
"istanbul cover ./node_modules/mocha/bin/_mocha -- --reporter dot --full-trace dist/tests/tests.js", | ||
"postcoverage": | ||
"remap-istanbul --input coverage/coverage.json --type lcovonly --output coverage/lcov.info", | ||
"lint": | ||
"tslint --type-check -p tsconfig.test.json src/*.ts && tslint --type-check -p tsconfig.test.json tests/*.ts", | ||
"prebuild": "npm run clean:dist", | ||
"build": "tsc -p .", | ||
"postbuild": "cp -R ./dist/src/. ./lib", | ||
"build-test": "tsc -p tsconfig.test.json", | ||
"postbuild": "npm run bundle", | ||
"postbuild-test": "npm run bundle", | ||
"bundle": "rollup -c", | ||
"watch": "tsc -w -p .", | ||
"clean": "npm run clean:dist && npm run clean:coverage", | ||
"clean:dist": "rimraf dist/* && rimraf lib/*", | ||
"clean:dist": "rimraf dist/*", | ||
"clean:coverage": "rimraf coverage/*", | ||
@@ -45,25 +54,26 @@ "prepublishOnly": "npm run clean && npm run build" | ||
"apollo-fetch": "^0.6.0", | ||
"apollo-link-core": "^0.5.0", | ||
"apollo-link-core": "^0.5.2", | ||
"graphql": "^0.10.5" | ||
}, | ||
"devDependencies": { | ||
"@types/chai": "^4.0.0", | ||
"@types/chai": "4.0.4", | ||
"@types/chai-as-promised": "0.0.31", | ||
"@types/graphql": "~0.10.2", | ||
"@types/mocha": "^2.2.31", | ||
"@types/sinon": "^2.3.2", | ||
"chai": "^4.0.2", | ||
"chai-as-promised": "^7.0.0", | ||
"fetch-mock": "^5.11.0", | ||
"graphql-tag": "^2.2.2", | ||
"istanbul": "^0.4.4", | ||
"lodash": "^4.17.4", | ||
"mocha": "^3.2.0", | ||
"remap-istanbul": "^0.9.0", | ||
"rimraf": "^2.5.4", | ||
"sinon": "^2.3.4", | ||
"source-map-support": "^0.4.5", | ||
"tslint": "^5.0.0", | ||
"typescript": "^2.2.1" | ||
"@types/graphql": "0.10.2", | ||
"@types/mocha": "2.2.42", | ||
"@types/sinon": "2.3.3", | ||
"chai": "4.1.1", | ||
"chai-as-promised": "7.1.1", | ||
"fetch-mock": "5.12.2", | ||
"graphql-tag": "2.4.2", | ||
"istanbul": "0.4.5", | ||
"lodash": "4.17.4", | ||
"mocha": "3.5.0", | ||
"remap-istanbul": "0.9.5", | ||
"rimraf": "2.6.1", | ||
"rollup": "^0.45.2", | ||
"sinon": "3.2.0", | ||
"source-map-support": "0.4.16", | ||
"tslint": "5.7.0", | ||
"typescript": "2.5.1" | ||
} | ||
} |
@@ -37,3 +37,3 @@ import { | ||
} | ||
return new Observable<FetchResult>(observer => { | ||
return new Observable<FetchResult>(observer => | ||
this.inFlightRequestObservables[key].subscribe({ | ||
@@ -49,4 +49,4 @@ next: observer.next.bind(observer), | ||
}, | ||
}); | ||
}); | ||
}), | ||
); | ||
} | ||
@@ -53,0 +53,0 @@ |
{ | ||
"extends": "../../tsconfig", | ||
"compilerOptions": { | ||
"target": "es5", | ||
"lib": ["es6", "dom"], | ||
"module": "commonjs", | ||
"moduleResolution": "node", | ||
"removeComments": true, | ||
"sourceMap": true, | ||
"declaration": true, | ||
"rootDir": ".", | ||
"outDir": "dist", | ||
"noImplicitAny": false, | ||
"noUnusedParameters": false, | ||
"noUnusedLocals": true, | ||
"skipLibCheck": true | ||
"rootDir": "." | ||
}, | ||
"include": ["src/**/*.ts", "tests/**/*.ts"] | ||
"include": ["src/**/*.ts"] | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
21614
19
14
361
2
Updatedapollo-link-core@^0.5.2