jsonresume-theme-engineering 0.5.0 → 0.5.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.
Files changed (2) hide show
  1. package/package.json +2 -1
  2. package/RELEASE.md +0 -17
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jsonresume-theme-engineering",
3
- "version": "0.5.0",
3
+ "version": "0.5.2",
4
4
  "description": "JSON Resume theme for engineers",
5
5
  "keywords": [
6
6
  "jsonresume",
@@ -15,6 +15,7 @@
15
15
  "type": "git",
16
16
  "url": "https://github.com/skoenig/jsonresume-theme-engineering"
17
17
  },
18
+ "homepage": "https://github.com/skoenig/jsonresume-theme-engineering#readme",
18
19
  "license": "MIT",
19
20
  "scripts": {
20
21
  "html": "resumed render --theme jsonresume-theme-engineering",
package/RELEASE.md DELETED
@@ -1,17 +0,0 @@
1
- # Release
2
- ## Create release branch and tag
3
- ```
4
- git checkout -b release/feat-resumed-cli 101b63b
5
- npm version patch # creates commit + tag vX.Y.Z
6
- git push origin release/feat-resumed-cli
7
- git push origin --tags
8
- ```
9
- ## Pull Request
10
- Open a PR from `release/feat-resumed-cli` -> `main`
11
- Merge the PR.
12
-
13
- ## Publish to npm
14
- ```
15
- npm login # if not already logged in
16
- npm publish
17
- ```