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

chore(deps): update dependency webpack-dev-server to v5 #4208

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
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
chore(deps): update dependency webpack-dev-server to v5
renovate[bot] authored Feb 18, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit e6e5f4666c71ae6b620ab20ad627d751c22d571c
3,806 changes: 810 additions & 2,996 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -110,6 +110,6 @@
"tap": "16.3.10",
"webpack": "5.98.0",
"webpack-cli": "4.10.0",
"webpack-dev-server": "3.11.3"
"webpack-dev-server": "5.2.0"
}
}

Unchanged files with check annotations Beta

_registerExtensionPrimitives (extensionInfo) {
const categoryInfo = {
id: extensionInfo.id,
name: maybeFormatMessage(extensionInfo.name),

Check warning on line 858 in src/engine/runtime.js

GitHub Actions / ci-cd

Pattern is not a string literal
showStatusButton: extensionInfo.showStatusButton,
blockIconURI: extensionInfo.blockIconURI,
menuIconURI: extensionInfo.menuIconURI
info => info.id === extensionInfo.id
);
if (categoryInfo) {
categoryInfo.name = maybeFormatMessage(extensionInfo.name);

Check warning on line 909 in src/engine/runtime.js

GitHub Actions / ci-cd

Pattern is not a string literal
this._fillExtensionCategory(categoryInfo, extensionInfo);
this.emit(Runtime.BLOCKSINFO_UPDATE, categoryInfo);
const extensionMessageContext = this.makeMessageContextForTarget();
return menuItems.map(item => {
const formattedItem = maybeFormatMessage(
item,

Check warning on line 1009 in src/engine/runtime.js

GitHub Actions / ci-cd

Pattern is not a string literal
extensionMessageContext
);
switch (typeof formattedItem) {
case 'object':
return [
maybeFormatMessage(
item.text,

Check warning on line 1018 in src/engine/runtime.js

GitHub Actions / ci-cd

Pattern is not a string literal
extensionMessageContext
),
item.value
if (inTextNum < blockText.length) {
context.outLineNum = outLineNum;
const lineText = maybeFormatMessage(
blockText[inTextNum],

Check warning on line 1260 in src/engine/runtime.js

GitHub Actions / ci-cd

Pattern is not a string literal
extensionMessageContext
);
const convertedText = lineText.replace(
const extensionMessageContext = this.makeMessageContextForTarget();
const buttonText = maybeFormatMessage(
buttonInfo.text,

Check warning on line 1361 in src/engine/runtime.js

GitHub Actions / ci-cd

Pattern is not a string literal
extensionMessageContext
);
return {
'' :
xmlEscape(
maybeFormatMessage(
argInfo.defaultValue,

Check warning on line 1444 in src/engine/runtime.js

GitHub Actions / ci-cd

Pattern is not a string literal
this.makeMessageContextForTarget()
).toString()
);
const menuFunc = extensionObject[menuItemFunctionName];
const menuItems = menuFunc.call(extensionObject, editingTargetID).map(
item => {
item = maybeFormatMessage(item, extensionMessageContext);

Check warning on line 353 in src/extension-support/extension-manager.js

GitHub Actions / ci-cd

Pattern is not a string literal
switch (typeof item) {
case 'object':
return [
maybeFormatMessage(item.text, extensionMessageContext),

Check warning on line 357 in src/extension-support/extension-manager.js

GitHub Actions / ci-cd

Pattern is not a string literal
item.value
];
case 'string':
*/
const maybeFormatMessage = function (maybeMessage, args, locale) {
if (maybeMessage && maybeMessage.id && maybeMessage.default) {
return formatMessage(maybeMessage, args, locale);

Check warning on line 13 in src/util/maybe-format-message.js

GitHub Actions / ci-cd

Pattern is not a string literal
}
return maybeMessage;
};