-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
factor path-to-regexp out of the project.. implement regexp blacklist…
… paths
- Loading branch information
Showing
8 changed files
with
1,274 additions
and
657 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | ||
|
||
name: Node.js CI | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ${{ matrix.os }} | ||
|
||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, windows-latest] | ||
node-version: [12, 14, 16, 18, 20, 22] | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
cache: 'npm' | ||
- run: npm install | ||
- run: npm run test |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright (c) 2016-20 Lloyd Brookes <[email protected]> | ||
Copyright (c) 2016-24 Lloyd Brookes <[email protected]> | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
[![view on npm](https://img.shields.io/npm/v/lws-blacklist.svg)](https://www.npmjs.org/package/lws-blacklist) | ||
[![npm module downloads](https://img.shields.io/npm/dt/lws-blacklist.svg)](https://www.npmjs.org/package/lws-blacklist) | ||
[![Build Status](https://travis-ci.org/lwsjs/blacklist.svg?branch=master)](https://travis-ci.org/lwsjs/blacklist) | ||
[![Dependency Status](https://badgen.net/david/dep/lwsjs/blacklist)](https://david-dm.org/lwsjs/blacklist) | ||
[![view on npm](https://badgen.net/npm/v/lws-blacklist)](https://www.npmjs.org/package/lws-blacklist) | ||
[![npm module downloads](https://badgen.net/npm/dt/lws-blacklist)](https://www.npmjs.org/package/lws-blacklist) | ||
[![Gihub repo dependents](https://badgen.net/github/dependents-repo/lwsjs/blacklist)](https://github.com/lwsjs/blacklist/network/dependents?dependent_type=REPOSITORY) | ||
[![Gihub package dependents](https://badgen.net/github/dependents-pkg/lwsjs/blacklist)](https://github.com/lwsjs/blacklist/network/dependents?dependent_type=PACKAGE) | ||
[![Node.js CI](https://github.com/lwsjs/blacklist/actions/workflows/node.js.yml/badge.svg)](https://github.com/lwsjs/blacklist/actions/workflows/node.js.yml) | ||
[![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg)](https://github.com/feross/standard) | ||
|
||
# lws-blacklist | ||
|
@@ -16,4 +17,4 @@ Adds the following options to lws. | |
|
||
* * * | ||
|
||
© 2016-20 Lloyd Brookes \<[email protected]\>. | ||
© 2016-25 Lloyd Brookes \<[email protected]\>. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.