Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
j3lte committed Apr 13, 2023
1 parent 2cb435d commit b3cac5a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[![Codecov](https://img.shields.io/codecov/c/github/j3lte/deno-soda?style=for-the-badge&token=F9CAI1FCMX)](https://codecov.io/gh/j3lte/deno-soda "Codecov")
[![Deno docs](https://img.shields.io/badge/Deno-Docs-blue?style=for-the-badge)](https://doc.deno.land/https/deno.land/x/soda/mod.ts "Deno docs")

SODA ([Socrata](https://dev.socrata.com/)) Query Client for Deno.
SODA ([Socrata](https://dev.socrata.com/)) Query Client for Deno & NodeJS.

## Table of Contents

Expand Down Expand Up @@ -39,10 +39,18 @@ SODA ([Socrata](https://dev.socrata.com/)) Query Client for Deno.
## Installation

Deno:

```ts
import { SodaQuery } from "https://deno.land/x/soda/mod.ts";
```

Node: (`npm i soda-query`)

```ts
import { SodaQuery } from "soda-query";
```

## Example

### Plain query
Expand Down
4 changes: 2 additions & 2 deletions scripts/build-npm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ await build({
},
async postBuild(): Promise<void> {
// steps to run after building and before running the tests
await Deno.copyFile("LICENSE", "npm/LICENSE");
await Deno.copyFile("README.md", "npm/README.md");
await Deno.copyFile("./LICENSE", "npm/LICENSE");
await Deno.copyFile("./README.md", "npm/README.md");
await cleanupTypes("./npm/types");
},
});

0 comments on commit b3cac5a

Please sign in to comment.