music-lyric-kit 0.2.0 → 0.4.0
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/index.comm.js +1 -1
- package/dist/index.ecma.d.ts +12 -2
- package/dist/index.ecma.js +13 -6
- package/dist/index.ecma.js.map +1 -1
- package/package.json +4 -3
package/dist/index.comm.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const u=require("@music-lyric-kit/lyric"),l=require("@music-lyric-kit/plugin-format-lrc"),a=require("@music-lyric-kit/plugin-transform-interlude"),c=require("@music-lyric-kit/core");function n(e){const t=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(e){for(const r in e)if(r!=="default"){const o=Object.getOwnPropertyDescriptor(e,r);Object.defineProperty(t,r,o.get?o:{enumerable:!0,get:()=>e[r]})}}return t.default=e,Object.freeze(t)}const i=n(u),s=n(l),p=n(a),g=Object.freeze(Object.defineProperty({__proto__:null,Interlude:p,Lrc:s},Symbol.toStringTag,{value:"Module"}));exports.Lyric=i;Object.defineProperty(exports,"Generator",{enumerable:!0,get:()=>c.Generator});Object.defineProperty(exports,"Parser",{enumerable:!0,get:()=>c.Parser});exports.Plugins=g;
|
|
2
2
|
//# sourceMappingURL=index.comm.js.map
|
package/dist/index.ecma.d.ts
CHANGED
|
@@ -1,11 +1,21 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Generator as Generator_2 } from '@music-lyric-kit/core';
|
|
2
|
+
import * as Interlude from '@music-lyric-kit/plugin-transform-interlude';
|
|
3
|
+
import * as Lrc from '@music-lyric-kit/plugin-format-lrc';
|
|
2
4
|
import * as Lyric from '@music-lyric-kit/lyric';
|
|
3
5
|
import { Parser } from '@music-lyric-kit/core';
|
|
4
6
|
|
|
5
|
-
export {
|
|
7
|
+
export { Generator_2 as Generator }
|
|
6
8
|
|
|
7
9
|
export { Lyric }
|
|
8
10
|
|
|
9
11
|
export { Parser }
|
|
10
12
|
|
|
13
|
+
declare namespace Plugins {
|
|
14
|
+
export {
|
|
15
|
+
Lrc,
|
|
16
|
+
Interlude
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
export { Plugins }
|
|
20
|
+
|
|
11
21
|
export { }
|
package/dist/index.ecma.js
CHANGED
|
@@ -1,9 +1,16 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import
|
|
3
|
-
import
|
|
1
|
+
import * as o from "@music-lyric-kit/lyric";
|
|
2
|
+
import * as r from "@music-lyric-kit/plugin-format-lrc";
|
|
3
|
+
import * as e from "@music-lyric-kit/plugin-transform-interlude";
|
|
4
|
+
import { Generator as a, Parser as i } from "@music-lyric-kit/core";
|
|
5
|
+
const t = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
6
|
+
__proto__: null,
|
|
7
|
+
Interlude: e,
|
|
8
|
+
Lrc: r
|
|
9
|
+
}, Symbol.toStringTag, { value: "Module" }));
|
|
4
10
|
export {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
11
|
+
a as Generator,
|
|
12
|
+
o as Lyric,
|
|
13
|
+
i as Parser,
|
|
14
|
+
t as Plugins
|
|
8
15
|
};
|
|
9
16
|
//# sourceMappingURL=index.ecma.js.map
|
package/dist/index.ecma.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.ecma.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.ecma.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "music-lyric-kit",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"author": "folltoshe",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Music Lyric Kit",
|
|
@@ -34,8 +34,9 @@
|
|
|
34
34
|
],
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@music-lyric-kit/lyric": "0.2.0",
|
|
37
|
-
"@music-lyric-kit/
|
|
38
|
-
"@music-lyric-kit/
|
|
37
|
+
"@music-lyric-kit/core": "0.3.0",
|
|
38
|
+
"@music-lyric-kit/plugin-format-lrc": "0.3.0",
|
|
39
|
+
"@music-lyric-kit/plugin-transform-interlude": "0.1.0"
|
|
39
40
|
},
|
|
40
41
|
"scripts": {
|
|
41
42
|
"build": "vite build"
|