Skip to content

Commit

Permalink
feat: switch to master-studio branch on ccjs submodule for now
Browse files Browse the repository at this point in the history
  • Loading branch information
isaiahdahl committed Nov 10, 2022
1 parent 9f1ef6d commit f99006d
Show file tree
Hide file tree
Showing 3 changed files with 4,007 additions and 4,492 deletions.
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[submodule "packages/chordsheetjs"]
path = packages/chordsheetjs
url = git@github.com:BetterMusic/ChordSheetJS.git
branch = master
branch = master-studio
2 changes: 1 addition & 1 deletion packages/chordsheetjs
Submodule chordsheetjs updated 88 files
+4 −3 .eslintrc.js
+113 −113 README.md
+6 −4 package.json
+110 −82 src/chord.ts
+8 −8 src/chord_sheet/ast_component.ts
+10 −0 src/chord_sheet/ast_type.ts
+14 −10 src/chord_sheet/chord_lyrics_pair.ts
+12 −10 src/chord_sheet/chord_pro/composite.ts
+3 −1 src/chord_sheet/chord_pro/evaluatable.ts
+4 −4 src/chord_sheet/chord_pro/evaluation_error.ts
+8 −5 src/chord_sheet/chord_pro/literal.ts
+38 −25 src/chord_sheet/chord_pro/ternary.ts
+4 −4 src/chord_sheet/comment.ts
+26 −22 src/chord_sheet/line.ts
+20 −14 src/chord_sheet/metadata.ts
+7 −7 src/chord_sheet/metadata_accessors.ts
+2 −2 src/chord_sheet/paragraph.ts
+90 −63 src/chord_sheet/song.ts
+42 −28 src/chord_sheet/tag.ts
+3 −3 src/chord_sheet/trace_info.ts
+104 −30 src/chord_sheet_serializer.ts
+6 −0 src/constants.ts
+19 −14 src/formatter/chord_pro_formatter.ts
+154 −0 src/formatter/chords_over_words_formatter.ts
+24 −7 src/formatter/configuration/configuration.ts
+10 −2 src/formatter/configuration/metadata_configuration.ts
+3 −3 src/formatter/formatter.ts
+15 −40 src/formatter/html_div_formatter.ts
+78 −8 src/formatter/html_formatter.ts
+8 −42 src/formatter/html_table_formatter.ts
+3 −2 src/formatter/templates/html_div_formatter.ts
+2 −1 src/formatter/templates/html_table_formatter.ts
+35 −31 src/formatter/text_formatter.ts
+16 −13 src/helpers.ts
+3 −0 src/index.ts
+119 −133 src/key.ts
+0 −29 src/key_config.json
+69 −0 src/key_config.ts
+4 −3 src/normalize_mappings/enharmonic-normalize.ts
+20 −23 src/normalize_mappings/generate-suffix-normalize-mapping.ts
+84 −45 src/note.ts
+1 −1 src/parser/chord_pro_parser.ts
+28 −15 src/parser/chord_sheet_parser.ts
+4 −4 src/parser/chords_over_words_grammar.pegjs
+1 −1 src/parser/chords_over_words_parser.ts
+5 −5 src/parser/parser_warning.ts
+2 −2 src/parser/peg_based_parser.ts
+20 −10 src/parser/ultimate_guitar_parser.ts
+18 −12 src/template_helpers.ts
+30 −32 src/utilities.ts
+13 −13 test/chord_sheet/chord_pro/ternary.test.ts
+2 −2 test/chord_sheet/metadata.test.ts
+5 −7 test/chord_sheet/song.test.ts
+7 −7 test/chord_sheet/tag.test.ts
+6 −6 test/chord_symbol/normalize-suffix.test.ts
+1 −1 test/chord_symbol/normalize.test.ts
+16 −0 test/chord_symbol/parse.test.ts
+2 −2 test/chord_symbol/to_chord_symbol_string.test.ts
+1 −1 test/chord_symbol/to_numeral.test.ts
+0 −282 test/fixtures/changed_song.json
+307 −0 test/fixtures/changed_song.ts
+107 −0 test/fixtures/kingdom_chordpro.txt
+165 −0 test/fixtures/kingdom_chords_over_words.txt
+0 −282 test/fixtures/serialized_song.json
+307 −0 test/fixtures/serialized_song.ts
+41 −0 test/formatter/chords_over_words_formatter.test.ts
+38 −4 test/formatter/html_div_formatter.test.ts
+43 −4 test/formatter/html_table_formatter.test.ts
+1 −1 test/get_capos.test.ts
+1 −4 test/integration/chord_pro_to_html_table.test.ts
+34 −0 test/integration/chordpro_to_chords_over_words.test.ts
+72 −0 test/integration/chords_over_words_to_chordpro.test.ts
+4 −9 test/jest.d.ts
+2 −2 test/key/distance.test.ts
+2 −2 test/key/to_chord_symbol.test.ts
+1 −1 test/key/to_numeral.test.ts
+1 −1 test/key/to_numeric.test.ts
+27 −6 test/matchers.ts
+14 −12 test/numeral_chord/clone.test.ts
+4 −4 test/numeral_chord/to_chord_symbol_string.test.ts
+7 −7 test/numeric_chord/normalize-suffix.test.ts
+4 −4 test/numeric_chord/to_chord_symbol_string.test.ts
+7 −7 test/parser/chord_pro_parser.test.ts
+84 −1 test/parser/chords_over_words_parser.test.ts
+4 −4 test/parser/ultimate_guitar_parser.test.ts
+10 −24 test/utilities.ts
+9 −3 tsconfig.json
+7,577 −0 yarn.lock
Loading

0 comments on commit f99006d

Please sign in to comment.