Skip to content

Commit

Permalink
try page deployment again
Browse files Browse the repository at this point in the history
  • Loading branch information
mayarajan3 committed Feb 13, 2025
1 parent 2ee93f2 commit 02c0612
Show file tree
Hide file tree
Showing 47 changed files with 1,484 additions and 83 deletions.
732 changes: 661 additions & 71 deletions extensions/src/scratch3_jibo/index.ts

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions extensions/src/scratch3_jibo/jiboNameModal.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import type Extension from ".";
import { ReactiveInvoke, reactiveInvoke, activeClass, color } from "$common";
// my imports
// import { setJiboName } from "./index";
import { setJiboName } from "./index";
/**
* @summary This is a reference to the instance of your extension.
Expand Down Expand Up @@ -45,7 +45,7 @@
if (validJiboName(inputText)) {
inputText = inputText.toLowerCase();
inputText = inputText.trim();
//await setJiboName(inputText);
await setJiboName(inputText);
// run extensions "connect" function once name is set
invoke("connect");
errorVisible = true;
Expand Down
12 changes: 8 additions & 4 deletions extensions/src/scratch3_jibo/package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
{
"name": "jibo-extension",
"name": "scratch3_jibo-extension",
"version": "1.0.0",
"description": "An extension created using the PRG AI Blocks framework",
"main": "index.ts",
"scripts": {
"directory": "echo scratch3_jibo",
"dev": "pnpm --filter prg-extension-root dev -i scratch3_jibo",
"test": "pnpm --filter prg-extension-root test scratch3_jibo/index.test.ts"
"dev": "npm run dev --prefix ../../../ -- only=scratch3_jibo",
"test": "npm run test --prefix ../../ -- scratch3_jibo/index.test.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"firebase": "^9.22.2"
"firebase": "^9.22.2",
"roslib": "^1.3.0"
},
"devDependencies": {
"@types/roslib": "^1.3.0"
}
}
Loading

0 comments on commit 02c0612

Please sign in to comment.