Skip to content

Commit 14a92a0

Browse files
committed
Remove files
1 parent 21bc11a commit 14a92a0

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* _/ |
99
* |__/
1010
*/
11-
import { hmsToSeconds, toVttCue } from './helpers.js';
11+
import { hmsToSeconds, toVttCue } from './src/helpers.js';
1212
import { transformSrtTracks } from './src/transformer.js';
1313

1414
export {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
},
1212
"scripts": {
1313
"dev": "vite",
14-
"build": "npm run build:esm && npm run build:esm",
14+
"build": "npm run build:iife && npm run build:esm",
1515
"build:iife": "vite build",
1616
"build:esm": "vite --config vite.config.esm.js build",
1717
"preview": "vite preview",

helpers.js renamed to src/helpers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import Cue from "./src/cue.js"
1+
import Cue from "./cue.js"
22

33
/**
44
* Converts a SRT cue into a VTT compatible cue

src/track.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import Cue from "./cue.js";
2-
import { toVttCue } from '../helpers.js';
2+
import { toVttCue } from './helpers.js';
33

44
export default class Track {
55
/**

0 commit comments

Comments
 (0)