Skip to content

Commit

Permalink
Use pastel package name on npm
Browse files Browse the repository at this point in the history
  • Loading branch information
Vadim Demedes committed Jun 1, 2019
1 parent 9ef1453 commit c087680
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion entry.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
'use strict';
const React = require('react'); // eslint-disable-line import/no-unresolved
const Ink = require('ink'); // eslint-disable-line import/no-unresolved
const boot = require('pasteljs/boot'); // eslint-disable-line import/no-extraneous-dependencies, import/no-unresolved
const boot = require('pastel/boot'); // eslint-disable-line import/no-extraneous-dependencies, import/no-unresolved
const {commands} = require('./commands.json'); // eslint-disable-line import/no-unresolved

// This file is an entrypoint of CLI applications based on Pastel
Expand Down
6 changes: 2 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "pasteljs",
"name": "pastel",
"version": "1.0.2",
"description": "Framework for effortlessly building Ink apps",
"license": "MIT",
Expand All @@ -9,9 +9,7 @@
"email": "vdemedes@gmail.com",
"url": "vadimdemedes.com"
},
"bin": {
"pastel": "cli.js"
},
"bin": "cli.js",
"engines": {
"node": ">=8"
},
Expand Down
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
## Install

```bash
$ npm install pasteljs ink react prop-types
$ npm install pastel ink react prop-types
```


Expand Down Expand Up @@ -44,7 +44,7 @@ First, create a `package.json` with the following contents:
After that, install Pastel and its dependencies:

```bash
$ npm install pasteljs ink react prop-types
$ npm install pastel ink react prop-types
```

Then create a `commands` folder:
Expand Down

0 comments on commit c087680

Please sign in to comment.