Skip to content

Commit

Permalink
ci: fix sizes
Browse files Browse the repository at this point in the history
  • Loading branch information
ifiokjr committed Sep 29, 2019
1 parent 65d5392 commit 14d7953
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .size-limit.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
{
"name": "@remirror/core",
"path": "@remirror/core/lib/dist/core.esm.js",
"limit": "55 KB",
"limit": "70 KB",
"ignore": ["@emotion/core", "@types/prosemirror-view", "@types/react", "prosemirror-view", "react"],
"running": false
},
Expand Down Expand Up @@ -142,7 +142,7 @@
{
"name": "@remirror/react-utils",
"path": "@remirror/react-utils/lib/dist/react-utils.esm.js",
"limit": "5 KB",
"limit": "15 KB",
"ignore": ["@emotion/core", "@types/react", "react"],
"running": false
},
Expand Down
2 changes: 1 addition & 1 deletion @remirror/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
},
"cjs": "lib/dist/core.cjs.js",
"meta": {
"sizeLimit": "55 KB"
"sizeLimit": "70 KB"
},
"sideEffects": false
}
2 changes: 1 addition & 1 deletion @remirror/react-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
},
"cjs": "lib/dist/react-utils.cjs.js",
"meta": {
"sizeLimit": "5 KB"
"sizeLimit": "15 KB"
},
"sideEffects": false
}
11 changes: 10 additions & 1 deletion packages/jest-prosemirror/tsconfig.prod.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,16 @@
],
"references": [
{
"path": "../../@remirror/core/tsconfig.prod.json"
"path": "../../@remirror/core-constants/tsconfig.prod.json"
},
{
"path": "../../@remirror/core-helpers/tsconfig.prod.json"
},
{
"path": "../../@remirror/core-types/tsconfig.prod.json"
},
{
"path": "../../@remirror/core-utils/tsconfig.prod.json"
},
{
"path": "../test-keyboard/tsconfig.prod.json"
Expand Down
2 changes: 1 addition & 1 deletion packages/prosemirror-suggest/src/suggest-state.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import {
TextParams,
TransactionParams,
} from '@remirror/core-types';
import { bool } from '@remirror/core-helpers';
import { transactionChanged } from '@remirror/core-utils';
import { Decoration, DecorationSet } from 'prosemirror-view';
import { ChangeReason, DEFAULT_SUGGESTER, ExitReason } from './suggest-constants';
Expand All @@ -26,7 +27,6 @@ import {
} from './suggest-types';
import { findFromSuggesters, findReason, runKeyBindings } from './suggest-utils';
import { Transaction } from 'prosemirror-state';
import { bool } from '@remirror/core-helpers/lib';

/**
* The suggestion state which manages the list of suggestions.
Expand Down

0 comments on commit 14d7953

Please sign in to comment.