-
Notifications
You must be signed in to change notification settings - Fork 625
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
fix: text join block warning when using block-plus-minus plugin #2025
fix: text join block warning when using block-plus-minus plugin #2025
Conversation
Thanks for your pull request! It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). View this failed invocation of the CLA check for more information. For the most up to date status, view the checks section at the bottom of the pull request. |
The test failure was expected! Just wanted to make sure it actually failed. |
Hello! This looks great @HadyBazzi =) Thank you for the work on it! I just need a few more things before I can get this merged:
|
Fixes #1877. Don't advertise module entrypoints on packages that are implemented in TypeScript as at the moment our webpack configuration does not generate any file called src/index.js.
Hello, |
Oops, I missed that. Thank you for fixing it! |
Haha 100% all good! Didn't want to bug you with such a minor thing :P Thank you for your work on this! LGTM =) |
* fix: text join block warning when using block-plus-minus plugin * Update package.json * fix(packaging): Don't advertise non-existent ESM entrypoints (#2022) Fixes #1877. Don't advertise module entrypoints on packages that are implemented in TypeScript as at the moment our webpack configuration does not generate any file called src/index.js. * Revert "fix(packaging): Don't advertise non-existent ESM entrypoints (#2022)" This reverts commit 3382ac7. * update package-lock --------- Co-authored-by: Christopher Allen <cpcallen+git@google.com> Co-authored-by: Beka Westberg <bwestberg@google.com>
* fix: text join block warning when using block-plus-minus plugin * Update package.json * fix(packaging): Don't advertise non-existent ESM entrypoints (#2022) Fixes #1877. Don't advertise module entrypoints on packages that are implemented in TypeScript as at the moment our webpack configuration does not generate any file called src/index.js. * Revert "fix(packaging): Don't advertise non-existent ESM entrypoints (#2022)" This reverts commit 3382ac7. * update package-lock --------- Co-authored-by: Christopher Allen <cpcallen+git@google.com> Co-authored-by: Beka Westberg <bwestberg@google.com>
* fix: text join block warning when using block-plus-minus plugin * Update package.json * fix(packaging): Don't advertise non-existent ESM entrypoints (#2022) Fixes #1877. Don't advertise module entrypoints on packages that are implemented in TypeScript as at the moment our webpack configuration does not generate any file called src/index.js. * Revert "fix(packaging): Don't advertise non-existent ESM entrypoints (#2022)" This reverts commit 3382ac7. * update package-lock --------- Co-authored-by: Christopher Allen <cpcallen+git@google.com> Co-authored-by: Beka Westberg <bwestberg@google.com>
The basics
The details
Resolves
When combined with google/blockly#7598 this resolves #1134.
Proposed Changes
Use the quote_image_mixin extension instead of the text_quotes extension.
Reason for Changes
Using the quote_image_mixin stops the following warning from appearing when using the text_join block with the block-plus-minus plugin due to the text_quotes extension calling
this.quoteField_('TEXT');
:field named "TEXT" not found in "text_join" block
Additional Information
google/blockly#7598 should be passed before this to avoid errors due to the quote_image_mixin not currently existing.