Skip to content

Commit 2868109

Browse files
author
cursor-ide
committed
refactor: migrate bundler imports to use JSR registry package
1 parent b47a251 commit 2868109

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

deno.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
"@std/fs": "jsr:@std/fs@^1.0.0",
1919
"@std/cli": "jsr:@std/cli@^1.0.0",
2020
"@std/fmt/colors": "jsr:@std/fmt@^1.0.0/colors",
21-
"@typed/vscode": "jsr:@typed/vscode@^1.101.0"
21+
"@typed/vscode": "jsr:@typed/vscode@^1.101.0",
22+
"@vsce/bundler": "jsr:@vsce/bundler@^1.0.0"
2223
},
2324
"fmt": {
2425
"useTabs": true,

tests/basic_files.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { join } from '@std/path';
2-
import { bundleExtension } from '../../vsce-bundler/mod.ts';
2+
import { bundleExtension } from 'jsr:@vsce/bundler@^1.0.0';
33
import { assert } from '@std/assert';
44
import { scaffoldProject } from '../mod.ts';
55

tests/templates_bundle.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { join } from '@std/path';
22
import { assert } from '@std/assert';
33
import { scaffoldProject } from '../mod.ts';
4-
import { bundleExtension } from '../../vsce-bundler/mod.ts';
4+
import { bundleExtension } from 'jsr:@vsce/bundler@^1.0.0';
55

66
interface Case {
77
template: string;

0 commit comments

Comments
 (0)