Skip to content

Commit

Permalink
chore: rename entrypoint, export
Browse files Browse the repository at this point in the history
  • Loading branch information
idleberg committed Nov 17, 2023
1 parent d1e78c7 commit e053edf
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "A library to convert Winamp AVS presets into Webvs JSON",
"license": "MIT",
"type": "module",
"exports": "./dist/webvsc.mjs",
"exports": "./dist/webvsc.js",
"types": "./dist",
"engines": {
"node": ">=18"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/_helper.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { basename, extname } from 'node:path';
import { convertPreset } from '../src/main';
import { convertPreset } from '../src/webvsc';
import { promises as fs, readFileSync, statSync } from 'node:fs';

const defaultArgs = {
Expand Down
2 changes: 1 addition & 1 deletion tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default defineConfig({
clean: true,
dts: true,
entry: [
'src/main.ts'
'src/webvsc.ts'
],
external: [
'log-symbols',
Expand Down

0 comments on commit e053edf

Please sign in to comment.