Skip to content

Commit

Permalink
Tweak package description.
Browse files Browse the repository at this point in the history
  • Loading branch information
ddebin committed Mar 11, 2022
1 parent ce57f7c commit 44c2ca5
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 16 deletions.
12 changes: 2 additions & 10 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,28 +3,20 @@

name: Node.js CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
on: [push, pull_request]

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [10.x, 12.x, 14.x, 16.x]

node-version: [10.3.0, 10, 12, 14, 16]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build --if-present
- run: npm run lint
- run: npm test
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
![Node.js CI](https://github.com/ddebin/yaml-sort/workflows/Node.js%20CI/badge.svg)
[![npm version](https://badge.fury.io/js/yaml-sort.svg)](https://www.npmjs.com/package/yaml-sort)

# About

`yaml-sort` is a CLI tool sorting alphabetically [YAML](https://yaml.org/) files.
`yaml-sort` sorts [YAML](https://yaml.org/) files alphabetically.

This tool is basically a tiny wrapper around [js-yaml](https://github.com/nodeca/js-yaml).

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 6 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "yaml-sort",
"version": "1.2.0",
"description": "CLI tool to sort YAML files alphabetically",
"description": "Sort YAML files alphabetically",
"main": "yaml-sort.js",
"scripts": {
"test": "test/test.js",
Expand All @@ -19,9 +19,11 @@
"cli",
"yaml",
"yml",
"sort"
"sort",
"stream",
"shell"
],
"author": "Damien Debin",
"author": "Damien Debin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ddebin/yaml-sort/issues"
Expand All @@ -38,6 +40,6 @@
"tape-spawn": "^1.4.2"
},
"engines": {
"node": ">=10"
"node": ">=10.3.0"
}
}

0 comments on commit 44c2ca5

Please sign in to comment.