-
-
Notifications
You must be signed in to change notification settings - Fork 312
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
26c79f6
commit c0613f2
Showing
14 changed files
with
44 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
# Change log | ||
|
||
### vNEXT | ||
|
||
### v1.0.0-beta.1 | ||
|
||
* Supports `sideEffects: false` (webpack) | ||
|
||
### v1.0.0-beta.0 | ||
|
||
Initial release. We didn't track changes before this version. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,14 @@ | ||
{ | ||
"name": "apollo-angular-cache-ngrx", | ||
"description": "Allows to use @ngrx/store as Apollo Cache", | ||
"author": | ||
"Kamil Kisiela <[email protected]> (http://github.com/kamilkisiela/)", | ||
"author": "Kamil Kisiela <[email protected]> (http://github.com/kamilkisiela/)", | ||
"license": "MIT", | ||
"sideEffects": false, | ||
"main": "./build/bundle.umd.js", | ||
"module": "./build/src/index.js", | ||
"jsnext:main": "./build/src/index.js", | ||
"typings": "./build/src/index.d.ts", | ||
"version": "1.0.0-beta.0", | ||
"version": "1.0.0-beta.1", | ||
"repository": { | ||
"type": "git", | ||
"url": "apollographql/apollo-angular" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,14 @@ | ||
{ | ||
"name": "apollo-angular-link-headers", | ||
"description": | ||
"An Apollo Link to easily transform headers from being a key-value object to an instance of HttpHeaders. Great combination with apollo-angular-link-http.", | ||
"author": | ||
"Kamil Kisiela <[email protected]> (http://github.com/kamilkisiela/)", | ||
"description": "An Apollo Link to easily transform headers from being a key-value object to an instance of HttpHeaders. Great combination with apollo-angular-link-http.", | ||
"author": "Kamil Kisiela <[email protected]> (http://github.com/kamilkisiela/)", | ||
"license": "MIT", | ||
"sideEffects": false, | ||
"main": "./build/bundle.umd.js", | ||
"module": "./build/src/index.js", | ||
"jsnext:main": "./build/src/index.js", | ||
"typings": "./build/src/index.d.ts", | ||
"version": "1.0.0", | ||
"version": "1.1.0", | ||
"repository": { | ||
"type": "git", | ||
"url": "apollographql/apollo-angular" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,14 @@ | ||
{ | ||
"name": "apollo-angular-link-http-batch", | ||
"description": | ||
"An Apollo Link to combine multiple GraphQL operations into single HTTP request.", | ||
"author": | ||
"Kamil Kisiela <[email protected]> (http://github.com/kamilkisiela/)", | ||
"description": "An Apollo Link to combine multiple GraphQL operations into single HTTP request.", | ||
"author": "Kamil Kisiela <[email protected]> (http://github.com/kamilkisiela/)", | ||
"license": "MIT", | ||
"sideEffects": false, | ||
"main": "./build/bundle.umd.js", | ||
"module": "./build/src/index.js", | ||
"jsnext:main": "./build/src/index.js", | ||
"typings": "./build/src/index.d.ts", | ||
"version": "1.0.1", | ||
"version": "1.1.1", | ||
"repository": { | ||
"type": "git", | ||
"url": "apollographql/apollo-angular" | ||
|
@@ -32,7 +30,7 @@ | |
"dependencies": { | ||
"apollo-link": "^1.0.0", | ||
"apollo-link-batch": "^1.1.2", | ||
"apollo-angular-link-http-common": "~1.0.0" | ||
"apollo-angular-link-http-common": "~1.1.0" | ||
}, | ||
"devDependencies": { | ||
"@angular/animations": "6.0.1", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,14 @@ | ||
{ | ||
"name": "apollo-angular-link-http-common", | ||
"description": "Common logic for http links. For internal use only.", | ||
"author": | ||
"Kamil Kisiela <[email protected]> (http://github.com/kamilkisiela/)", | ||
"author": "Kamil Kisiela <[email protected]> (http://github.com/kamilkisiela/)", | ||
"license": "MIT", | ||
"sideEffects": false, | ||
"main": "./build/bundle.umd.js", | ||
"module": "./build/src/index.js", | ||
"jsnext:main": "./build/src/index.js", | ||
"typings": "./build/src/index.d.ts", | ||
"version": "1.0.0", | ||
"version": "1.1.0", | ||
"repository": { | ||
"type": "git", | ||
"url": "apollographql/apollo-angular" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,14 @@ | ||
{ | ||
"name": "apollo-angular-link-http", | ||
"description": | ||
"An Apollo Link to allow sending a single http request per operation.", | ||
"author": | ||
"Kamil Kisiela <[email protected]> (http://github.com/kamilkisiela/)", | ||
"description": "An Apollo Link to allow sending a single http request per operation.", | ||
"author": "Kamil Kisiela <[email protected]> (http://github.com/kamilkisiela/)", | ||
"license": "MIT", | ||
"sideEffects": false, | ||
"main": "./build/bundle.umd.js", | ||
"module": "./build/src/index.js", | ||
"jsnext:main": "./build/src/index.js", | ||
"typings": "./build/src/index.d.ts", | ||
"version": "1.0.3", | ||
"version": "1.1.0", | ||
"repository": { | ||
"type": "git", | ||
"url": "apollographql/apollo-angular" | ||
|
@@ -31,7 +29,7 @@ | |
"graphql": "^0.11.3 || ^0.12.3 || ^0.13.0" | ||
}, | ||
"dependencies": { | ||
"apollo-angular-link-http-common": "~1.0.0" | ||
"apollo-angular-link-http-common": "~1.1.0" | ||
}, | ||
"devDependencies": { | ||
"@angular/animations": "6.0.1", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,14 @@ | ||
{ | ||
"name": "apollo-angular-link-persisted", | ||
"description": "Use persisted queries with Apollo Link", | ||
"author": | ||
"Kamil Kisiela <[email protected]> (http://github.com/kamilkisiela/)", | ||
"author": "Kamil Kisiela <[email protected]> (http://github.com/kamilkisiela/)", | ||
"license": "MIT", | ||
"sideEffects": false, | ||
"main": "./build/bundle.umd.js", | ||
"module": "./build/src/index.js", | ||
"jsnext:main": "./build/src/index.js", | ||
"typings": "./build/src/index.d.ts", | ||
"version": "1.0.0-beta.0", | ||
"version": "1.0.0-beta.2", | ||
"repository": { | ||
"type": "git", | ||
"url": "apollographql/apollo-angular" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,8 @@ | ||
{ | ||
"name": "apollo-angular", | ||
"description": | ||
"Use your GraphQL data in your Angular app, with the Apollo Client", | ||
"version": "1.0.1", | ||
"author": | ||
"Kamil Kisiela <[email protected]> (http://github.com/kamilkisiela/)", | ||
"description": "Use your GraphQL data in your Angular app, with the Apollo Client", | ||
"version": "1.1.0", | ||
"author": "Kamil Kisiela <[email protected]> (http://github.com/kamilkisiela/)", | ||
"license": "MIT", | ||
"sideEffects": false, | ||
"main": "./build/bundle.umd.js", | ||
|
@@ -24,10 +22,8 @@ | |
"posttest": "npm run test:testing", | ||
"test-only": "jest --config jest.config.js", | ||
"test:testing": "jest --config testing/jest.config.js", | ||
"lint": | ||
"tslint -c ../../tslint.json -p tsconfig.json {src,tests, testing}/**/*.ts", | ||
"lint:testing": | ||
"tslint -c ../../tslint.json -p testing/tsconfig.json {src,tests}/**/*.ts", | ||
"lint": "tslint -c ../../tslint.json -p tsconfig.json {src,tests, testing}/**/*.ts", | ||
"lint:testing": "tslint -c ../../tslint.json -p testing/tsconfig.json {src,tests}/**/*.ts", | ||
"postlint": "npm run lint:testing", | ||
"postbuild": "npm run bundle && npm run build:testing", | ||
"postbuild:testing": "npm run bundle:testing", | ||
|