Skip to content

Commit e6c380d

Browse files
authored
Merge pull request #420 from hildjj/update-deps
Update dependencies
2 parents cdf878e + 4fb3850 commit e6c380d

File tree

12 files changed

+1681
-1098
lines changed

12 files changed

+1681
-1098
lines changed

.eslintrc.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ module.exports = {
1515
"*.min.js",
1616
"build",
1717
],
18+
parserOptions: {
19+
project: "tsconfig.json",
20+
},
1821
overrides: [
1922
{
2023
files: ["rollup.config.js", "*.mjs"],

.github/workflows/node.js.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Tests
33
on:
44
push:
55
branches:
6-
- '*'
6+
- main
77
pull_request:
88
branches: ['*']
99

@@ -12,7 +12,7 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
node-version: [14.x, 16.x, 18.x, 19.x]
15+
node-version: [16.x, 18.x, 20.x]
1616
os: [ubuntu-latest, windows-latest, macos-latest]
1717

1818
runs-on: ${{ matrix.os }}
@@ -27,10 +27,10 @@ jobs:
2727
- name: Install dependencies
2828
run: npm install
2929
- name: Check coding standards
30-
if: matrix.node-version == '19.x' && matrix.os == 'ubuntu-latest'
30+
if: matrix.node-version == '20.x' && matrix.os == 'ubuntu-latest'
3131
run: npm run lint
3232
- name: Static analysis - check types
33-
if: matrix.node-version == '19.x' && matrix.os == 'ubuntu-latest'
33+
if: matrix.node-version == '20.x' && matrix.os == 'ubuntu-latest'
3434
run: npm run ts
3535
- name: Test
3636
run: npm run test

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,14 @@ Released: TBD
1010

1111
### Major Changes
1212

13+
- [#420](https://github.com/peggyjs/peggy/pull/420) BREAKING: Node v16+ is now
14+
required for running the CLI or using Peggy as a library. Generated code
15+
still targets older runtimes.
16+
1317
### Minor Changes
1418

19+
- [#420](https://github.com/peggyjs/peggy/pull/420) Updated dependencies to
20+
avoid audit warnings. From @hildjj.
1521
- [#404](https://github.com/peggyjs/peggy/issues/404) Add support for -w/--watch
1622
to the command line interface. From @hildjj.
1723

docs/js/test-bundle.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/vendor/peggy/peggy.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)