Permalink
Browse files

s/jongold/airbnb :)

  • Loading branch information...
1 parent e1dad0d commit 6377b54240175912c959b2b51a86b4dcb2fd31bb @jongold jongold committed Mar 22, 2017
Showing with 13 additions and 13 deletions.
  1. +1 −1 CHANGELOG.md
  2. +2 −2 README.md
  3. +2 −2 book.json
  4. +2 −2 docs/FAQ.md
  5. +2 −2 example-plugin/manifest.json
  6. +4 −4 package.json
View
@@ -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.
View
@@ -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
@@ -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
```
View
@@ -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/"
}
}
}
View
@@ -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?
@@ -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.
@@ -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,
View
@@ -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",
@@ -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",

0 comments on commit 6377b54

Please sign in to comment.