Skip to content

Commit ba9059f

Browse files
committed
Upgrade to Meteor 2.5.
1 parent dc2ed99 commit ba9059f

File tree

7 files changed

+83
-81
lines changed

7 files changed

+83
-81
lines changed

.meteor/packages

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,20 @@
44
# 'meteor add' and 'meteor remove' will edit this file for you,
55
# but you can also edit it by hand.
66

7-
meteor-base@1.4.0 # Packages every Meteor app needs to have
7+
meteor-base@1.5.1 # Packages every Meteor app needs to have
88
[email protected] # Packages for a great mobile UX
9-
mongo@1.10.0 # The database Meteor supports right now
9+
mongo@1.13.0 # The database Meteor supports right now
1010
[email protected] # Reactive variable for tracker
1111
[email protected] # Meteor's client-side reactive programming library
1212

13-
standard-minifier-css@1.6.0 # CSS minifier run for production mode
14-
standard-minifier-js@2.6.0 # JS minifier run for production mode
13+
standard-minifier-css@1.7.4 # CSS minifier run for production mode
14+
standard-minifier-js@2.7.1 # JS minifier run for production mode
1515
[email protected] # ECMAScript 5 compatibility for older browsers.
16-
ecmascript@0.14.3 # Enable ECMAScript2015+ syntax in app code
16+
ecmascript@0.16.0 # Enable ECMAScript2015+ syntax in app code
1717
[email protected] # Server-side component of the `meteor shell` command
1818

19-
dynamic-import@0.5.2
20-
static-html
19+
dynamic-import@0.7.2
20+
static-html@1.3.2
2121

2222
akryum:vue-component
2323
fourseven:scss
@@ -29,6 +29,6 @@ peerlibrary:check-extension
2929
peerlibrary:subscription-scope
3030
peerlibrary:subscription-data
3131
peerlibrary:reactive-publish
32-
minimongo@1.6.0
32+
minimongo@1.7.0
3333
vuejs:meteor-integration
3434

.meteor/release

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
METEOR@1.10.2
1+
METEOR@2.5

.meteor/versions

Lines changed: 42 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -5,59 +5,57 @@ akryum:[email protected]
55
66
77
8-
autoupdate@1.6.0
9-
babel-compiler@7.5.3
8+
autoupdate@1.8.0
9+
babel-compiler@7.7.0
1010
1111
1212
13-
blaze-tools@1.0.10
14-
13+
blaze-tools@1.1.2
14+
1515
16-
caching-html-compiler@1.1.3
17-
callback-hook@1.3.0
16+
caching-html-compiler@1.2.1
17+
callback-hook@1.4.0
1818
1919
2020
2121
22-
ddp-client@2.3.3
22+
ddp-client@2.5.0
2323
24-
25-
24+
2625
27-
dynamic-import@0.5.2
28-
ecmascript@0.14.3
29-
ecmascript-runtime@0.7.0
30-
ecmascript-runtime-client@0.10.0
31-
ecmascript-runtime-server@0.9.0
26+
dynamic-import@0.7.2
27+
ecmascript@0.16.0
28+
ecmascript-runtime@0.8.0
29+
ecmascript-runtime-client@0.12.1
30+
ecmascript-runtime-server@0.11.0
3231
3332
3433
35-
fourseven:scss@4.12.0
34+
fourseven:scss@4.15.0
3635
3736
38-
html-tools@1.0.11
39-
htmljs@1.0.11
40-
37+
html-tools@1.1.2
38+
htmljs@1.1.1
39+
4140
42-
43-
44-
41+
42+
4543
46-
meteor@1.9.3
47-
meteor-base@1.4.0
48-
minifier-css@1.5.0
49-
minifier-js@2.6.0
50-
minimongo@1.6.0
44+
meteor@1.10.0
45+
meteor-base@1.5.1
46+
minifier-css@1.6.0
47+
minifier-js@2.7.1
48+
minimongo@1.7.0
5149
5250
53-
54-
modules@0.15.0
51+
52+
modules@0.17.0
5553
56-
mongo@1.10.0
57-
54+
mongo@1.13.0
55+
5856
59-
60-
npm-mongo@3.7.1
57+
58+
npm-mongo@3.9.1
6159
6260
peerlibrary:[email protected]
6361
peerlibrary:[email protected]
@@ -70,21 +68,22 @@ peerlibrary:[email protected]
7068
peerlibrary:[email protected]
7169
peerlibrary:[email protected]
7270
peerlibrary:[email protected]
73-
promise@0.11.2
71+
promise@0.12.0
7472
73+
7574
76-
75+
7776
78-
77+
7978
80-
socket-stream-client@0.3.0
81-
spacebars-compiler@1.1.3
82-
standard-minifier-css@1.6.0
83-
standard-minifier-js@2.6.0
84-
static-html@1.2.2
85-
templating-tools@1.1.2
79+
socket-stream-client@0.4.0
80+
spacebars-compiler@1.3.0
81+
standard-minifier-css@1.7.4
82+
standard-minifier-js@2.7.1
83+
static-html@1.3.2
84+
templating-tools@1.2.1
8685
8786
8887
89-
webapp@1.9.1
90-
webapp-hashing@1.0.9
88+
webapp@1.13.0
89+
webapp-hashing@1.1.0

client/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Meteor.startup(() => {
1111
router,
1212
el: '#app',
1313
render: (createElement) => {
14-
return createElement(Vue.component('router-view'));
14+
return createElement(Vue.component('layout'));
1515
}
1616
});
1717
});

client/layout.vue

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<template>
2+
<router-view></router-view>
3+
</template>

package-lock.json

Lines changed: 27 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"todomvc-common": "^1.0.5",
1414
"vue": "git://github.com/meteor-vue/vue.git#meteor",
1515
"vue-router": "^3.0.1",
16-
"vue-template-compiler": "2.6.10"
16+
"vue-template-compiler": "2.6.14"
1717
},
1818
"meteor": {
1919
"vueVersion": 2

0 commit comments

Comments
 (0)