Skip to content

Commit

Permalink
33af9cb に対する修正
Browse files Browse the repository at this point in the history
  • Loading branch information
kujirahand committed Oct 18, 2024
1 parent 33af9cb commit 880fc1f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
13 changes: 10 additions & 3 deletions batch/jsplugin2text.nako3
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ LINENO=0
  ここまで。
  # プラグイン名を決定
  Fからファイル名抽出
  「\.(php|mjs|mts|js|ts)$」を空に正規表現置換;
  「\.(php|mjs|mts|js|ts)$」を空に正規表現置換
  それをプラグイン名に代入。
  結果=「■{プラグイン名}{プラグイン種類}{改行}」
  Fを『/\.php$/』で正規表現マッチ。
Expand Down Expand Up @@ -86,8 +86,15 @@ LINENO=0
      対象を「plugin_[0-9a-zA-Z_]+.mjs」で正規表現マッチ。
      もし、そうならば
        FNAME=それの「.mjs」を「.mts」に置換。
        もし、FNAME=「plugin_api.mts」ならば、続ける。
        SRC_URL=「https://github.com/kujirahand/nadesiko3/blob/master/src/{FNAME}」
        「{DIR}/{FNAME}」を開く
        FULL=「{DIR}/{FNAME}」
        もし、FULLが存在ならば
          FULLを開く
        違えば
          「[ERROR] プラグインREQUIRE読み込み - {FULL} ... {FNAME}」を表示。
          終わる。
        ここまで。
        LINENO=1
        改行で区切る
        反復
Expand Down Expand Up @@ -269,7 +276,7 @@ LINENO=0
ARG=引数一覧[NO]
JOSI=助詞定義JSON[NO][I]
SS = SS & ARG & JOSI
ここまで;
ここまで
もし、SS≠空ならば
AAにSSを配列追加。
ここまで。
Expand Down
2 changes: 2 additions & 0 deletions src/plugin_node.mts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ import crypto from 'node:crypto'
import os from 'node:os'
import url from 'node:url'
import { NakoSystem } from '../core/src/plugin_api.mjs'

// eslint-disable-next-line @typescript-eslint/no-unused-vars
import { getEnv, isWindows, getCommandLineArgs, exit } from './deno_wrapper.mjs'

const __filename = url.fileURLToPath(import.meta.url)
Expand Down

0 comments on commit 880fc1f

Please sign in to comment.