Skip to content

Commit

Permalink
Rename package from @sindresorhus/xbar to xbar
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Nov 6, 2023
1 parent 8677c85 commit 6252464
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ Create a plugin for xbar.
@example
```
#!/usr/bin/env node --input-type=module
import xbar, {separator, isDarkMode} from '@sindresorhus/xbar';
import xbar, {separator, isDarkMode} from 'xbar';
xbar([
{
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": "@sindresorhus/xbar",
"name": "xbar",
"version": "2.1.1",
"description": "Simplifies xbar app plugin creation",
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ Create your plugin using a nice API instead of having to manually construct a bi
## Install

```sh
npm install @sindresorhus/xbar
npm install xbar
```

## Usage

```js
#!/usr/bin/env node
import xbar, {separator, isDarkMode} from '@sindresorhus/xbar';
import xbar, {separator, isDarkMode} from 'xbar';

xbar([
{
Expand Down

0 comments on commit 6252464

Please sign in to comment.