Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reenable Rollup preserveModules option, and consolidate utils/utilities directories. #5437

Merged
merged 26 commits into from
Oct 11, 2019
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
1273193
Re-enable rollup `preserveModules` to avoid ESM bundling
hwillson Oct 10, 2019
96a5266
Remove all module index.ts files
hwillson Oct 11, 2019
47da102
Stop exporting the cache functionality we don't want to expose
hwillson Oct 11, 2019
da2b56a
Move `subscribeAndCount` test only utility out of main package
hwillson Oct 11, 2019
ad25bbb
Move graphql specific utilities into `utilities/graphql`
hwillson Oct 11, 2019
9d4e731
Move common utilities into `utilities/common`
hwillson Oct 11, 2019
34c7f47
Stop exporting the `assign` utility (meant for internal use)
hwillson Oct 11, 2019
b297e37
Stop exporting the `canUseWeakMap` utility (meant for internal use)
hwillson Oct 11, 2019
96e9d25
Stop exporting the `cloneDeep` utility (meant for internal use)
hwillson Oct 11, 2019
5db7b40
Stop exporting `environment` utilities (meant for internal use)
hwillson Oct 11, 2019
41ef5dd
Stop exporting the `errorHandling` utilities (meant for internal use)
hwillson Oct 11, 2019
83e265c
Stop exporting the `isEqual` utility (meant for internal use)
hwillson Oct 11, 2019
836a38d
Stop exporting the `maybeDeepFreeze` utility (meant for internal use)
hwillson Oct 11, 2019
bf9161e
Stop exporting the `mergeDeep` utilities (meant for internal use)
hwillson Oct 11, 2019
0ce921b
Stop exporting the `stripSymbols` utility (meant for internal use)
hwillson Oct 11, 2019
db29456
Move test only `stripSymbols` utility out of the main bundle
hwillson Oct 11, 2019
0869922
Remove duplicate `stripSymbols` utility
hwillson Oct 11, 2019
133d16e
Move `arrays` utilities into `utilities/common`
hwillson Oct 11, 2019
e748a04
Move `capitalizeFirstLetter` into `utilities/common`
hwillson Oct 11, 2019
fa6bb8d
Move the `observableToPromise` utility out of the main bundle
hwillson Oct 11, 2019
96b5852
Move the test only `wrap` utilities out of the main bundle
hwillson Oct 11, 2019
fe8de17
Move observable utilities into `utilities/observables`
hwillson Oct 11, 2019
10ce705
Stop exporting all graphql utilities
hwillson Oct 11, 2019
6fb8fed
Changelog update
hwillson Oct 11, 2019
df162c4
Reduce bundlesize threshold
hwillson Oct 11, 2019
5ac4a65
Add `preserveModules` comment to `rollup.config.js`
hwillson Oct 11, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions config/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ function prepareESM() {
format: 'esm',
sourcemap: true,
},
preserveModules: true,
plugins: [
nodeResolve(),
invariantPlugin({
Expand Down