Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

apollo-link

Package Overview
Dependencies
Maintainers
3
Versions
48
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

apollo-link - npm Package Compare versions

Comparing version 0.5.0 to 0.5.2

dist/src/bundle.umd.js

36

dist/src/index.js

@@ -1,25 +0,13 @@

"use strict";
function __export(m) {
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
}
Object.defineProperty(exports, "__esModule", { value: true });
var apollo_link_core_1 = require("apollo-link-core");
var apollo_link_batch_1 = require("apollo-link-batch");
exports.BatchLink = apollo_link_batch_1.default;
var apollo_link_batch_http_1 = require("apollo-link-batch-http");
exports.BatchHttpLink = apollo_link_batch_http_1.default;
var apollo_link_dedup_1 = require("apollo-link-dedup");
exports.DedupLink = apollo_link_dedup_1.default;
var apollo_link_http_1 = require("apollo-link-http");
exports.HttpLink = apollo_link_http_1.default;
var apollo_link_retry_1 = require("apollo-link-retry");
exports.RetryLink = apollo_link_retry_1.default;
var apollo_link_set_context_1 = require("apollo-link-set-context");
exports.SetContextLink = apollo_link_set_context_1.default;
var apollo_link_polling_1 = require("apollo-link-polling");
exports.PollingLink = apollo_link_polling_1.default;
var apollo_link_ws_1 = require("apollo-link-ws");
exports.WebSocketLink = apollo_link_ws_1.default;
__export(require("apollo-link-core"));
exports.default = apollo_link_core_1.default;
import ApolloLink from 'apollo-link-core';
import BatchLink from 'apollo-link-batch';
import BatchHttpLink from 'apollo-link-batch-http';
import DedupLink from 'apollo-link-dedup';
import HttpLink from 'apollo-link-http';
import RetryLink from 'apollo-link-retry';
import SetContextLink from 'apollo-link-set-context';
import PollingLink from 'apollo-link-polling';
import WebSocketLink from 'apollo-link-ws';
export * from 'apollo-link-core';
export { BatchLink, BatchHttpLink, HttpLink, RetryLink, SetContextLink, PollingLink, WebSocketLink, DedupLink, };
export default ApolloLink;
//# sourceMappingURL=index.js.map
{
"name": "apollo-link",
"version": "0.5.0",
"version": "0.5.2",
"description": "Flexible, lightweight transport layer for GraphQL",

@@ -13,4 +13,6 @@ "author": "Evans Hauser <evanshauser@gmail.com>",

"license": "MIT",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"main": "./dist/src/bundle.umd.js",
"module": "./dist/src/index.js",
"jsnext:main": "./dist/src/index.js",
"typings": "./dist/src/index.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/*",

@@ -44,32 +53,33 @@ "prepublishOnly": "npm run clean && npm run build"

"dependencies": {
"apollo-link-batch": "^0.1.0",
"apollo-link-batch-http": "^0.1.0",
"apollo-link-core": "^0.5.0",
"apollo-link-dedup": "^0.3.0",
"apollo-link-http": "^0.5.0",
"apollo-link-polling": "^0.5.0",
"apollo-link-retry": "^0.5.0",
"apollo-link-set-context": "^0.5.0",
"apollo-link-ws": "^0.3.0"
"apollo-link-batch": "^0.1.2",
"apollo-link-batch-http": "^0.1.2",
"apollo-link-core": "^0.5.2",
"apollo-link-dedup": "^0.3.2",
"apollo-link-http": "^0.5.2",
"apollo-link-polling": "^0.5.2",
"apollo-link-retry": "^0.5.2",
"apollo-link-set-context": "^0.5.2",
"apollo-link-ws": "^0.3.2"
},
"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",
"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",
"subscriptions-transport-ws": "^0.8.2",
"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",
"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",
"subscriptions-transport-ws": "0.8.2",
"tslint": "5.7.0",
"typescript": "2.5.1"
}
}
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc