Skip to content

Commit 0cb9af5

Browse files
FlynnD273hellcp
authored andcommitted
Replace pebble-clay with @rebble/clay
Signed-off-by: Flynn Duniho <flynn@harveyosity.org>
1 parent 7499c4e commit 0cb9af5

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

source/_posts/2016-06-24-introducing-clay.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ It is with great pleasure that I present to you, Clay, a Pebble package that mak
3030
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)
3131

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

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

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

7272
```js
73-
var Clay = require('pebble-clay');
73+
var Clay = require('@rebble/clay');
7474
var clayConfig = require('./config');
7575
var clay = new Clay(clayConfig);
7676
```

source/_posts/2016-12-22-pebblejs-package.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ code within the mobile application on a user's phone, rather than on the watch.
3131
Making Pebble.js a Pebble Package means Pebble.js projects can be converted to
3232
standard Pebble C projects. This gives benefits like the ability to
3333
easily utilize other Pebble Packages, such as
34-
[Clay for Pebble](https://www.npmjs.com/package/pebble-clay), or easily
34+
[Clay for Pebble](https://www.npmjs.com/package/@rebble/clay), or easily
3535
importing and exporting the project with
3636
[CloudPebble]({{ site.links.cloudpebble }}).
3737

0 commit comments

Comments
 (0)