@tyleretters/discography 0.0.30 → 0.0.31

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 CHANGED
@@ -1,30 +1,21 @@
1
- # Publishing
2
-
3
- - Update `discography.yml`
4
- - `npm run convert`
5
- - `npm version patch`
6
- - `npm run build`
7
- - `npm publish --otp=<via_1password>`
8
-
9
- ## About
1
+ # Discography of Tyler Etters
10
2
 
11
3
  - This repo builds a canonical discography of the music of Tyler Etters.
12
4
  - This discography is incomplete.
13
5
  - Release dates are in a modified "Long Now" format, prefixed with `0`. This also solves for some date/object/string/parsing/conversion issues.
14
6
  - EPs are defined as being less than or equal to 29 minutes 59 seconds.
15
7
 
16
- ## Requirements
8
+ ## Updating & Publishing
17
9
 
18
- JSON script built with Python 3.11.5. See `src/convert.py` for required imports.
10
+ - Update `./src/discography.yml`
11
+ - `npm run convert` (convert yml to ts)
12
+ - `npm run build` (build dist ready js)
13
+ - `git add . && git commit -m "++" && git push origin main`
14
+ - QA: [https://github.com/tyleretters/discography](https://github.com/tyleretters/discography)
15
+ - `npm version patch`
16
+ - `npm publish --otp=<via_1password>`
19
17
 
20
- ## Usage Instructions
18
+ ## Downstream Implementations
21
19
 
22
20
  - `npm i @tyleretters/discography`
23
21
  - `import discography from '@tyleretters/discography'`
24
-
25
- ## Development Instructions
26
-
27
- - clone discography
28
- - `cd discography`
29
- - `chmod 700 src/convert.py`
30
- - `npm run dev`
package/package.json CHANGED
@@ -1,11 +1,10 @@
1
1
  {
2
2
  "name": "@tyleretters/discography",
3
- "version": "0.0.30",
3
+ "version": "0.0.31",
4
4
  "description": "A canonical discography of the music of Tyler Etters.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "scripts": {
8
- "dev": "tsc -w",
9
8
  "convert": "./src/convert.py",
10
9
  "build": "./src/convert.py && tsc && rollup -c"
11
10
  },
@@ -14,7 +13,7 @@
14
13
  "url": "git+https://github.com/tyleretters/discography.git"
15
14
  },
16
15
  "author": "Tyler Etters",
17
- "dependencies": {
16
+ "devDependencies": {
18
17
  "@types/node": "^20.10.6",
19
18
  "rollup": "^4.9.2",
20
19
  "rollup-plugin-typescript2": "^0.36.0",