mirror of
https://github.com/google/blockly.git
synced 2026-01-05 08:00:09 +01:00
* chore(deps): Bump prettier from 2.8.8 to 3.0.0 Bumps [prettier](https://github.com/prettier/prettier) from 2.8.8 to 3.0.0. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/2.8.8...3.0.0) --- updated-dependencies: - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * chore: Reformat using Prettier v3.0 defaults The main change is to add trailing commas to the last line of block-formatted function calls. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Christopher Allen <cpcallen+git@google.com>
42 lines
1.3 KiB
JavaScript
42 lines
1.3 KiB
JavaScript
/**
|
|
* @license
|
|
* Copyright 2022 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview Finishes loading Blockly and exports it as this
|
|
* module's default export.
|
|
*
|
|
* It is exported as the default export to avoid having to
|
|
* re-export each property on Blockly individually, because you
|
|
* can't do:
|
|
*
|
|
* export * from <dynamically computed source>; // SYNTAX ERROR
|
|
*
|
|
* You must use a <script> tag to load prepare.js first, before
|
|
* importing this module in a <script type=module> to obtain the
|
|
* loaded value.
|
|
*
|
|
* See tests/playground.html for example usage.
|
|
*/
|
|
if (!window.bootstrapInfo) {
|
|
throw new Error(
|
|
'window.bootstrapInfo not found. ' +
|
|
'Make sure to load bootstrap.js before importing bootstrap_done.mjs.',
|
|
);
|
|
}
|
|
|
|
if (window.bootstrapInfo.compressed) {
|
|
// Compiled mode. Nothing more to do.
|
|
} else {
|
|
// Uncompressed mode. Use top-level await
|
|
// (https://v8.dev/features/top-level-await) to block loading of
|
|
// this module until goog.bootstrap()ping of Blockly is finished.
|
|
await window.bootstrapInfo.done;
|
|
// Note that this module previously did an export default of the
|
|
// value returned by the bootstrapInfo.done promise. This was
|
|
// changed in PR #5995 because library blocks and generators cannot
|
|
// be accessed via that the core/blockly.js exports object.
|
|
}
|