diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-03-23 17:30:14 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-03-23 17:30:14 +0900 |
| commit | d6e23b803b10a471bb5b1054b357c70a16e8f6da (patch) | |
| tree | 111c870777d931cc56b5e34553e1b286bb2ba78c /src/client/scripts/hpml | |
| parent | refactor(build): gulpを経由しないでTypeScriptのビルドを行うよ... (diff) | |
| download | sharkey-d6e23b803b10a471bb5b1054b357c70a16e8f6da.tar.gz sharkey-d6e23b803b10a471bb5b1054b357c70a16e8f6da.tar.bz2 sharkey-d6e23b803b10a471bb5b1054b357c70a16e8f6da.zip | |
refactor: Tweak path alias of client
Diffstat (limited to 'src/client/scripts/hpml')
| -rw-r--r-- | src/client/scripts/hpml/evaluator.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/scripts/hpml/evaluator.ts b/src/client/scripts/hpml/evaluator.ts index 20261d333d..68d140ff50 100644 --- a/src/client/scripts/hpml/evaluator.ts +++ b/src/client/scripts/hpml/evaluator.ts @@ -1,11 +1,11 @@ import autobind from 'autobind-decorator'; import { PageVar, envVarsDef, Fn, HpmlScope, HpmlError } from '.'; -import { version } from '@/config'; +import { version } from '@client/config'; import { AiScript, utils, values } from '@syuilo/aiscript'; import { createAiScriptEnv } from '../aiscript/api'; import { collectPageVars } from '../collect-page-vars'; import { initHpmlLib, initAiLib } from './lib'; -import * as os from '@/os'; +import * as os from '@client/os'; import { markRaw, ref, Ref, unref } from 'vue'; import { Expr, isLiteralValue, Variable } from './expr'; |