From 687042b24a6f7a81bb9c324da6c117777a68f970 Mon Sep 17 00:00:00 2001 From: Benjamin Wegener Date: Tue, 16 Jan 2024 20:10:39 +0000 Subject: [PATCH] chore(examples) default usage of std in examples --- examples/src/main.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/src/main.js b/examples/src/main.js index 9bd7c79..cc637ef 100644 --- a/examples/src/main.js +++ b/examples/src/main.js @@ -1,11 +1,11 @@ import Cetra from '../../lib/lib.js'; import Interact from '../../lib/plugins/Interact.js'; -import UtilsPlugin from '../../lib/plugins/Utils.js'; +import StdPlugin from '../../lib/plugins/StandardLibrary'; const ctra = new Cetra({ root: 'body', plugins: new Map([ ['interact', Interact], - ['utils', UtilsPlugin], + ['std', StdPlugin], ]), });