Skip to content
This repository has been archived by the owner on Apr 13, 2023. It is now read-only.

Better packaging utilizing package.json browser field #306

Merged
merged 1 commit into from
Nov 23, 2016
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
11 changes: 11 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@ Expect active development and potentially significant breaking changes in the `0

### vNext

#### Breaking
```js
// old
import { getDataFromTree, renderToStringWithData } from 'react-apollo/server'

// new
import { getDataFromTree, renderToStringWithData } from 'react-apollo'
```

- Feature: Better packaging [PR #306](https://github.com/apollostack/react-apollo/pull/306)

### v0.5.15
- Feature: Added test utilities and examples to library.

Expand Down
2 changes: 1 addition & 1 deletion examples/create-react-app/src/App.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { Component } from 'react';
import ApolloClient, { createNetworkInterface } from 'apollo-client';
import { ApolloProvider } from "../../../lib/src";
import { ApolloProvider } from "../../../lib";

import Pokemon from "./Pokemon";

Expand Down
2 changes: 1 addition & 1 deletion examples/create-react-app/src/Pokemon.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';
import gql from 'graphql-tag';
import { graphql } from '../../../lib/src';
import { graphql } from '../../../lib';

// The data prop, which is provided by the wrapper below contains,
// a `loading` key while the query is in flight and posts when it is ready
Expand Down
2 changes: 1 addition & 1 deletion examples/create-react-app/src/Pokemon.test.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';
import renderer from 'react-test-renderer';
import { MockedProvider } from '../../../lib/src/test-utils';
import { MockedProvider } from '../../../lib/test-utils';
import { print } from 'graphql-tag/printer';
import { addTypenameToDocument } from 'apollo-client/queries/queryTransform';

Expand Down
16 changes: 13 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,16 @@
"name": "react-apollo",
"version": "0.5.16",
"description": "React data container for Apollo Client",
"main": "index.js",
"typings": "index.d.ts",
"main": "lib/index.js",
"browser": "lib/browser.js",
"typings": "lib/index.d.ts",
"scripts": {
"test": "jest",
"flow": "flow; test $? -eq 0 -o $? -eq 2",
"posttest": "npm run lint",
"filesize": "npm run compile:browser && ./scripts/filesize.js --file=./dist/index.min.js --maxGzip=15",
"compile": "tsc",
"compile:browser": "rm -rf ./dist && mkdir ./dist && browserify ./lib/src/index.js --i react --i apollo-client -o=./dist/index.js && npm run minify:browser",
"compile:browser": "rm -rf ./dist && mkdir ./dist && browserify ./lib/index.js --i react --i apollo-client -o=./dist/index.js && npm run minify:browser",
"minify:browser": "uglifyjs --compress --mangle --screw-ie8 -o=./dist/index.min.js -- ./dist/index.js",
"watch": "tsc -w",
"lint": "tslint 'src/*.ts*' && tslint 'test/*.ts*'"
Expand Down Expand Up @@ -48,6 +49,15 @@
"collectCoverage": true
},
"license": "MIT",
"files": [
"dist",
"lib",
"src",
"exports.d.ts",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"peerDependencies": {
"apollo-client": "^0.4.21 || ^0.5.0",
"react": "0.14.x || 15.* || ^15.0.0",
Expand Down
5 changes: 5 additions & 0 deletions src/browser.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export { default as ApolloProvider } from './ApolloProvider';
export { default as graphql, withApollo } from './graphql';

// expose easy way to join queries from redux
export { compose } from 'redux';
8 changes: 2 additions & 6 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
import ApolloProvider from './ApolloProvider';
import graphql, { withApollo } from './graphql';
export * from './browser';

// expose easy way to join queries from redux
import { compose } from 'redux';

export { ApolloProvider, graphql, withApollo, compose };
export { getDataFromTree, renderToStringWithData } from './server';
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"sourceMap": true,
"declaration": true,
"noImplicitAny": false,
"rootDir": ".",
"rootDir": "src",
"outDir": "lib",
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
Expand Down