md-processor 1.2.0 → 1.2.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.
@@ -0,0 +1,11 @@
1
+ version: 2
2
+ updates:
3
+ - package-ecosystem: github-actions
4
+ directory: /
5
+ schedule:
6
+ interval: daily
7
+ - package-ecosystem: npm
8
+ directory: /
9
+ schedule:
10
+ interval: daily
11
+ versioning-strategy: increase-if-necessary
@@ -4,18 +4,31 @@ on:
4
4
  - push
5
5
  jobs:
6
6
  test:
7
- runs-on: ubuntu-20.04
7
+ runs-on: ubuntu-24.04
8
8
  strategy:
9
9
  matrix:
10
10
  node:
11
- - '16'
12
11
  - '18'
13
12
  - '20'
13
+ - '22'
14
+ - '23'
14
15
  steps:
15
- - uses: actions/checkout@v3
16
- - uses: actions/setup-node@v3
16
+ - uses: actions/checkout@v4
17
+ - uses: actions/setup-node@v4
17
18
  with:
18
19
  node-version: ${{ matrix.node }}
19
20
  - run: npm install
20
21
  - run: npm test
21
- - uses: codecov/codecov-action@v3
22
+ - uses: coverallsapp/github-action@v2
23
+ with:
24
+ flag-name: run Node v${{ matrix.node }}
25
+ github-token: ${{ secrets.GITHUB_TOKEN }}
26
+ parallel: true
27
+ finally:
28
+ needs: test
29
+ runs-on: ubuntu-24.04
30
+ steps:
31
+ - uses: coverallsapp/github-action@v2
32
+ with:
33
+ github-token: ${{ secrets.GITHUB_TOKEN }}
34
+ parallel-finished: true
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "md-processor",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "A preprocessor for markdown files",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -22,11 +22,11 @@
22
22
  },
23
23
  "homepage": "https://github.com/bergos/md-processor",
24
24
  "dependencies": {
25
- "commander": "^10.0.1"
25
+ "commander": "^13.0.0"
26
26
  },
27
27
  "devDependencies": {
28
- "c8": "^7.14.0",
29
- "mocha": "^10.2.0",
30
- "stricter-standard": "^0.2.0"
28
+ "c8": "^10.1.2",
29
+ "mocha": "^11.0.1",
30
+ "stricter-standard": "^0.3.1"
31
31
  }
32
32
  }