Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions source/_posts/2016-06-24-introducing-clay.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ It is with great pleasure that I present to you, Clay, a Pebble package that mak
This post aims to provide high level explanation of how the framework works and how it came to be. Below is a quick overview of how easy it is to make your app configurable with Clay. If you would like to learn how to integrate Clay into your project, read our guide on [app configuration](/guides/user-interfaces/app-configuration/) or read the full documentation on the project [GitHub repository.](https://github.com/pebble/clay#clay)

**1) Install the module via [Pebble Packages](/guides/pebble-packages/using-packages/)**
- SDK: `$ pebble package install pebble-clay`
- CloudPebble: Add `pebble-clay`, version `^1.0.0` to your project dependencies.
- SDK: `$ pebble package install @rebble/clay`
- CloudPebble: Add `@rebble/clay`, version `^1.0.0` to your project dependencies.

**2) Create a configuration file that looks something like:**

Expand Down Expand Up @@ -70,7 +70,7 @@ module.exports = [
**4) Add a few lines to your `index.js`**

```js
var Clay = require('pebble-clay');
var Clay = require('@rebble/clay');
var clayConfig = require('./config');
var clay = new Clay(clayConfig);
```
Expand Down
2 changes: 1 addition & 1 deletion source/_posts/2016-12-22-pebblejs-package.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ code within the mobile application on a user's phone, rather than on the watch.
Making Pebble.js a Pebble Package means Pebble.js projects can be converted to
standard Pebble C projects. This gives benefits like the ability to
easily utilize other Pebble Packages, such as
[Clay for Pebble](https://www.npmjs.com/package/pebble-clay), or easily
[Clay for Pebble](https://www.npmjs.com/package/@rebble/clay), or easily
importing and exporting the project with
[CloudPebble]({{ site.links.cloudpebble }}).

Expand Down