Skip to content

Commit

Permalink
Merge branch 'release/6.1.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
tuananh committed Jan 31, 2021
2 parents e06287f + c7b70f1 commit 71f4bb6
Show file tree
Hide file tree
Showing 7 changed files with 39 additions and 124 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yaml
@@ -0,0 +1,23 @@
on: [push, pull_request]

name: CI

jobs:
test:
name: Test
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node-version: [12.x, 13.x, 14.x, 15.x]
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm install
- name: Test
run: npm test
22 changes: 0 additions & 22 deletions .travis.yml

This file was deleted.

22 changes: 15 additions & 7 deletions README.md
Expand Up @@ -2,13 +2,11 @@

> 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.
[![npm](https://badgen.net/npm/v/camaro)](https://npm.im/camaro)
![npm bundle size](https://badgen.net/packagephobia/publish/camaro)
[![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)
[![Travis](https://badgen.net/travis/tuananh/camaro/master)](https://travis-ci.org/tuananh/camaro)
[![AppVeyor](https://badgen.net/appveyor/ci/tuananh/camaro/master)](https://ci.appveyor.com/project/tuananh/camaro)
[![TypeScript definitions on DefinitelyTyped](https://badgen.net/badge/DefinitelyTyped/.d.ts)](http://definitelytyped.org)
[![npm](https://badgen.net/npm/dt/camaro)](https://npm.im/camaro)
[![npm](https://webadge.dev/npm/v/camaro)](https://npm.im/camaro)
![npm bundle size](https://webadge.dev/packagephobia/publish/camaro)
![Build status](https://github.com/tuananh/camaro/workflows/CI/badge.svg)
[![TypeScript definitions on DefinitelyTyped](https://webadge.dev/badge/DefinitelyTyped/.d.ts)](http://definitelytyped.org)
[![npm](https://webadge.dev/npm/dt/camaro)](https://npm.im/camaro)

## 🤘 Features

Expand Down Expand Up @@ -177,6 +175,16 @@ And output of `prettyPrint()`

- [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.

## Used by

- https://github.com/dsifford/academic-bloggers-toolkit
- https://github.com/hexojs/hexo-generator-sitemap
- https://github.com/hexojs/hexo-generator-feed
- https://github.com/hexojs/hexo-migrator-wordpress
- https://github.com/fengkx/NodeRSSBot

...

## Licence

[The MIT License](LICENSE)
29 changes: 0 additions & 29 deletions appveyor.yml

This file was deleted.

55 changes: 0 additions & 55 deletions azure-pipelines.yml

This file was deleted.

10 changes: 0 additions & 10 deletions azure-test.yml

This file was deleted.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "camaro",
"version": "6.0.4",
"version": "6.1.0",
"description": "Transforming XML to JSON using Node.js binding to native pugixml parser library",
"homepage": "https://github.com/tuananh/camaro",
"bugs": "https://github.com/tuananh/camaro/issues",
Expand Down

0 comments on commit 71f4bb6

Please sign in to comment.