convert-csv-to-json 2.28.0 → 2.30.0

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.
@@ -40,8 +40,11 @@ jobs:
40
40
  with:
41
41
  node-version: 21.x
42
42
  registry-url: 'https://registry.npmjs.org'
43
- - name: release
44
- run: |
45
- npm run release
46
- env:
47
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
43
+ - name: npm-semver-publish-action
44
+ uses: iuccio/npm-semantic-publish-action@v0.2.0
45
+ with:
46
+ target-branch: 'master'
47
+
48
+ env:
49
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
50
+
package/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  # CSVtoJSON
2
- [![Node CI/CD](https://github.com/iuccio/csvToJson/actions/workflows/ci-cd.yml/badge.svg)](https://github.com/iuccio/csvToJson/actions/workflows/ci-cd.yml)
2
+ [![Node CI](https://github.com/iuccio/csvToJson/actions/workflows/ci-cd.yml/badge.svg?branch=master)](https://github.com/iuccio/csvToJson/actions/workflows/ci-cd.yml)
3
3
  ![CodeQL](https://github.com/iuccio/csvToJson/actions/workflows/codeql-analysis.yml/badge.svg)
4
4
  [![Known Vulnerabilities](https://snyk.io/test/github/iuccio/csvToJson/badge.svg)](https://snyk.io/test/github/iuccio/csvToJson)
5
5
  [![Code Climate](https://codeclimate.com/github/iuccio/csvToJson/badges/gpa.svg)](https://codeclimate.com/github/iuccio/csvToJson)
@@ -32,7 +32,7 @@
32
32
  + [Encoding](#encoding)
33
33
  * [Chaining Pattern](#chaining-pattern)
34
34
  - [Development](#development)
35
- - [CI/CD](#ci/cd-github-action)
35
+ - [CI CD](#ci-cd-github-action)
36
36
  - [License](#license)
37
37
  - [Buy me a Coffee](#buy-me-a-coffee)
38
38
 
@@ -309,7 +309,7 @@ csvToJson.fieldDelimiter(',')
309
309
  npm run test-debug
310
310
  ~~~
311
311
 
312
- ## CI/CD github action
312
+ ## CI CD github action
313
313
  Pushing on the master branch, depending on the git message, an new version will always be released.
314
314
  If the commit message contains the keyword:
315
315
  * **[MAJOR]**: new major relase, e.g. v1.0.0 -> v2.0.0
package/SECURITY.md CHANGED
@@ -14,6 +14,7 @@ A generated Github Depedabot PR is normally quickly merged and a new version is
14
14
 
15
15
  | Version | Supported |
16
16
  | ------- | ------------------ |
17
+ | 2.29.0 | :white_check_mark: |
17
18
  | 2.2.0 | :white_check_mark: |
18
19
  | 2.0.0 | :white_check_mark: |
19
20
  | 1.4.0 | :white_check_mark: |
@@ -24,6 +25,7 @@ A generated Github Depedabot PR is normally quickly merged and a new version is
24
25
 
25
26
  | Version | Supported |
26
27
  | ------- | ------------------ |
28
+ | 2.29.0 | :white_check_mark: |
27
29
  | 2.2.0 | :white_check_mark: |
28
30
  | 2.0.0 | :white_check_mark: |
29
31
  | 1.4.0 | :white_check_mark: |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "convert-csv-to-json",
3
- "version": "2.28.0",
3
+ "version": "2.30.0",
4
4
  "description": "Convert CSV to JSON",
5
5
  "main": "index.js",
6
6
  "scripts": {