@rljson/io 0.0.3 → 0.0.4

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.
@@ -1,3 +1,7 @@
1
+ <!--
2
+
3
+ -->
4
+
1
5
  # Contributors Guide
2
6
 
3
7
  - [Install](#install)
@@ -114,7 +118,7 @@ Please replace `Commit Message` in the next command by your commit message.
114
118
  It will also used for branch name and pull request
115
119
 
116
120
  ```bash
117
- export MESSAGE="Initial implementation" && \
121
+ export MESSAGE="Fix small things in README" && \
118
122
  export BRANCH=`echo "$MESSAGE" | tr '[:upper:]' '[:lower:]' | sed 's/[^a-z0-9_]/_/g'` &&\
119
123
  git checkout -b $BRANCH
120
124
  ```
@@ -171,7 +175,8 @@ git commit -am"Update dependencies"
171
175
  ### Increase version
172
176
 
173
177
  ```bash
174
- pnpm version patch --no-git-tag-version
178
+ pnpm version patch --no-git-tag-version && \
179
+ git commit -am"Increase version"
175
180
  ```
176
181
 
177
182
  ### Create a pull request
@@ -199,13 +204,13 @@ git fetch && git checkout main && \
199
204
  git reset --soft origin/main && \
200
205
  git stash -m"PR Aftermath" && \
201
206
  git pull && \
202
- git branch -d $BRANCH && \
207
+ git branch -d $BRANCH
203
208
  ```
204
209
 
205
210
  ### Publish to NPM
206
211
 
207
212
  ```bash
208
- npm publish --access public
213
+ npm publish --access public && \
209
214
  git tag $(npm pkg get version | tr -d '\\"')
210
215
  ```
211
216
 
@@ -1,3 +1,7 @@
1
+ <!--
2
+
3
+ -->
4
+
1
5
  # Contributors Guide
2
6
 
3
7
  - [Install](#install)
@@ -114,7 +118,7 @@ Please replace `Commit Message` in the next command by your commit message.
114
118
  It will also used for branch name and pull request
115
119
 
116
120
  ```bash
117
- export MESSAGE="Initial implementation" && \
121
+ export MESSAGE="Fix small things in README" && \
118
122
  export BRANCH=`echo "$MESSAGE" | tr '[:upper:]' '[:lower:]' | sed 's/[^a-z0-9_]/_/g'` &&\
119
123
  git checkout -b $BRANCH
120
124
  ```
@@ -171,7 +175,8 @@ git commit -am"Update dependencies"
171
175
  ### Increase version
172
176
 
173
177
  ```bash
174
- pnpm version patch --no-git-tag-version
178
+ pnpm version patch --no-git-tag-version && \
179
+ git commit -am"Increase version"
175
180
  ```
176
181
 
177
182
  ### Create a pull request
@@ -199,13 +204,13 @@ git fetch && git checkout main && \
199
204
  git reset --soft origin/main && \
200
205
  git stash -m"PR Aftermath" && \
201
206
  git pull && \
202
- git branch -d $BRANCH && \
207
+ git branch -d $BRANCH
203
208
  ```
204
209
 
205
210
  ### Publish to NPM
206
211
 
207
212
  ```bash
208
- npm publish --access public
213
+ npm publish --access public && \
209
214
  git tag $(npm pkg get version | tr -d '\\"')
210
215
  ```
211
216
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rljson/io",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
4
4
  "packageManager": "pnpm@10.6.2",
5
5
  "description": "Low level interface for reading and writing RLJSON data",
6
6
  "homepage": "https://github.com/rljson/io",