apollo-link
Advanced tools
Comparing version 0.5.2 to 0.5.4
@@ -1,13 +0,25 @@ | ||
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; | ||
"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; | ||
//# sourceMappingURL=index.js.map |
{ | ||
"name": "apollo-link", | ||
"version": "0.5.2", | ||
"version": "0.5.4", | ||
"description": "Flexible, lightweight transport layer for GraphQL", | ||
@@ -13,6 +13,4 @@ "author": "Evans Hauser <evanshauser@gmail.com>", | ||
"license": "MIT", | ||
"main": "./dist/src/bundle.umd.js", | ||
"module": "./dist/src/index.js", | ||
"jsnext:main": "./dist/src/index.js", | ||
"typings": "./dist/src/index.d.ts", | ||
"main": "./lib/index.js", | ||
"typings": "./lib/index.d.ts", | ||
"repository": { | ||
@@ -27,3 +25,3 @@ "type": "git", | ||
"scripts": { | ||
"pretest": "npm run build-test", | ||
"pretest": "npm run build", | ||
"test": "npm run test-only --", | ||
@@ -39,12 +37,9 @@ "posttest": "npm run lint", | ||
"lint": | ||
"tslint --type-check -p tsconfig.test.json src/*.ts && tslint --type-check -p tsconfig.test.json tests/*.ts", | ||
"tslint --type-check -p tsconfig.json src/*.ts && tslint --type-check -p tsconfig.json tests/*.ts", | ||
"prebuild": "npm run clean:dist", | ||
"build": "tsc -p .", | ||
"build-test": "tsc -p tsconfig.test.json", | ||
"postbuild": "npm run bundle", | ||
"postbuild-test": "npm run bundle", | ||
"bundle": "rollup -c", | ||
"postbuild": "cp -R ./dist/src/. ./lib", | ||
"watch": "tsc -w -p .", | ||
"clean": "npm run clean:dist && npm run clean:coverage", | ||
"clean:dist": "rimraf dist/*", | ||
"clean:dist": "rimraf dist/* && rimraf lib/*", | ||
"clean:coverage": "rimraf coverage/*", | ||
@@ -54,11 +49,11 @@ "prepublishOnly": "npm run clean && npm run build" | ||
"dependencies": { | ||
"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" | ||
"apollo-link-batch": "^0.1.4", | ||
"apollo-link-batch-http": "^0.1.4", | ||
"apollo-link-core": "^0.5.4", | ||
"apollo-link-dedup": "^0.3.4", | ||
"apollo-link-http": "^0.5.4", | ||
"apollo-link-polling": "^0.5.4", | ||
"apollo-link-retry": "^0.5.4", | ||
"apollo-link-set-context": "^0.5.4", | ||
"apollo-link-ws": "^0.3.4" | ||
}, | ||
@@ -79,3 +74,2 @@ "devDependencies": { | ||
"rimraf": "2.6.1", | ||
"rollup": "^0.45.2", | ||
"sinon": "3.2.0", | ||
@@ -82,0 +76,0 @@ "source-map-support": "0.4.16", |
{ | ||
"extends": "../../tsconfig", | ||
"compilerOptions": { | ||
"target": "es5", | ||
"lib": ["es6", "dom"], | ||
"module": "commonjs", | ||
"moduleResolution": "node", | ||
"removeComments": true, | ||
"sourceMap": true, | ||
"declaration": true, | ||
"rootDir": ".", | ||
"outDir": "dist", | ||
"rootDir": "." | ||
"noImplicitAny": false, | ||
"noUnusedParameters": false, | ||
"noUnusedLocals": true, | ||
"skipLibCheck": true | ||
}, | ||
"include": ["src/**/*.ts"] | ||
"include": ["src/**/*.ts", "tests/**/*.ts"] | ||
} |
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
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
16772
18
13
302
1
Updatedapollo-link-batch@^0.1.4
Updatedapollo-link-core@^0.5.4
Updatedapollo-link-dedup@^0.3.4
Updatedapollo-link-http@^0.5.4
Updatedapollo-link-polling@^0.5.4
Updatedapollo-link-retry@^0.5.4
Updatedapollo-link-ws@^0.3.4