tja-parser 0.2.6 → 0.2.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/class/Bar.d.ts.map +1 -1
- package/dist/class/Bar.js +1 -2
- package/dist/class/Bar.js.map +1 -1
- package/dist/class/BarLine.d.ts +14 -0
- package/dist/class/BarLine.d.ts.map +1 -0
- package/dist/class/BarLine.js +26 -0
- package/dist/class/BarLine.js.map +1 -0
- package/dist/class/Branch.d.ts +1 -10
- package/dist/class/Branch.d.ts.map +1 -1
- package/dist/class/Branch.js +1 -2
- package/dist/class/Branch.js.map +1 -1
- package/dist/class/Course.d.ts +2 -0
- package/dist/class/Course.d.ts.map +1 -1
- package/dist/class/Course.js +17 -1
- package/dist/class/Course.js.map +1 -1
- package/dist/class/NoteGroup.d.ts +2 -0
- package/dist/class/NoteGroup.d.ts.map +1 -1
- package/dist/class/NoteGroup.js +11 -0
- package/dist/class/NoteGroup.js.map +1 -1
- package/dist/class/Song.js +1 -1
- package/dist/class/Song.js.map +1 -1
- package/format.mediawiki +714 -714
- package/package.json +1 -1
- package/src/class/Bar.ts +71 -72
- package/src/class/Branch.ts +32 -33
- package/src/class/Command.ts +138 -138
- package/src/class/Course.ts +512 -496
- package/src/class/Item.ts +26 -26
- package/src/class/Note.ts +171 -171
- package/src/class/NoteGroup.ts +35 -23
- package/src/class/Song.ts +96 -96
- package/src/exception/ParseException.ts +12 -12
- package/src/index.ts +12 -12
- package/tsconfig.json +22 -22
package/src/index.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
export * from './class/Bar.js';
|
|
2
|
-
export * from './class/Branch.js';
|
|
3
|
-
export * from './class/Command.js';
|
|
4
|
-
export * from './class/Course.js';
|
|
5
|
-
export * from './class/Item.js';
|
|
6
|
-
export * from './class/Note.js';
|
|
7
|
-
export * from './class/NoteGroup.js';
|
|
8
|
-
export * from './class/Song.js';
|
|
9
|
-
|
|
10
|
-
export * from './exception/ParseException.js';
|
|
11
|
-
export * from './exception/TjaException.js';
|
|
12
|
-
|
|
1
|
+
export * from './class/Bar.js';
|
|
2
|
+
export * from './class/Branch.js';
|
|
3
|
+
export * from './class/Command.js';
|
|
4
|
+
export * from './class/Course.js';
|
|
5
|
+
export * from './class/Item.js';
|
|
6
|
+
export * from './class/Note.js';
|
|
7
|
+
export * from './class/NoteGroup.js';
|
|
8
|
+
export * from './class/Song.js';
|
|
9
|
+
|
|
10
|
+
export * from './exception/ParseException.js';
|
|
11
|
+
export * from './exception/TjaException.js';
|
|
12
|
+
|
|
13
13
|
export type * from './types.js';
|
package/tsconfig.json
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
{
|
|
2
|
-
"include": [
|
|
3
|
-
"./src/**/*.ts"
|
|
4
|
-
],
|
|
5
|
-
"compilerOptions": {
|
|
6
|
-
"target": "ESNext",
|
|
7
|
-
"declaration": true,
|
|
8
|
-
"declarationMap": true,
|
|
9
|
-
"sourceMap": true,
|
|
10
|
-
"removeComments": true,
|
|
11
|
-
"esModuleInterop": true,
|
|
12
|
-
"forceConsistentCasingInFileNames": true,
|
|
13
|
-
"strict": true,
|
|
14
|
-
"skipLibCheck": true,
|
|
15
|
-
"module": "NodeNext",
|
|
16
|
-
"moduleResolution": "NodeNext",
|
|
17
|
-
"outDir": "./dist"
|
|
18
|
-
},
|
|
19
|
-
"exclude": [
|
|
20
|
-
"./node_modules",
|
|
21
|
-
"**/node_modules/*"
|
|
22
|
-
]
|
|
1
|
+
{
|
|
2
|
+
"include": [
|
|
3
|
+
"./src/**/*.ts"
|
|
4
|
+
],
|
|
5
|
+
"compilerOptions": {
|
|
6
|
+
"target": "ESNext",
|
|
7
|
+
"declaration": true,
|
|
8
|
+
"declarationMap": true,
|
|
9
|
+
"sourceMap": true,
|
|
10
|
+
"removeComments": true,
|
|
11
|
+
"esModuleInterop": true,
|
|
12
|
+
"forceConsistentCasingInFileNames": true,
|
|
13
|
+
"strict": true,
|
|
14
|
+
"skipLibCheck": true,
|
|
15
|
+
"module": "NodeNext",
|
|
16
|
+
"moduleResolution": "NodeNext",
|
|
17
|
+
"outDir": "./dist"
|
|
18
|
+
},
|
|
19
|
+
"exclude": [
|
|
20
|
+
"./node_modules",
|
|
21
|
+
"**/node_modules/*"
|
|
22
|
+
]
|
|
23
23
|
}
|