Skip to content
This repository has been archived by the owner on Apr 24, 2024. It is now read-only.

Commit

Permalink
Merge pull request #194 from hcodes/update_deps2
Browse files Browse the repository at this point in the history
Update deps in package.json
  • Loading branch information
hcodes committed Oct 28, 2023
2 parents bc84d85 + 48711cf commit 998b13d
Show file tree
Hide file tree
Showing 7 changed files with 1,559 additions and 3,127 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
node-version: [16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
Expand Down
28 changes: 28 additions & 0 deletions .github/workflows/npm-publish.yml
@@ -0,0 +1,28 @@
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages

name: Publish to NPM

on:
release:
types: [created]

jobs:
publish-npm:
name: Publish to NPM
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 16
registry-url: https://registry.npmjs.org/
- name: npm install, build, and test
run: |
npm ci
npm test
env:
CI: true
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,9 @@
# Changelog

## v9.0.0
- Update deps in package.json.
- Yaspeller requires Node.js 16 or higher.

## v8.0.1
Update deps in package.json.

Expand Down
2 changes: 1 addition & 1 deletion LICENSE.md
@@ -1,6 +1,6 @@
The MIT License (MIT)

© 2022 Denis Seleznev, <hcodes@yandex.ru>
© 2023 Denis Seleznev, <hcodes@yandex.ru>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the “Software”), to deal
Expand Down
2 changes: 1 addition & 1 deletion lib/helpers/file.js
Expand Up @@ -2,7 +2,7 @@

const fs = require('fs');
const isutf8 = require('isutf8');
const minimatch = require('minimatch');
const { minimatch } = require('minimatch');
const pth = require('path');
const stripJsonComments = require('strip-json-comments');

Expand Down

0 comments on commit 998b13d

Please sign in to comment.