@k-l-lambda/lilylet 0.1.45 → 0.1.46
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/lib/lilypondDecoder.js
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
import * as lilyParser from "@k-l-lambda/lotus/lib/inc/lilyParser/index.js";
|
|
9
9
|
// Import pre-compiled LilyPond parser (browser-compatible)
|
|
10
10
|
// @ts-ignore - CommonJS module
|
|
11
|
-
import * as lilypondParser from "@k-l-lambda/lotus/lib
|
|
11
|
+
import * as lilypondParser from "@k-l-lambda/lotus/lib/lilyParser.js";
|
|
12
12
|
import { Clef, StemDirection, Accidental, Phonet, ArticulationType, OrnamentType, DynamicType, HairpinType, PedalType, NavigationMarkType, Placement, } from "./types.js";
|
|
13
13
|
// Phonet names mapping
|
|
14
14
|
const PHONET_NAMES = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@k-l-lambda/lilylet",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.46",
|
|
4
4
|
"description": "Lilylet is a lilyopnd-like sheet music language designed for Markdown rendering and symbolic music representation in AIGC applications.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -10,7 +10,7 @@ import * as lilyParser from "@k-l-lambda/lotus/lib/inc/lilyParser/index.js";
|
|
|
10
10
|
|
|
11
11
|
// Import pre-compiled LilyPond parser (browser-compatible)
|
|
12
12
|
// @ts-ignore - CommonJS module
|
|
13
|
-
import * as lilypondParser from "@k-l-lambda/lotus/lib
|
|
13
|
+
import * as lilypondParser from "@k-l-lambda/lotus/lib/lilyParser.js";
|
|
14
14
|
|
|
15
15
|
import {
|
|
16
16
|
LilyletDoc,
|