@rocksky/cli 0.3.0 → 0.3.1
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/README.md +0 -6
- package/dist/drizzle/0001_awesome_gabe_jones.sql +1 -0
- package/dist/drizzle/meta/0001_snapshot.json +1569 -0
- package/dist/drizzle/meta/_journal.json +7 -0
- package/dist/index.js +313 -84
- package/drizzle/0001_awesome_gabe_jones.sql +1 -0
- package/drizzle/meta/0001_snapshot.json +1569 -0
- package/drizzle/meta/_journal.json +7 -0
- package/package.json +5 -1
- package/src/cmd/scrobble-api.ts +8 -0
- package/src/cmd/sync.ts +345 -72
- package/src/schema/tracks.ts +40 -32
package/README.md
CHANGED
|
@@ -113,12 +113,6 @@ rocksky albums [did]
|
|
|
113
113
|
rocksky tracks [did]
|
|
114
114
|
```
|
|
115
115
|
|
|
116
|
-
`scrobble` - Manually scrobbles a track.
|
|
117
|
-
|
|
118
|
-
```bash
|
|
119
|
-
rocksky scrobble "Karma Police" "Radiohead"
|
|
120
|
-
```
|
|
121
|
-
|
|
122
116
|
`scrobble-api` - Start a local listenbrainz/lastfm compatibility server
|
|
123
117
|
|
|
124
118
|
```bash
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
CREATE INDEX `idx_title_artist_album_albumartist` ON `tracks` (`title`,`artist`,`album`,`album_artist`);
|