taiyme / misskey

🍴 taiyme is an OSS forked from Misskey.
GNU Affero General Public License v3.0
31 stars 6 forks source link

以前のAiScriptとAiScript Nextを共存させたい #6

Closed taiyme closed 1 month ago

taiyme commented 1 year ago

Summary

0.11.1 → 0.12.x では言語の互換性が無いためプラグインが全滅し、全俺が阿鼻叫喚なので

以前のプラグインも引き続き使えるように、かつ新しいプラグインも利用できるようにしたい

taiyme commented 1 year ago

0.12.0に変更したcommit https://github.com/misskey-dev/misskey/commit/e44f83fb9c13e4fab8aee07603632d533d12b4d8

taiyme commented 1 year ago

/// @ 0.12.x はAiScript Nextのutils.getLangVersionで判定できるみたい (エディション明示構文)

取得された値が null or "0.11.1" であればそれに対応した関数を使うようにしたい

taiyme commented 1 year ago
// package.json
{
  "@syuilo/aiscript": "0.11.1",
  "@syuilo/aiscript-next": "npm:@syuilo/aiscript@0.12.4",
}
import {} from '@syuilo/aiscript';
import {} from '@syuilo/aiscript-next';

バージョンの共存はこんな感じにすればよさそうかな

taiyme commented 1 year ago

AiScriptの処理、集約したいな ファイルごとに追記するのはとてもつらい