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

Replace default exports with individual exports and namespaced imports #1907

Merged
merged 30 commits into from
Aug 4, 2021
Merged
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
0f83fdb
Replace default export in Helpers to enable tree-shaking
Jul 16, 2021
540bc67
Fix label helpers export
Jul 16, 2021
641c024
Update exports for axis helpers
Jul 16, 2021
a87d3c4
Update exports for collections helpers
Jul 16, 2021
e19be47
Update imports for data
Jul 16, 2021
5eb239f
Update default transitions and domain
Jul 16, 2021
78148b4
Update exports for events and immutable
Jul 19, 2021
ada8e53
Update exports for log and scale
Jul 19, 2021
b23cb5c
Update exports for custom prop types
Jul 20, 2021
086fe30
Update exports for selection
Jul 20, 2021
1928994
Update exports for style
Jul 20, 2021
48c7e39
Update exports for transitions
Jul 20, 2021
f46d547
Update common props exports
Jul 20, 2021
1ed1c32
Remove accidental export *
Jul 20, 2021
01be471
Remove accidental import *
Jul 21, 2021
9d30adb
Update sinon test fixes
Jul 20, 2021
988de61
Upgrade sinon version
Jul 21, 2021
2c918f5
Remove proxyquire
Jul 21, 2021
0a7b0b2
Re-add sinon sandboxes
Jul 21, 2021
51c3e27
Update helper-methods exports
Jul 21, 2021
30ca414
Various debug work
ryan-roemer Jul 21, 2021
027b845
Set up internal impl to stub.
ryan-roemer Jul 27, 2021
fcf4fab
Pass env var for TEST_MODULE
ryan-roemer Jul 27, 2021
7bc2e99
Minor cleanup
ryan-roemer Jul 27, 2021
359ae82
Add test watch scripts
Jul 28, 2021
372e0d9
Run prettier
Jul 28, 2021
f9fbb33
Fix text size linter error
Jul 28, 2021
3742284
Upgrade karma
Jul 28, 2021
9e63247
Add node polyfill plugin to webpack test config
Aug 4, 2021
0b8f59c
Fix LabelHelpers function
Aug 4, 2021
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
Prev Previous commit
Next Next commit
Add test watch scripts
  • Loading branch information
Becca Bailey committed Aug 2, 2021
commit 359ae82abfd13f1b46268b0b4776cddc306346c0
2 changes: 2 additions & 0 deletions package-scripts.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,13 @@ module.exports = {
karma: {
ci: "karma start --browsers ChromeHeadlessCustom,Firefox ./config/karma/karma.conf.coverage.js",
cov: "karma start ./config/karma/karma.conf.coverage.js",
watch: "karma start --auto-watch ./config/karma/karma.conf.js",
default: "karma start ./config/karma/karma.conf.js"
},
test: {
cov: npsUtils.series.nps("build-package-libs", "karma.cov"),
dev: "karma start ./config/karma/karma.conf.dev.js",
watch: npsUtils.series.nps("build-package-libs", "karma.watch"),
default: npsUtils.series.nps("build-package-libs", "karma")
},
storybook: {
Expand Down