Skip to content

Commit

Permalink
Rename package to @web-scrobbler/metadata-filter (#263)
Browse files Browse the repository at this point in the history
  • Loading branch information
inverse authored Feb 26, 2023
1 parent a33c56c commit b868758
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ A module for cleaning up artist, album, and song names.
### Install using npm

```
npm i metadata-filter
npm i @web-scrobbler/metadata-filter
```

### Include via CDN

```html
<script src="https://unpkg.com/metadata-filter@latest/dist/filter.min.js"></script>
<script src="https://unpkg.com/@web-scrobbler/metadata-filter@latest/dist/filter.min.js"></script>
```

## Usage
Expand All @@ -23,10 +23,10 @@ webpack), you can use CommonJS-like or ES6 imports:

```javascript
// CommonJS style
const MetadataFilter = require('metadata-filter');
const MetadataFilter = require('@web-scrobbler/metadata-filter');

// ES6 style
import * as MetadataFilter from 'metadata-filter';
import * as MetadataFilter from '@web-scrobbler/metadata-filter';

MetadataFilter.removeRemastered(yourInput);
```
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "metadata-filter",
"name": "@web-scrobbler/metadata-filter",
"version": "2.0.0",
"author": "Alexey <[email protected]>",
"description": "A module for cleaning up artist, album, and song names.",
Expand Down

0 comments on commit b868758

Please sign in to comment.