rebuilt and bumped version

This commit is contained in:
bill bittner 2018-03-31 12:23:18 -07:00
parent 579bf87637
commit d0c13dafdc
3 changed files with 17 additions and 3 deletions

File diff suppressed because one or more lines are too long

View file

@ -1,7 +1,7 @@
{ {
"name": "spee.ch", "name": "spee.ch",
"version": "0.0.1", "version": "0.1.0",
"description": "a web application that reads and publishes images to and from the LBRY blockchain", "description": "an npm package that exports a customizeable spee.ch server",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
"test": "mocha --recursive", "test": "mocha --recursive",

View file

@ -4,6 +4,13 @@ import { createStore } from 'redux';
import { Provider } from 'react-redux'; import { Provider } from 'react-redux';
import { StaticRouter } from 'react-router-dom'; import { StaticRouter } from 'react-router-dom';
import { Reducers, GAListener, App } from 'spee.ch-components'; import { Reducers, GAListener, App } from 'spee.ch-components';
/*
^ note: to do this better, maybe
these should be passed in from the implementation (www.spee.ch)
after they have been customized,
so that there is no conflict between the SSR here and
the bundle sent to the server?
*/
import renderFullPage from './renderFullPage.js'; import renderFullPage from './renderFullPage.js';
import Helmet from 'react-helmet'; import Helmet from 'react-helmet';