@terzogenito/json-utils 1.0.0 → 1.0.1

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.
@@ -22,7 +22,15 @@ jobs:
22
22
  - name: Install dependencies
23
23
  run: npm install
24
24
 
25
- - name: Publish to npm
26
- run: npm publish
25
+ - name: Bump version and publish to npm
26
+ run: |
27
+ npm version patch # Automatically bump the version
28
+ # Increment PATCH version
29
+ # npm version patch # For a bug fix (1.0.0 → 1.0.1)
30
+ # Increment MINOR version
31
+ # npm version minor # For new features (1.0.0 → 1.1.0)
32
+ # Increment MAJOR version
33
+ # npm version major # For breaking changes (1.0.0 → 2.0.0)
34
+ npm publish
27
35
  env:
28
36
  NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@terzogenito/json-utils",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Check JSON Format",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -10,7 +10,13 @@
10
10
  "publishConfig": {
11
11
  "access": "public"
12
12
  },
13
- "keywords": ["nodejs", "module", "json", "check", "utils"],
13
+ "keywords": [
14
+ "nodejs",
15
+ "module",
16
+ "json",
17
+ "check",
18
+ "utils"
19
+ ],
14
20
  "author": "Terzogenito",
15
21
  "license": "MIT"
16
22
  }