Skip to content

Commit

Permalink
Fix: format command doesn't work (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
t-hamano authored Dec 2, 2023
1 parent 28960f7 commit e8c0492
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 12 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/run-test-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ on:
- '*'

jobs:

test:
runs-on: ubuntu-latest
strategy:
Expand Down Expand Up @@ -75,7 +74,7 @@ jobs:
deploy:
name: Deploy to WP.org
runs-on: ubuntu-latest
needs: [ test ]
needs: [test]

steps:
- name: Checkout
Expand Down
1 change: 0 additions & 1 deletion .prettierrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ const config = {
printWidth: 100,
bracketSpacing: true,
parenSpacing: true,
parser: 'typescript',
bracketSameLine: false,
};

Expand Down
4 changes: 2 additions & 2 deletions src/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"title": "Piano",
"description": "Play the melody.",
"category": "media",
"keywords": [ "audio", "music", "piano"],
"keywords": [ "audio", "music", "piano" ],
"icon": "<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='black' viewBox='0 0 24 24'><path d='M7.3,23h4.2h1h4.2h1H23V1h-5.2h-1h-4.2h-1H7.3h-1H1v22h5.2H7.3z M21.9,21.9h-4v-6.4h1.3V2.1h2.7L21.9,21.9L21.9,21.9z M16.6,15.5v6.4h-4v-6.4h1.3V2.1h1.2v13.4L16.6,15.5L16.6,15.5z M11.4,15.5v6.4h-4v-6.4h1.3V2.1h1.2v13.4L11.4,15.5L11.4,15.5z M6.1,21.9h-4V2.1h2.6v13.4h1.4V21.9z'/></svg>",
"attributes": {
"volume": {
Expand Down Expand Up @@ -34,7 +34,7 @@
}
},
"supports": {
"align": [ "wide", "full" ],
"align": [ "wide", "full" ],
"color": {
"enableContrastChecker": false,
"text": false,
Expand Down
9 changes: 2 additions & 7 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,6 @@
"resolveJsonModule": true,
"skipLibCheck": true
},
"include": [
"src/**/*",
"src/**/*.json"
],
"exclude": [
"**/build/**",
]
"include": [ "src/**/*", "src/**/*.json" ],
"exclude": [ "**/build/**" ]
}

0 comments on commit e8c0492

Please sign in to comment.