Skip to content

Commit ad382a2

Browse files
committed
Fix published files to actually include the model file, oops!
1 parent df05aa7 commit ad382a2

File tree

5 files changed

+4
-5
lines changed

5 files changed

+4
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Simply import and create a new instance of `SongShowPlus`, then pass the content
2323
```typescript
2424
import { readFile } from 'fs';
2525
import { SongShowPlus } from 'songshowplus-parser';
26-
import { ISongShowPlusSong } from 'songshowplus-parser/dist/main/model'; //Add this only If you need the type info
26+
import { ISongShowPlusSong } from 'songshowplus-parser/dist/main/model'; //Add only if you need the type defs
2727

2828
const sspParser = new SongShowPlus();
2929

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "songshowplus-parser",
3-
"version": "2.0.2",
3+
"version": "2.0.3",
44
"description": "Parses and extracts data from SongShow Plus files",
55
"main": "dist/main/index.js",
66
"typings": "dist/main/index.d.ts",
@@ -27,7 +27,6 @@
2727
"dist/module",
2828
"!**/*.spec.*",
2929
"!**/*.json",
30-
"!**/models.js",
3130
"!**/*.tsbuildinfo*",
3231
"LICENSE",
3332
"README.md"

src/index.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { readFileSync } from 'fs';
2-
import { SongShowPlusSong } from './models';
2+
import { SongShowPlusSong } from './model';
33
import { SongShowPlus } from '.';
44

55
describe('SongShowPlus', (): void => {

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {
44
ISongSection,
55
ISongSectionBufferInfo,
66
SongShowPlusSong,
7-
} from './models';
7+
} from './model';
88

99
export class SongShowPlus {
1010
private readonly byteLength = 4;
File renamed without changes.

0 commit comments

Comments
 (0)