Skip to content

Commit a04da88

Browse files
authored
Merge pull request #50 from ndaidong/6.0.2
6.0.2
2 parents af41361 + ba81152 commit a04da88

File tree

6 files changed

+11
-9
lines changed

6 files changed

+11
-9
lines changed

.github/workflows/ci-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on: [push, pull_request]
88
jobs:
99
test:
1010

11-
runs-on: ubuntu-20.04
11+
runs-on: ubuntu-latest
1212

1313
strategy:
1414
matrix:

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,20 @@ To read & normalize RSS/ATOM/JSON feed data.
88
![CodeQL](https://github.com/ndaidong/feed-reader/workflows/CodeQL/badge.svg)
99
[![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com)
1010

11+
[![Deploy](https://button.deta.dev/1/svg)](https://go.deta.dev/deploy?repo=https://github.com/ndaidong/feed-reader-deta)
12+
1113
## Demo
1214

1315
- [Give it a try!](https://demos.pwshub.com/feed-reader)
14-
- [Example FaaS](https://extractor.pwshub.com/feed/parse?url=https://news.google.com/rss&apikey=demo-TEyRycuuMCiGBiBocbLGSpagfj7gOF8AMyAWfEgP)
16+
- [Example FaaS](https://readfeed.deta.dev/?url=https://news.google.com/rss)
1517

1618
### Usage
1719

1820
```js
1921
import { read } from 'feed-reader'
2022

2123
// with CommonJS environments
22-
// const { read } = require('./dist/cjs/feed-reader.js')
24+
// const { read } = require('feed-reader/dist/cjs/feed-reader.js')
2325

2426
const url = 'https://news.google.com/rss'
2527

dist/cjs/feed-reader.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.

dist/cjs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"name": "feed-reader-cjs",
3-
"version": "6.0.1",
3+
"version": "6.0.2",
44
"main": "./feed-reader.js"
55
}

dist/feed-reader.browser.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.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "6.0.1",
2+
"version": "6.0.2",
33
"name": "feed-reader",
44
"description": "To read and normalize RSS/ATOM/JSON feed data",
55
"homepage": "https://www.npmjs.com/package/feed-reader",
@@ -17,7 +17,7 @@
1717
"scripts": {
1818
"lint": "standard .",
1919
"pretest": "npm run lint",
20-
"test": "NODE_ENV=test NODE_OPTIONS=--experimental-vm-modules jest --coverage=true",
20+
"test": "NODE_ENV=test NODE_OPTIONS=--experimental-vm-modules jest --verbose --coverage=true",
2121
"build": "node build",
2222
"eval": "node eval",
2323
"eval:cjs": "node eval.cjs",
@@ -30,7 +30,7 @@
3030
"html-entities": "^2.3.3"
3131
},
3232
"devDependencies": {
33-
"esbuild": "^0.15.2",
33+
"esbuild": "^0.15.5",
3434
"jest": "^28.1.3",
3535
"nock": "^13.2.9"
3636
},

0 commit comments

Comments
 (0)