pxt-core 13.1.3 → 13.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/built/pxt.js CHANGED
@@ -120947,6 +120947,8 @@ ${code}
120947
120947
  tutorial_1.shouldFilterProject = shouldFilterProject;
120948
120948
  function mergeTutorialDependencies(projectDependencies, tutorialDependencies) {
120949
120949
  const merged = Object.assign({}, projectDependencies);
120950
+ if (!tutorialDependencies)
120951
+ return merged;
120950
120952
  for (const dep of Object.keys(tutorialDependencies)) {
120951
120953
  const ver = tutorialDependencies[dep];
120952
120954
  if (ver.toLowerCase() === "remove") {
package/built/pxtlib.js CHANGED
@@ -23226,6 +23226,8 @@ ${code}
23226
23226
  tutorial_1.shouldFilterProject = shouldFilterProject;
23227
23227
  function mergeTutorialDependencies(projectDependencies, tutorialDependencies) {
23228
23228
  const merged = Object.assign({}, projectDependencies);
23229
+ if (!tutorialDependencies)
23230
+ return merged;
23229
23231
  for (const dep of Object.keys(tutorialDependencies)) {
23230
23232
  const ver = tutorialDependencies[dep];
23231
23233
  if (ver.toLowerCase() === "remove") {