From 82c8606b9733bd4b7a9f5a8c75ca537ff242f134 Mon Sep 17 00:00:00 2001 From: Nikita <61884745+dakln@users.noreply.github.com> Date: Wed, 30 Oct 2024 17:16:30 +0500 Subject: [PATCH] v1.2.2 --- addon_base/plugin/plugin.js | 2 +- cli.ts | 2 +- deno.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/addon_base/plugin/plugin.js b/addon_base/plugin/plugin.js index e194dbe..402b61e 100644 --- a/addon_base/plugin/plugin.js +++ b/addon_base/plugin/plugin.js @@ -34,7 +34,7 @@ const PLUGIN_CLASS = SDK.Plugins[ADDON_ID] = class LostPlugin extends SDK.IPlugi this._info.AddRemoteScriptDependency(url); }) SCRIPTS.forEach(script => { - this._info.AddFileDependency({ filename: `scripts/${script.filename}`, type: dependencyType }); + this._info.AddFileDependency({ filename: `scripts/${script.filename}`, type: script.dependencyType }); }); FILES.forEach(file => { this._info.AddFileDependency({ filename: `files/${file.filename}`, type: file.dependencyType }); diff --git a/cli.ts b/cli.ts index 91ee5f5..72d11da 100644 --- a/cli.ts +++ b/cli.ts @@ -4,7 +4,7 @@ import { Colors } from "./deps.ts"; import { buildAddon } from "./cli/main.ts"; import type { AddonType } from "./lib/common.ts"; -const VERSION = '1.2.0' +const VERSION = '1.2.2' type LostCommand = 'none' | 'help' | 'version' | 'build' | 'create' | 'serve' | 'convert-sdk2'; diff --git a/deno.json b/deno.json index 8bea3ff..b209d54 100644 --- a/deno.json +++ b/deno.json @@ -1,6 +1,6 @@ { "name": "@lost-c3/lib", - "version": "1.2.1", + "version": "1.2.2", "exports": { ".": "./mod.ts", "./cli": "./cli.ts"