mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
chore: add crates.io and docs.rs badge
This commit is contained in:
parent
f8224bb4bc
commit
2964d83fc9
2 changed files with 14 additions and 8 deletions
2
.github/workflows/check.yml
vendored
2
.github/workflows/check.yml
vendored
|
|
@ -1,4 +1,4 @@
|
||||||
name: Check and Test
|
name: Continuous Integration
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
|
||||||
20
README.md
20
README.md
|
|
@ -1,26 +1,32 @@
|
||||||
# The JavaScript Oxidation Compiler (oxc)
|
# The JavaScript Oxidation Compiler (oxc)
|
||||||
|
|
||||||
[![Discord chat][discord-badge]][discord-url]
|
[![Discord chat][discord-badge]][discord-url]
|
||||||
[![MIT licensed][mit-badge]][mit-url]
|
[![Build Status][ci-badge]][ci-url]
|
||||||
[![CI on main][ci-badge]][ci-url]
|
|
||||||
[![npm version][npm-badge]][npm-url]
|
[![npm version][npm-badge]][npm-url]
|
||||||
|
[![Crates.io][crates-badge]][crates-url]
|
||||||
|
[![Docs.rs][docs-badge]][docs-url]
|
||||||
|
[![MIT licensed][mit-badge]][mit-url]
|
||||||
|
|
||||||
[discord-badge]: https://img.shields.io/discord/1079625926024900739?logo=discord&label=discord&color=brightgreen
|
[discord-badge]: https://img.shields.io/discord/1079625926024900739?logo=discord&label=discord&color=brightgreen
|
||||||
[discord-url]: https://discord.gg/9uXCAwqQZW
|
[discord-url]: https://discord.gg/9uXCAwqQZW
|
||||||
[mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg?color=brightgreen
|
[mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg?color=brightgreen
|
||||||
[mit-url]: LICENSE
|
[mit-url]: LICENSE
|
||||||
[ci-badge]: https://github.com/Boshen/oxc/actions/workflows/check.yml/badge.svg?branch=main
|
[ci-badge]: https://github.com/Boshen/oxc/actions/workflows/check.yml/badge.svg?event=push&branch=main
|
||||||
[ci-url]: https://github.com/Boshen/oxc/actions/workflows/check.yml?query=branch=main
|
[ci-url]: https://github.com/Boshen/oxc/actions/workflows/check.yml?query=event%3Apush+branch%3Amain
|
||||||
[npm-badge]: https://img.shields.io/npm/v/oxidation-compiler/latest?color=brightgreen
|
[npm-badge]: https://img.shields.io/npm/v/oxidation-compiler/latest?color=brightgreen
|
||||||
[npm-url]: https://www.npmjs.com/package/oxidation-compiler/v/latest
|
[npm-url]: https://www.npmjs.com/package/oxidation-compiler/v/latest
|
||||||
|
[crates-badge]: https://img.shields.io/crates/v/oxc_parser.svg
|
||||||
|
[crates-url]: https://crates.io/crates/oxc_parser
|
||||||
|
[docs-badge]: https://docs.rs/oxc_parser/badge.svg
|
||||||
|
[docs-url]: https://docs.rs/oxc_parser
|
||||||
|
|
||||||
The Oxidation Compiler is currently creating a suite of tools for the JavaScript/TypeScript language, which comprises:
|
The Oxidation Compiler is currently creating a suite of tools for the JavaScript/TypeScript language, which comprises:
|
||||||
|
|
||||||
* Parser - Done
|
* [Parser](./crates/oxc_parser) - Done
|
||||||
* Linter - Work in progress
|
* [Linter](./crates/oxc_linter) - Work in progress
|
||||||
* Formatter
|
* Formatter
|
||||||
* Transpiler
|
* Transpiler
|
||||||
* Minifier
|
* [Minifier](./crates/oxc_minifier) - Draft
|
||||||
|
|
||||||
## Goals
|
## Goals
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue