Skip to content

Commit

Permalink
fix: text join block warning when using block-plus-minus plugin (#2025)
Browse files Browse the repository at this point in the history
* 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 <[email protected]>
Co-authored-by: Beka Westberg <[email protected]>
  • Loading branch information
3 people committed Dec 7, 2023
1 parent b35bc7a commit 7b076df
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
16 changes: 8 additions & 8 deletions plugins/block-plus-minus/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions plugins/block-plus-minus/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@
"devDependencies": {
"@blockly/dev-scripts": "^3.1.0",
"@blockly/dev-tools": "^7.1.4",
"blockly": "^10.0.0",
"blockly": "^10.3.0-beta.0",
"chai": "^4.2.0",
"mocha": "^10.2.0",
"sinon": "^9.0.1"
},
"peerDependencies": {
"blockly": "^10.0.0"
"blockly": "^10.3.0-beta.0"
},
"publishConfig": {
"access": "public",
Expand Down
2 changes: 1 addition & 1 deletion plugins/block-plus-minus/src/text_join.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ const textJoinMutator = {
* @this {Blockly.Block}
*/
const textJoinHelper = function () {
Blockly.Extensions.apply('text_quotes', this, false);
Blockly.Extensions.apply('quote_image_mixin', this, false);
this.updateShape_(2);
};

Expand Down

0 comments on commit 7b076df

Please sign in to comment.