General refactoring
-
Fixed build process to use webpack
-
Fixed many issues with dependencies and multiple copies of React
-
Doesn't bundle
react
andreact-relay
packages to make files minimal and avoid build issues, they are now peer dependencies -
Changed folder structure and way to get files:
- On the server side:
import bloql from 'bloql/server/middleware/express'; // become => import bloql from 'bloql/middleware/express';
- On the client side:
import { createPost } from 'bloql/client'; import { createPostList } from 'bloql/client'; // become => import createPost from 'bloql/Post'; import createPostList from 'bloql/PostList';