diff options
| author | zyoshoka <107108195+zyoshoka@users.noreply.github.com> | 2023-12-24 16:16:58 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-24 16:16:58 +0900 |
| commit | 0009aa332bec1bb52ee5600d528419c0455576d2 (patch) | |
| tree | 0593784418d352fa60adbb323252170fdbbeb877 /packages/frontend/lib | |
| parent | Update CHANGELOG.md (diff) | |
| download | misskey-0009aa332bec1bb52ee5600d528419c0455576d2.tar.gz misskey-0009aa332bec1bb52ee5600d528419c0455576d2.tar.bz2 misskey-0009aa332bec1bb52ee5600d528419c0455576d2.zip | |
refactor(frontend): import宣言周りのエラーを修正 (#12773)
Diffstat (limited to 'packages/frontend/lib')
| -rw-r--r-- | packages/frontend/lib/rollup-plugin-unwind-css-module-class-name.test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/lib/rollup-plugin-unwind-css-module-class-name.test.ts b/packages/frontend/lib/rollup-plugin-unwind-css-module-class-name.test.ts index 550e08d7f7..535adc9c85 100644 --- a/packages/frontend/lib/rollup-plugin-unwind-css-module-class-name.test.ts +++ b/packages/frontend/lib/rollup-plugin-unwind-css-module-class-name.test.ts @@ -6,7 +6,7 @@ import { parse } from 'acorn'; import { generate } from 'astring'; import { describe, expect, it } from 'vitest'; -import { normalizeClass, unwindCssModuleClassName } from './rollup-plugin-unwind-css-module-class-name'; +import { normalizeClass, unwindCssModuleClassName } from './rollup-plugin-unwind-css-module-class-name.js'; import type * as estree from 'estree'; function parseExpression(code: string): estree.Expression { |