Skip to content

Commit

Permalink
v1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
dakln committed Oct 30, 2024
1 parent d20f7bf commit 82c8606
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion addon_base/plugin/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 });
Expand Down
2 changes: 1 addition & 1 deletion cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';

Expand Down
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lost-c3/lib",
"version": "1.2.1",
"version": "1.2.2",
"exports": {
".": "./mod.ts",
"./cli": "./cli.ts"
Expand Down

0 comments on commit 82c8606

Please sign in to comment.