@tyleretters/discography 1.0.1 → 1.0.2
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 +1 -2
- package/dist/discography.d.ts +31 -1
- package/dist/discography.js +1817 -14
- package/dist/discography.js.map +1 -1
- package/dist/discography.yml +851 -3
- package/dist/index.js +1817 -14
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/discography.yml +851 -3
package/README.md
CHANGED
|
@@ -8,8 +8,7 @@
|
|
|
8
8
|
## Updating & Publishing
|
|
9
9
|
|
|
10
10
|
- Update `./src/discography.yml`
|
|
11
|
-
- `npm run convert` (convert yml to ts)
|
|
12
|
-
- `npm run build` (build dist ready js)
|
|
11
|
+
- `npm run convert && npm run build` (convert yml to ts & build dist ready js)
|
|
13
12
|
- `git add . && git commit -m "++" && git push origin main`
|
|
14
13
|
- QA: [https://github.com/tyleretters/discography](https://github.com/tyleretters/discography)
|
|
15
14
|
- `npm version patch`
|
package/dist/discography.d.ts
CHANGED
|
@@ -14,13 +14,17 @@ export declare const discography: ({
|
|
|
14
14
|
length: string;
|
|
15
15
|
id: string;
|
|
16
16
|
}[];
|
|
17
|
+
streams: {
|
|
18
|
+
platform: string;
|
|
19
|
+
url: string;
|
|
20
|
+
id: string;
|
|
21
|
+
}[];
|
|
17
22
|
notes: string;
|
|
18
23
|
credits: string;
|
|
19
24
|
project_slug: string;
|
|
20
25
|
release_slug: string;
|
|
21
26
|
cover_url: string;
|
|
22
27
|
id: string;
|
|
23
|
-
streams?: undefined;
|
|
24
28
|
mp3_url?: undefined;
|
|
25
29
|
wav_url?: undefined;
|
|
26
30
|
monospaceNotes?: undefined;
|
|
@@ -84,6 +88,32 @@ export declare const discography: ({
|
|
|
84
88
|
id: string;
|
|
85
89
|
streams?: undefined;
|
|
86
90
|
monospaceNotes?: undefined;
|
|
91
|
+
} | {
|
|
92
|
+
title: string;
|
|
93
|
+
project: string;
|
|
94
|
+
released: string;
|
|
95
|
+
type: string;
|
|
96
|
+
format: string;
|
|
97
|
+
role: string;
|
|
98
|
+
label: string;
|
|
99
|
+
mp3: boolean;
|
|
100
|
+
wav: boolean;
|
|
101
|
+
tracks: {
|
|
102
|
+
number: number;
|
|
103
|
+
title: string;
|
|
104
|
+
length: string;
|
|
105
|
+
id: string;
|
|
106
|
+
}[];
|
|
107
|
+
notes: string;
|
|
108
|
+
credits: string;
|
|
109
|
+
project_slug: string;
|
|
110
|
+
release_slug: string;
|
|
111
|
+
cover_url: string;
|
|
112
|
+
id: string;
|
|
113
|
+
streams?: undefined;
|
|
114
|
+
mp3_url?: undefined;
|
|
115
|
+
wav_url?: undefined;
|
|
116
|
+
monospaceNotes?: undefined;
|
|
87
117
|
} | {
|
|
88
118
|
title: string;
|
|
89
119
|
project: string;
|