From f3e5722fee792e4ab3ccfee8b09052f92a96ac96 Mon Sep 17 00:00:00 2001 From: Sarxzer Date: Tue, 19 Mar 2024 10:47:40 +0100 Subject: [PATCH] Rename custom.js to computcraft.js in src/blocks This commit renames the custom.js file to computcraft.js in the src/blocks directory. This change better reflects the content and purpose of the file. --- .gitignore | 3 ++- src/index.js | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 56eaa6a..8bfb42a 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,5 @@ node_modules dist .vscode -secret.json \ No newline at end of file +secret.json +retrogadget.js \ No newline at end of file diff --git a/src/index.js b/src/index.js index 45df0b5..cc1f32b 100644 --- a/src/index.js +++ b/src/index.js @@ -1,5 +1,5 @@ import * as Blockly from "blockly"; -import { blocks } from "./blocks/custom"; +import { blocks } from "./blocks/computcraft"; import { forBlock } from "./generators/lua"; import { luaGenerator } from "blockly/lua"; import { save, load } from "./serialization";