@tyleretters/discography 2.0.26 → 2.0.27
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 +5 -4
- package/dist/discography.yml +4 -0
- package/dist/index.es.js +10 -0
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/discography.yml +4 -0
package/README.md
CHANGED
|
@@ -20,12 +20,13 @@
|
|
|
20
20
|
|
|
21
21
|
## Updating & Publishing
|
|
22
22
|
|
|
23
|
-
###
|
|
23
|
+
### One Shot
|
|
24
24
|
|
|
25
|
-
|
|
26
|
-
-
|
|
25
|
+
```zsh
|
|
26
|
+
cd src && python3 -m venv venv && source venv/bin/activate && pip install -r requirements.txt && cd ../ &&npm run build && git add . && git commit -m "++" && git push origin main && npm version patch && npm publish
|
|
27
|
+
```
|
|
27
28
|
|
|
28
|
-
###
|
|
29
|
+
### Sequential
|
|
29
30
|
|
|
30
31
|
- Update `./src/discography.yml`
|
|
31
32
|
- `npm run build` (convert yml to ts & build dist ready js)
|
package/dist/discography.yml
CHANGED
|
@@ -15,8 +15,12 @@
|
|
|
15
15
|
title: RED HANDED
|
|
16
16
|
length: 00:02:08
|
|
17
17
|
streams:
|
|
18
|
+
- platform: Apple Music
|
|
19
|
+
url: https://music.apple.com/us/album/continuum-hack-original-motion-picture-soundtrack-ep/1846962431
|
|
18
20
|
- platform: Bandcamp
|
|
19
21
|
url: https://stuxnet.bandcamp.com/album/continuum-hack-ost
|
|
22
|
+
- platform: Spotify
|
|
23
|
+
url: https://open.spotify.com/album/3PaL2SJ3mbv2asMlbOZbUh
|
|
20
24
|
notes: |
|
|
21
25
|
HUNTED BY PARAMILITARY FORCES, A ROGUE EXPLORER FOLLOWS A SIGNAL TO BRING FORTH THE NEXT LEAP IN CONSCIOUSNESS.
|
|
22
26
|
|
package/dist/index.es.js
CHANGED
|
@@ -28,10 +28,20 @@ const e = [
|
|
|
28
28
|
}
|
|
29
29
|
],
|
|
30
30
|
streams: [
|
|
31
|
+
{
|
|
32
|
+
platform: "Apple Music",
|
|
33
|
+
url: "https://music.apple.com/us/album/continuum-hack-original-motion-picture-soundtrack-ep/1846962431",
|
|
34
|
+
id: "648b934eb1d900fbcd226670171140fc"
|
|
35
|
+
},
|
|
31
36
|
{
|
|
32
37
|
platform: "Bandcamp",
|
|
33
38
|
url: "https://stuxnet.bandcamp.com/album/continuum-hack-ost",
|
|
34
39
|
id: "bb49a2ca64ceaf86d33f7f747ca471b6"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
platform: "Spotify",
|
|
43
|
+
url: "https://open.spotify.com/album/3PaL2SJ3mbv2asMlbOZbUh",
|
|
44
|
+
id: "a3ef3dc535e02c0befde497690de8dc6"
|
|
35
45
|
}
|
|
36
46
|
],
|
|
37
47
|
notes: "<p>HUNTED BY PARAMILITARY FORCES, A ROGUE EXPLORER FOLLOWS A SIGNAL TO BRING FORTH THE NEXT LEAP IN CONSCIOUSNESS.</p><p></p><p>HTTPS://CONTINUUMHACK.COM</p>",
|