Commit 3daf322e92d9d71e9059cd12103edb6b9701c858

Authored by themeteorchef
1 parent 431734831b
Exists in master

bump dependencies and patch a few things

- Bring Meteor up to 1.4.0.1.
- Bring Meteor packages up to date.
- Bring NPM packages up to date.
- Fix console warnings from #157. Closes #157. Closes #162.
- Remove import of bootstrap.js (was redundant). Closes #170.

Closes #172
1   -METEOR@1.4
  1 +METEOR@1.4.0.1
... ...
1   -accounts-base@1.2.9
2   -accounts-password@1.2.12
  1 +accounts-base@1.2.10
  2 +accounts-password@1.2.14
3 3 alanning:roles@1.2.15
4 4 aldeed:collection2@2.9.1
5 5 aldeed:collection2-core@1.1.1
... ... @@ -34,13 +34,13 @@ ddp-server@1.2.10
34 34 deps@1.0.12
35 35 diff-sequence@1.0.6
36 36 ecmascript@0.5.7
37   -ecmascript-runtime@0.3.12
  37 +ecmascript-runtime@0.3.13
38 38 ejson@1.0.12
39 39 email@1.1.16
40 40 es5-shim@4.6.13
41 41 fastclick@1.0.12
42 42 fortawesome:fontawesome@4.5.0
43   -fourseven:scss@3.8.0_1
  43 +fourseven:scss@3.8.1
44 44 geojson-utils@1.0.9
45 45 hot-code-push@1.0.4
46 46 html-tools@1.0.10
... ... @@ -65,7 +65,7 @@ modules@0.7.5
65 65 modules-runtime@0.7.5
66 66 mongo@1.1.10
67 67 mongo-id@1.0.5
68   -npm-bcrypt@0.8.7
  68 +npm-bcrypt@0.8.7_1
69 69 npm-mongo@1.5.45
70 70 observe-sequence@1.0.12
71 71 ordered-dict@1.0.8
... ...
imports/startup/client/index.js
1 1 import { Bert } from 'meteor/themeteorchef:bert';
2 2 import 'bootstrap/dist/css/bootstrap.min.css';
3   -import 'bootstrap/dist/js/bootstrap.min.js';
4 3 import './routes.js';
5 4  
6 5 Bert.defaults.style = 'growl-top-right';
... ...
imports/ui/components/document.js
... ... @@ -43,7 +43,6 @@ export const Document = ({ document }) => (
43 43 <Col xs={ 8 } sm={ 10 }>
44 44 <FormControl
45 45 type="text"
46   - standalone
47 46 defaultValue={ document.title }
48 47 onKeyUp={ handleUpdateDocument.bind(this, document._id) }
49 48 />
... ...
imports/ui/components/loading.js
... ... @@ -10,7 +10,7 @@ export const Loading = () =&gt; (
10 10 width="40px"
11 11 height="40px"
12 12 viewBox="0 0 40 40"
13   - enable-background="new 0 0 40 40">
  13 + enableBackground="new 0 0 40 40">
14 14 <path
15 15 opacity="1.0"
16 16 fill="#eee"
... ...
... ... @@ -59,12 +59,12 @@
59 59 "bootstrap": "^3.3.7",
60 60 "jquery": "^2.2.4",
61 61 "jquery-validation": "^1.15.1",
62   - "react": "^15.2.1",
  62 + "react": "^15.3.0",
63 63 "react-addons-pure-render-mixin": "^15.2.1",
64   - "react-bootstrap": "^0.29.5",
65   - "react-dom": "^15.2.1",
  64 + "react-bootstrap": "^0.30.2",
  65 + "react-dom": "^15.3.0",
66 66 "react-komposer": "^1.13.1",
67   - "react-router": "^2.6.0",
  67 + "react-router": "^2.6.1",
68 68 "react-router-bootstrap": "^0.23.1"
69 69 }
70 70 }
... ...