Skip to content

Commit

Permalink
chore(deps): bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
naiyerasif committed Oct 31, 2023
1 parent a0106c7 commit dcf753b
Show file tree
Hide file tree
Showing 9 changed files with 295 additions and 382 deletions.
20 changes: 15 additions & 5 deletions .github/workflows/regression.yml
Expand Up @@ -8,14 +8,24 @@ on:
jobs:
regression:
runs-on: ubuntu-latest

steps:
- name: Checkout source
uses: actions/checkout@v2
- name: Set up Node
uses: actions/setup-node@v2

- name: Setup PNPM
uses: pnpm/action-setup@v2
with:
version: 8

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '16'
node-version: 20
cache: 'pnpm'

- name: Install dependencies
run: npm install
run: pnpm install --frozen-lockfile

- name: Run the tests
run: npm test
run: pnpm test
3 changes: 0 additions & 3 deletions README.md
Expand Up @@ -6,9 +6,6 @@

A metadata parser for code fences in markdown

## Contents

- [Contents](#contents)
- [What’s this?](#whats-this)
- [Install](#install)
- [Use](#use)
Expand Down
8 changes: 4 additions & 4 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "@microflash/fenceparser",
"version": "2.6.2",
"version": "3.0.0",
"description": "A metadata parser for code fences in markdown",
"main": "src/index.js",
"scripts": {
Expand All @@ -16,15 +16,15 @@
"parser",
"lexer"
],
"author": "Naiyer Asif (https://mflash.dev)",
"author": "Naiyer Asif (https://www.naiyerasif.com)",
"license": "MIT",
"bugs": "https://github.com/Microflash/fenceparser/issues",
"homepage": "https://github.com/Microflash/fenceparser#readme",
"dependencies": {
"chevrotain": "^10.4.2"
"chevrotain": "^11.0.3"
},
"devDependencies": {
"ava": "^5.1.0"
"ava": "^5.3.1"
},
"ava": {
"files": [
Expand Down

0 comments on commit dcf753b

Please sign in to comment.