`npm run build` runs successfully, without errors, regardless of whether I do it in the root directory or in `myLang/`.
There's no build folder in `myLang/`, though, just a `dist/` directory. I assume this might be causing issues because the autogenerated
`myLang/test/index.html' looks for a `build/` directory with
```
<script src="../build/test_bundle.js"></script>
```
if I'm not mistaken.
```
h@WSL2:~/repositories/blockly$ batcat myLang/test/index.html
───────┬───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
│ File: myLang/test/index.html
───────┼───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
1 │ <!DOCTYPE html>
2 │ <html>
3 │
4 │ <head>
5 │ <meta charset="utf-8">
6 │ <title>Blockly Plugin Test</title>
7 │ <style>
8 │ html, body {
9 │ margin: 0;
10 │ }
11 │ </style>
12 │ </head>
13 │
14 │ <body>
15 │ <div id="root"></div>
16 │ <script src="../build/test_bundle.js"></script>
17 │ </body>
18 │
19 │ </html>
───────┴───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
h@WSL2:~/repositories/blockly$
```
```
h@WSL2:~/repositories/blockly$ npm run build
> blo...@7.20211209.4 build
> gulp build
[21:58:04] Using gulpfile ~/repositories/blockly/gulpfile.js
[21:58:04] Starting 'build'...
[21:58:04] Starting 'buildLangfiles'...
[21:58:04] Starting 'buildDeps'...
[21:58:04] Finished 'buildLangfiles' after 416 ms
[21:58:11] Finished 'buildDeps' after 7.46 s
[21:58:11] Starting 'buildCompiled'...
[21:58:19] Finished 'buildCompiled' after 7.88 s
[21:58:19] Finished 'build' after 15 s
h@WSL2:~/repositories/blockly$ cd myLang/
h@WSL2:~/repositories/blockly/myLang$ npm run build
> blockly-pl...@0.0.0 build
> blockly-scripts build
Running production build for blockly-plugin-myLang
Compiled successfully!
h@WSL2:~/repositories/blockly/myLang$