Skip to content

Commit

Permalink
feat: rename to @bowencool/async-utilities
Browse files Browse the repository at this point in the history
  • Loading branch information
bowencool committed Sep 8, 2022
1 parent 54bc746 commit 5701b52
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
],
"description": "async utilities",
"author": "bowencool",
"name": "high-order-async-utilities",
"name": "@bowencool/async-utilities",
"version": "2.5.3",
"gitHooks": {
"pre-commit": "lint-staged && jest --onlyChanged --coverage",
Expand Down
17 changes: 9 additions & 8 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@
<p align="center">
<a href='https://github.com/bowencool/async-utilities/actions/workflows/gh-pages.yml'><img src='https://github.com/bowencool/async-utilities/actions/workflows/gh-pages.yml/badge.svg' alt='Actions Status' /></a>
<a href='https://coveralls.io/github/bowencool/async-utilities?branch=main'><img src='https://coveralls.io/repos/github/bowencool/async-utilities/badge.svg?branch=main' alt='Coverage Status' /></a>
<a href="https://www.npmjs.com/package/high-order-async-utilities"><img src="https://img.shields.io/npm/v/high-order-async-utilities.svg?style=flat-square" alt="npm version" /></a>
<!-- <a href="https://www.npmjs.com/package/high-order-async-utilities"><img src="https://img.shields.io/npm/dt/high-order-async-utilities.svg?style=flat-square" alt="npm downloads" /></a> -->
<a target="_blank" rel="noopener noreferrer" href="https://npmjs.org/package/high-order-async-utilities"><img src="https://img.shields.io/npm/dm/high-order-async-utilities.svg?style=flat" alt="NPM downloads"></a>
<img src="https://img.badgesize.io/https:/unpkg.com/high-order-async-utilities/umd/index.js?label=gzip%20size&amp;compression=gzip" alt="gzip size">
<a href="https://www.npmjs.com/package/@bowencool/async-utilities"><img src="https://img.shields.io/npm/v/@bowencool/async-utilities.svg?style=flat-square" alt="npm version" /></a>
<!-- todo 使用新名称 -->
<a href="https://www.npmjs.com/package/high-order-async-utilities"><img src="https://img.shields.io/npm/dt/high-order-async-utilities.svg?style=flat-square" alt="npm downloads" /></a>
<!-- <a target="_blank" rel="noopener noreferrer" href="https://npmjs.org/package/@bowencool/async-utilities"><img src="https://img.shields.io/npm/dm/@bowencool/async-utilities.svg?style=flat" alt="NPM downloads"></a> -->
<img src="https://img.badgesize.io/https:/unpkg.com/@bowencool/async-utilities/umd/index.js?label=gzip%20size&amp;compression=gzip" alt="gzip size">
<img src="https://img.shields.io/github/license/bowencool/async-utilities" alt="GitHub">
<a href="https://github.com/bowencool/create-vitepress-demo"><img src="https://img.shields.io/badge/docs%20by-vitepress-blue" alt="vitepress" /></a>
</p>
Expand All @@ -20,19 +21,19 @@ An asynchronous tool library in the style of higher-order functions. [Website](h
使用 npm:

```bash
npm i high-order-async-utilities
npm i @bowencool/async-utilities
```

```ts
import { throttleAsyncResult } from 'high-order-async-utilities';
import { throttleAsyncResult } from '@bowencool/async-utilities';
```

在浏览器中:

```html
<script scr="//unpkg.com/high-order-async-utilities"></script>
<script scr="//unpkg.com/@bowencool/async-utilities"></script>
<!-- or -->
<script scr="//cdn.jsdelivr.net/npm/high-order-async-utilities"></script>
<script scr="//cdn.jsdelivr.net/npm/@bowencool/async-utilities"></script>
```

# Todo
Expand Down
4 changes: 2 additions & 2 deletions website/guide/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ An asynchronous tool library in the style of higher-order functions. [Website](h
# Usage

```bash
yarn add high-order-async-utilities
yarn add @bowencool/async-utilities
```

```ts
import { throttleAsyncResult } from 'high-order-async-utilities';
import { throttleAsyncResult } from '@bowencool/async-utilities';
```

# Todo
Expand Down

0 comments on commit 5701b52

Please sign in to comment.