Skip to content

Commit 00fec12

Browse files
authored
release: v11.2.0
Merge pull request #8700 from google/rc/v11.2.0
2 parents 7a154ea + 6774dd8 commit 00fec12

387 files changed

Lines changed: 11412 additions & 10896 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.eslintignore

Lines changed: 0 additions & 28 deletions
This file was deleted.

.eslintrc.js

Lines changed: 0 additions & 187 deletions
This file was deleted.

.github/workflows/appengine_deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
path: _deploy/
4343

4444
- name: Deploy to App Engine
45-
uses: google-github-actions/deploy-appengine@v2.1.0
45+
uses: google-github-actions/deploy-appengine@v2.1.4
4646
# For parameters see:
4747
# https://github.com/google-github-actions/deploy-appengine#inputs
4848
with:

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
# TODO (#2114): re-enable osx build.
1919
# os: [ubuntu-latest, macos-latest]
2020
os: [ubuntu-latest]
21-
node-version: [18.x, 20.x]
21+
node-version: [18.x, 20.x, 22.x]
2222
# See supported Node.js release schedule at
2323
# https://nodejs.org/en/about/releases/
2424

@@ -37,8 +37,8 @@ jobs:
3737
with:
3838
node-version: ${{ matrix.node-version }}
3939

40-
- name: Npm Install
41-
run: npm install
40+
- name: Npm Clean Install
41+
run: npm ci
4242

4343
- name: Linux Test Setup
4444
if: runner.os == 'Linux'

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
registry=https://registry.npmjs.org/
2+
legacy-peer-deps=true

.prettierrc.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,6 @@ module.exports = {
1010
bracketSpacing: false,
1111
// Put HTML tag closing brackets on same line as last attribute.
1212
bracketSameLine: true,
13+
// Organise imports using a plugin.
14+
'plugins': ['prettier-plugin-organize-imports'],
1315
};

appengine/blockly_compressed.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ var msg = 'Compiled Blockly files should be loaded from https://unpkg.com/blockl
66
console.log(msg);
77
try {
88
alert(msg);
9-
} catch (_e) {
9+
} catch {
1010
// Can't alert? Probably node.js.
1111
}

blocks/blocks.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
// Former goog.module ID: Blockly.libraryBlocks
88

9+
import type {BlockDefinition} from '../core/blocks.js';
910
import * as lists from './lists.js';
1011
import * as logic from './logic.js';
1112
import * as loops from './loops.js';
@@ -14,7 +15,6 @@ import * as procedures from './procedures.js';
1415
import * as texts from './text.js';
1516
import * as variables from './variables.js';
1617
import * as variablesDynamic from './variables_dynamic.js';
17-
import type {BlockDefinition} from '../core/blocks.js';
1818

1919
export {
2020
lists,

0 commit comments

Comments
 (0)