Skip to content

Commit

Permalink
commit changes back
Browse files Browse the repository at this point in the history
  • Loading branch information
phryneas committed Nov 9, 2023
1 parent 2cd2391 commit 8fe48ad
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/cleanup-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,13 @@ jobs:
- name: Update size-limit
run: npm run update-size-limits

- name: Commit changes back
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "Clean up Prettier, Size-limit, and Api-Extractor"
push_options: ""
skip_dirty_check: false

# commit & push
# if there is a "trigger this action" comment in the PR, remove it

Expand Down
2 changes: 1 addition & 1 deletion .size-limits.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"dist/apollo-client.min.cjs": 37972,
"dist/apollo-client.min.cjs": 37962,
"import { ApolloClient, InMemoryCache, HttpLink } from \"dist/index.js\" (production)": 32017
}
2 changes: 1 addition & 1 deletion src/invariantErrorCodes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ export interface ErrorCodes {
[key: number]: { file: string; condition?: string; message?: string };
}

export const errorCodes: ErrorCodes = {};
export const errorCodes: ErrorCodes = {};
export const devDebug: ErrorCodes = {};
export const devLog: ErrorCodes = {};
export const devWarn: ErrorCodes = {};
Expand Down
3 changes: 3 additions & 0 deletions src/testing/core/mocking/mockSubscriptionLink.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ export interface MockedSubscription {
request: Operation;
}

/**
* suddenly commented
*/
export interface MockedSubscriptionResult {
result?: FetchResult;
error?: Error;
Expand Down

0 comments on commit 8fe48ad

Please sign in to comment.