Skip to content

Commit 71f4bb6

Browse files
committed
Merge branch 'release/6.1.0'
2 parents e06287f + c7b70f1 commit 71f4bb6

File tree

7 files changed

+39
-124
lines changed

7 files changed

+39
-124
lines changed

.github/workflows/ci.yaml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
on: [push, pull_request]
2+
3+
name: CI
4+
5+
jobs:
6+
test:
7+
name: Test
8+
strategy:
9+
fail-fast: false
10+
matrix:
11+
os: [ubuntu-latest, macos-latest, windows-latest]
12+
node-version: [12.x, 13.x, 14.x, 15.x]
13+
runs-on: ${{matrix.os}}
14+
steps:
15+
- uses: actions/checkout@v2
16+
- name: Use Node.js ${{ matrix.node-version }}
17+
uses: actions/setup-node@v1
18+
with:
19+
node-version: ${{ matrix.node-version }}
20+
- name: Install Dependencies
21+
run: npm install
22+
- name: Test
23+
run: npm test

.travis.yml

Lines changed: 0 additions & 22 deletions
This file was deleted.

README.md

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,11 @@
22

33
> camaro is an utility to transform XML to JSON, using Node.js binding to native XML parser [pugixml](http://pugixml.org/), one of the fastest XML parser around.
44
5-
[![npm](https://badgen.net/npm/v/camaro)](https://npm.im/camaro)
6-
![npm bundle size](https://badgen.net/packagephobia/publish/camaro)
7-
[![Build Status](https://dev.azure.com/me0499/camaro/_apis/build/status/tuananh.camaro?branchName=develop)](https://dev.azure.com/me0499/camaro/_build/latest?definitionId=1&branchName=develop)
8-
[![Travis](https://badgen.net/travis/tuananh/camaro/master)](https://travis-ci.org/tuananh/camaro)
9-
[![AppVeyor](https://badgen.net/appveyor/ci/tuananh/camaro/master)](https://ci.appveyor.com/project/tuananh/camaro)
10-
[![TypeScript definitions on DefinitelyTyped](https://badgen.net/badge/DefinitelyTyped/.d.ts)](http://definitelytyped.org)
11-
[![npm](https://badgen.net/npm/dt/camaro)](https://npm.im/camaro)
5+
[![npm](https://webadge.dev/npm/v/camaro)](https://npm.im/camaro)
6+
![npm bundle size](https://webadge.dev/packagephobia/publish/camaro)
7+
![Build status](https://github.com/tuananh/camaro/workflows/CI/badge.svg)
8+
[![TypeScript definitions on DefinitelyTyped](https://webadge.dev/badge/DefinitelyTyped/.d.ts)](http://definitelytyped.org)
9+
[![npm](https://webadge.dev/npm/dt/camaro)](https://npm.im/camaro)
1210

1311
## 🤘 Features
1412

@@ -177,6 +175,16 @@ And output of `prettyPrint()`
177175

178176
- [cruftless](https://github.com/wspringer/cruftless): I personally find this project very fascinating. Its template engine is more powerful than camaro's XPath-based perhaps. You should check it out.
179177

178+
## Used by
179+
180+
- https://github.com/dsifford/academic-bloggers-toolkit
181+
- https://github.com/hexojs/hexo-generator-sitemap
182+
- https://github.com/hexojs/hexo-generator-feed
183+
- https://github.com/hexojs/hexo-migrator-wordpress
184+
- https://github.com/fengkx/NodeRSSBot
185+
186+
...
187+
180188
## Licence
181189

182190
[The MIT License](LICENSE)

appveyor.yml

Lines changed: 0 additions & 29 deletions
This file was deleted.

azure-pipelines.yml

Lines changed: 0 additions & 55 deletions
This file was deleted.

azure-test.yml

Lines changed: 0 additions & 10 deletions
This file was deleted.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "camaro",
3-
"version": "6.0.4",
3+
"version": "6.1.0",
44
"description": "Transforming XML to JSON using Node.js binding to native pugixml parser library",
55
"homepage": "https://github.com/tuananh/camaro",
66
"bugs": "https://github.com/tuananh/camaro/issues",

0 commit comments

Comments
 (0)