Skip to content

Commit 5689f4c

Browse files
fix: wrong import in test
Signed-off-by: Henry <[email protected]>
1 parent c3ba4b3 commit 5689f4c

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

bun.lockb

440 Bytes
Binary file not shown.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"@changesets/changelog-github": "^0.5.0",
2121
"@changesets/cli": "^2.27.1",
2222
"@types/node": "^20.10.5",
23-
"bun-types": "^1.0.18",
23+
"bun-types": "^1.0.20",
2424
"scripts": "workspace:*",
2525
"turbo": "^1.11.2"
2626
},

packages/rollup-plugin-minify-template-literals/lib/index.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import path from "node:path";
22
import { expect, describe, mock, it } from "bun:test";
3-
import * as minify from "minify-literals";
3+
import * as minify from "./../../minify-literals/lib/index";
44
import type { TransformPluginContext } from "rollup";
55
import minifyHTML, { type Options } from "./index.js";
66

packages/rollup-plugin-minify-template-literals/lib/index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
import * as minify from "minify-literals";
2-
1+
import * as minify from "./../../minify-literals/lib/index";
32
import type { Plugin, SourceMapInput } from "rollup";
43
import { createFilter } from "@rollup/pluginutils";
54

0 commit comments

Comments
 (0)