Skip to content

Commit

Permalink
fix: Use proper Deno location
Browse files Browse the repository at this point in the history
  • Loading branch information
daffl committed Nov 20, 2021
1 parent 3534c19 commit c70b070
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion main/hooks/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import { hooks } from '@feathersjs/hooks';
### Deno

```js
import { hooks } from 'https://deno.land/x/hooks@x.x.x/deno/index.ts';
import { hooks } from 'https://deno.land/x/hooks/src/index.ts';
```

## Documentation
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ yarn add @feathersjs/hooks
`@feathersjs/hooks` releases are published to [deno.land/x/hooks](https://deno.land/x/hooks):

```ts
import { hooks } from 'https://deno.land/x/hooks@x.x.x/src/index.ts';
import { hooks } from 'https://deno.land/x/hooks/src/index.ts';
```

## Browser
Expand Down

0 comments on commit c70b070

Please sign in to comment.