-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
BREAKING CHANGE: reorganize client directory #2562
BREAKING CHANGE: reorganize client directory #2562
Conversation
Codecov Report
@@ Coverage Diff @@
## v4 #2562 +/- ##
==========================================
- Coverage 93.43% 92.86% -0.57%
==========================================
Files 34 35 +1
Lines 1309 1331 +22
Branches 369 374 +5
==========================================
+ Hits 1223 1236 +13
- Misses 83 90 +7
- Partials 3 5 +2
Continue to review full report at Codecov.
|
package.json
Outdated
"build:client:clients": "babel client-src/clients --out-dir client/clients", | ||
"build:client:index": "webpack ./client-src/default/index.js -o client/index.bundle.js --color --config client-src/default/webpack.config.js", | ||
"build:client:sockjs": "webpack ./client-src/sockjs/index.js -o client/sockjs.bundle.js --color --config client-src/sockjs/webpack.config.js", | ||
"build:client:index": "webpack ./client-src/default/index.js -o client/default/index.bundle.js --color --config client-src/default/webpack.config.js", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you move input/output to webpack.config.js?
/cc @Loonride need fix conflicts, great job! |
135e474
to
3133bb5
Compare
BREAKING CHANGE: the `client` now in `default` directory
For Bugs and Features; did you add new tests?
N/A
Motivation / Use-Case
Reorganized client build output to match structure of
client-src
Thoughts on if we should reorganize it more, or just do this and avoid major breaking changes?
Breaking Changes
Yes, reorganized client output dir
Additional Info