From c061708125464f4328b2f868f4ca0257d6ae3461 Mon Sep 17 00:00:00 2001 From: Brent Jackson Date: Sat, 16 Sep 2017 11:41:58 -0400 Subject: [PATCH] Rename package dependencies --- README.md | 4 ++-- examples/basic/package.json | 2 +- examples/bundle/package.json | 2 +- examples/configuration/package.json | 2 +- examples/custom-html/Root.js | 2 +- examples/custom-html/package.json | 2 +- examples/cxs/Root.js | 2 +- examples/cxs/package.json | 2 +- examples/react-router/Root.js | 2 +- examples/react-router/package.json | 2 +- examples/styled-components/Root.js | 2 +- examples/styled-components/package.json | 2 +- package.json | 3 +-- 13 files changed, 14 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 0931cb1..3144d99 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Zero-config React renderer and CLI ```sh -npm install rx0 +npm install @compositor/x0 ``` ## Features @@ -147,7 +147,7 @@ const App = props => ( // root component import React from 'react' import { StaticRouter } from 'react-router' -import { Html } from 'rx0' +import { Html } from '@compositor/x0' const Root = props => ( diff --git a/examples/basic/package.json b/examples/basic/package.json index d5012ca..ffafc36 100644 --- a/examples/basic/package.json +++ b/examples/basic/package.json @@ -7,6 +7,6 @@ "test": "x0 build App.js" }, "dependencies": { - "rx0": "^1.0.6" + "@compositor/x0": "^1.0.9" } } diff --git a/examples/bundle/package.json b/examples/bundle/package.json index b5f32b4..fae5a70 100644 --- a/examples/bundle/package.json +++ b/examples/bundle/package.json @@ -8,7 +8,7 @@ }, "dependencies": { "refunk": "^1.0.0-2", - "rx0": "^1.0.6" + "@compositor/x0": "^1.0.9" }, "x0": { "title": "x0 Bundle Example", diff --git a/examples/configuration/package.json b/examples/configuration/package.json index 2e4f2ee..787fa9f 100644 --- a/examples/configuration/package.json +++ b/examples/configuration/package.json @@ -7,7 +7,7 @@ "test": "x0 build App.js" }, "dependencies": { - "rx0": "^1.0.6" + "@compositor/x0": "^1.0.9" }, "x0": { "title": "x0 Configuration Example", diff --git a/examples/custom-html/Root.js b/examples/custom-html/Root.js index e926f05..239e8ab 100644 --- a/examples/custom-html/Root.js +++ b/examples/custom-html/Root.js @@ -1,5 +1,5 @@ import React from 'react' -import { Html } from 'rx0' +import { Html } from '@compositor/x0' const css = `*{box-sizing:border-box} body{font-family:-apple-system,BlinkMacSystemFont,sans-serif;margin:0}` diff --git a/examples/custom-html/package.json b/examples/custom-html/package.json index 4494ff6..fd99aa7 100644 --- a/examples/custom-html/package.json +++ b/examples/custom-html/package.json @@ -8,7 +8,7 @@ }, "dependencies": { "refunk": "^1.0.0-2", - "rx0": "^1.0.6" + "@compositor/x0": "^1.0.9" }, "x0": { "title": "x0 HTML Example", diff --git a/examples/cxs/Root.js b/examples/cxs/Root.js index a621dbc..ae712a3 100644 --- a/examples/cxs/Root.js +++ b/examples/cxs/Root.js @@ -1,5 +1,5 @@ import React from 'react' -import { Html } from 'rx0' +import { Html } from '@compositor/x0' import cxs from 'cxs' const basecss = `*{box-sizing:border-box} diff --git a/examples/cxs/package.json b/examples/cxs/package.json index 98536e4..c5d158c 100644 --- a/examples/cxs/package.json +++ b/examples/cxs/package.json @@ -8,6 +8,6 @@ }, "dependencies": { "cxs": "^6.0.0", - "rx0": "^1.0.6" + "@compositor/x0": "^1.0.9" } } diff --git a/examples/react-router/Root.js b/examples/react-router/Root.js index 269237f..e607001 100644 --- a/examples/react-router/Root.js +++ b/examples/react-router/Root.js @@ -1,5 +1,5 @@ import React from 'react' -import { Html } from 'rx0' +import { Html } from '@compositor/x0' const css = `*{box-sizing:border-box} body{font-family:-apple-system,BlinkMacSystemFont,sans-serif;margin:0}` diff --git a/examples/react-router/package.json b/examples/react-router/package.json index d5f0450..d565eb2 100644 --- a/examples/react-router/package.json +++ b/examples/react-router/package.json @@ -8,7 +8,7 @@ }, "dependencies": { "react-router-dom": "^4.2.2", - "rx0": "^1.0.6" + "@compositor/x0": "^1.0.9" }, "x0": { "title": "x0 react-router", diff --git a/examples/styled-components/Root.js b/examples/styled-components/Root.js index 38cf166..6112237 100644 --- a/examples/styled-components/Root.js +++ b/examples/styled-components/Root.js @@ -1,5 +1,5 @@ import React from 'react' -import { Html } from 'rx0' +import { Html } from '@compositor/x0' import { ServerStyleSheet } from 'styled-components' // Used for styled-components rerendering diff --git a/examples/styled-components/package.json b/examples/styled-components/package.json index 7c58c51..8e7b9a5 100644 --- a/examples/styled-components/package.json +++ b/examples/styled-components/package.json @@ -7,7 +7,7 @@ "test": "x0 build App.js --html Root.js" }, "dependencies": { - "rx0": "^1.0.6", + "@compositor/x0": "^1.0.9", "styled-components": "^2.1.2" } } diff --git a/package.json b/package.json index d6fe402..5501241 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,5 @@ { - "name": "rx0", - "_name": "@compositor/x0", + "name": "@compositor/x0", "version": "1.0.8", "description": "Zero-config React renderer and CLI", "main": "index.js",