Skip to content

Commit

Permalink
s/jongold/airbnb :)
Browse files Browse the repository at this point in the history
  • Loading branch information
jemgold committed Mar 22, 2017
1 parent e1dad0d commit 6377b54
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
@@ -1,4 +1,4 @@
# Change Log

This project adheres to [Semantic Versioning](http://semver.org/).
Every release, along with the migration instructions, is documented on the Github [Releases](https://github.com/jongold/react-sketchapp/releases) page.
Every release, along with the migration instructions, is documented on the Github [Releases](https://github.com/airbnb/react-sketchapp/releases) page.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -5,7 +5,7 @@
A React renderer for [Sketch.app](https://www.sketchapp.com/) :atom_symbol: :gem:

[![npm](https://img.shields.io/npm/v/react-sketchapp.svg)](https://www.npmjs.com/package/react-sketchapp)
[![CircleCI](https://circleci.com/gh/jongold/react-sketchapp.svg?style=shield&circle-token=6a90e014d72c4b27b87b0fc43ec4590117b466fc)](https://circleci.com/gh/jongold/react-sketchapp)
[![CircleCI](https://circleci.com/gh/airbnb/react-sketchapp.svg?style=shield&circle-token=6a90e014d72c4b27b87b0fc43ec4590117b466fc)](https://circleci.com/gh/airbnb/react-sketchapp)
![Sketch.app](https://img.shields.io/badge/Sketch.app-42-brightgreen.svg)

## Features
Expand Down Expand Up @@ -89,7 +89,7 @@ You can then use [react-native-packager](https://github.com/facebook/react-nativ

Clone & build the repo, and symlink the examples:
```bash
git clone git@github.com:jongold/react-sketchapp.git && cd react-sketchapp
git clone git@github.com:airbnb/react-sketchapp.git && cd react-sketchapp
npm install && npm run build:plugin
./symlink-plugin.sh
```
Expand Down
4 changes: 2 additions & 2 deletions book.json
Expand Up @@ -12,11 +12,11 @@
],
"pluginsConfig": {
"edit-link": {
"base": "https://github.com/jongold/react-sketchapp/tree/master",
"base": "https://github.com/airbnb/react-sketchapp/tree/master",
"label": "Edit This Page"
},
"github": {
"url": "https://github.com/jongold/react-sketchapp/"
"url": "https://github.com/airbnb/react-sketchapp/"
}
}
}
4 changes: 2 additions & 2 deletions docs/FAQ.md
Expand Up @@ -7,7 +7,7 @@
Some data points:
* This project follows [semantic versioning](http://semver.org/)
* We haven't baked a 1.0 release yet; until then, APIs are liable to change as we make them comfortable & productive.
* There's a [changelog](https://github.com/jongold/react-sketchapp/releases)
* There's a [changelog](https://github.com/airbnb/react-sketchapp/releases)
* We're using it day-to-day at Airbnb.

#### `<View>` & `<Text>`? Where are the shapes at?
Expand Down Expand Up @@ -66,7 +66,7 @@ Not currently. When we find the right API we'll probably implement an SVG-style
#### Any plans to support Sketch's constraints for layout?
Not currently. Flexbox is the closest we have to a predictable, cross-platform layout specification — by using it, we can use the same styles on every platform we build for.

We currently use [`css-layout`](https://github.com/facebook/css-layout), but switching to [`yoga`](https://github.com/facebook/yoga) is on the roadmap. [#51](https://github.com/jongold/react-sketchapp/issues/51).
We currently use [`css-layout`](https://github.com/facebook/css-layout), but switching to [`yoga`](https://github.com/facebook/yoga) is on the roadmap. [#51](https://github.com/airbnb/react-sketchapp/issues/51).

#### Is there two-way binding? Can I generate React components from Sketch? :repeat:
Nope.
Expand Down
4 changes: 2 additions & 2 deletions example-plugin/manifest.json
Expand Up @@ -2,10 +2,10 @@
"name": "react-example",
"description": "Example react-sketchapp plugin",
"author": "Jon Gold",
"homepage": "http://github.com/jongold/react-sketchapp",
"homepage": "http://github.com/airbnb/react-sketchapp",
"version": 0.1,
"identifier": "com.jongold.react-sketchapp",
"updateURL": "https://github.com/downloads/jongold/react-sketchapp/react-sketchapp.json",
"updateURL": "https://github.com/downloads/airbnb/react-sketchapp/react-sketchapp.json",
"compatibleVersion": 1,
"bundleVersion": 1,
"disableCocoaScriptPreprocessor": true,
Expand Down
8 changes: 4 additions & 4 deletions package.json
Expand Up @@ -24,7 +24,7 @@
"docs:prepare": "gitbook install",
"docs:build": "npm run docs:prepare && gitbook build",
"docs:watch": "npm run docs:prepare && gitbook serve",
"docs:publish": "npm run docs:clean && npm run docs:build && cd _book && git init && git commit --allow-empty -m 'update book' && git fetch git@github.com:jongold/react-sketchapp.git gh-pages && git checkout -b gh-pages && git add . && git commit -am 'update book' && git push git@github.com:jongold/react-sketchapp.git gh-pages --force",
"docs:publish": "npm run docs:clean && npm run docs:build && cd _book && git init && git commit --allow-empty -m 'update book' && git fetch git@github.com:airbnb/react-sketchapp.git gh-pages && git checkout -b gh-pages && git add . && git commit -am 'update book' && git push git@github.com:airbnb/react-sketchapp.git gh-pages --force",
"flow": "flow",
"lint": "eslint .",
"prepublish": "npm run clean && npm run check && npm run build",
Expand Down Expand Up @@ -55,12 +55,12 @@
],
"repository": {
"type": "git",
"url": "https://github.com/jongold/react-sketchapp"
"url": "https://github.com/airbnb/react-sketchapp"
},
"bugs": {
"url": "https://github.com/jongold/react-sketchapp/issues"
"url": "https://github.com/airbnb/react-sketchapp/issues"
},
"homepage": "https://github.com/jongold/react-sketchapp",
"homepage": "https://github.com/airbnb/react-sketchapp",
"devDependencies": {
"@jongold/eslint-config-sketch": "^1.0.0-2",
"babel-cli": "^6.18.0",
Expand Down

0 comments on commit 6377b54

Please sign in to comment.