Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ddycai/chord-transposer
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.0.4
Choose a base ref
...
head repository: ddycai/chord-transposer
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 13 commits
  • 5 files changed
  • 1 contributor

Commits on Aug 20, 2023

  1. Copy the full SHA
    1b2c0f1 View commit details
  2. 3.0.5

    ddycai committed Aug 20, 2023
    Copy the full SHA
    33a5304 View commit details
  3. Try to fix workflow error.

    ddycai committed Aug 20, 2023
    Copy the full SHA
    96fa126 View commit details
  4. Try to fix the workflow error.

    ddycai committed Aug 20, 2023
    Copy the full SHA
    238ba63 View commit details
  5. 3.0.6

    ddycai committed Aug 20, 2023
    Copy the full SHA
    6c0e509 View commit details
  6. Fix npm workflow error.

    ddycai committed Aug 20, 2023
    Copy the full SHA
    69098ac View commit details
  7. 3.0.7

    ddycai committed Aug 20, 2023
    Copy the full SHA
    c485964 View commit details
  8. Copy the full SHA
    b9582c7 View commit details
  9. 3.0.8

    ddycai committed Aug 20, 2023
    Copy the full SHA
    f25ba37 View commit details
  10. Copy the full SHA
    3fa4337 View commit details
  11. 3.0.9

    ddycai committed Aug 20, 2023
    Copy the full SHA
    2503acd View commit details

Commits on Aug 21, 2023

  1. Add demo link.

    ddycai committed Aug 21, 2023
    Copy the full SHA
    8433de9 View commit details
  2. Copy the full SHA
    0984e8a View commit details
Showing with 143 additions and 623 deletions.
  1. +1 −1 .github/workflows/nodejs-ci.yml
  2. +2 −2 .github/workflows/npm-publish.yml
  3. +7 −2 README.md
  4. +131 −616 package-lock.json
  5. +2 −2 package.json
2 changes: 1 addition & 1 deletion .github/workflows/nodejs-ci.yml
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@ jobs:

strategy:
matrix:
node-version: [10.x, 12.x, 14.x]
node-version: [16.x]

steps:
- uses: actions/checkout@v2
4 changes: 2 additions & 2 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
node-version: 16
- run: npm ci
- run: npm test

@@ -25,7 +25,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
node-version: 16
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm publish
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
Chord Transposer
========

Javascript/TypeScript library for transposing musical chords within arbitrary
text.
Javascript (Typescript) library for transposing musical chords within text.

## Demo

Web app: http://ddycai.github.io/chord-transposer

The source code for the web app demo is on the `app` branch: https://github.com/ddycai/chord-transposer/tree/app

## Usage

747 changes: 131 additions & 616 deletions package-lock.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "chord-transposer",
"version": "3.0.4",
"version": "3.0.9",
"description": "Transposes musical chords in arbitrary text.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"ts-enums": "0.0.6",
"ts-enums": "^0.0.6",
"xregexp": "^4.4.0"
},
"devDependencies": {