Skip to content

Commit 16a2782

Browse files
Update to Meteor 1.5.
1 parent 5783fb7 commit 16a2782

File tree

6 files changed

+82
-66
lines changed

6 files changed

+82
-66
lines changed

app/.eslintrc

+13-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"parserOptions": {
3-
"ecmaVersion": 6,
3+
"ecmaVersion": 2017,
44
"sourceType": "module"
55
},
66
"plugins": [
@@ -20,7 +20,18 @@
2020
],
2121
"meteor/template-names": "off",
2222
"prefer-arrow-callback": "off",
23+
"arrow-parens": "off",
24+
"no-plusplus": "off",
25+
"func-names": "off",
2326
"linebreak-style": "off",
24-
"max-len": ["error", 120]
27+
"object-property-newline": "off",
28+
"no-underscore-dangle": "off",
29+
"max-len": ["error", 120],
30+
"import/no-absolute-path": "off",
31+
"import/no-unresolved": "off",
32+
"import/extensions": "off",
33+
"import/imports-first": "off",
34+
"import/prefer-default-export": "off",
35+
"import/no-extraneous-dependencies": "off"
2536
}
2637
}

app/.meteor/.finished-upgraders

+2
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,5 @@ notices-for-facebook-graph-api-2
1313
1.3.0-split-minifiers-package
1414
1.4.0-remove-old-dev-bundle-link
1515
1.4.1-add-shell-server-package
16+
1.4.3-split-account-service-packages
17+
1.5-add-dynamic-import-package

app/.meteor/packages

+12-13
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,21 @@
55
# but you can also edit it by hand.
66

77
# Basic packages and utilities for most Meteor app development
8-
meteor-base@1.0.4
9-
10-
mongo@1.1.14
8+
meteor-base@1.1.0
9+
10+
mongo@1.2.2
1111
1212
1313
14-
14+
1515
16-
ecmascript@0.6.1
16+
ecmascript@0.8.2
1717
18-
19-
20-
21-
18+
19+
20+
21+
22+
dynamic-import
2223

2324
# Collection utilities
2425
aldeed:collection2
@@ -31,7 +32,7 @@ sacha:spin
3132

3233
# Account management
3334
34-
accounts-password@1.3.3
35+
accounts-password@1.4.0
3536

3637
# Routing
3738
kadira:flow-router
@@ -42,12 +43,10 @@ arillo:flow-router-helpers
4243
# Semantic UI (and packages to integrate with accounts and autoform)
4344
semantic:ui
4445
juliancwirko:postcss
45-
46+
4647
fabienb4:autoform-semantic-ui
4748

4849
# For prototyping purposes, enable autopublish and insecure
4950
5051
5152

52-
53-

app/.meteor/release

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
METEOR@1.4.2.6
1+
METEOR@1.5.2.1

app/.meteor/versions

+53-49
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,52 @@
1-
accounts-base@1.2.14
2-
accounts-password@1.3.4
1+
accounts-base@1.3.4
2+
accounts-password@1.4.0
33
4-
4+
55
66
77
88
99
1010
11-
11+
1212
1313
1414
15-
babel-compiler@6.14.0
15+
babel-compiler@6.20.0
1616
1717
1818
19-
20-
19+
20+
2121
22-
boilerplate-generator@1.0.11
22+
boilerplate-generator@1.2.0
2323
24-
24+
2525
26-
27-
28-
29-
30-
31-
32-
26+
27+
28+
29+
30+
31+
32+
33+
3334
3435
35-
36-
37-
38-
36+
37+
38+
39+
40+
41+
42+
3943
4044
41-
4245
4346
4447
4548
46-
49+
4750
4851
4952
@@ -53,30 +56,31 @@ kadira:[email protected]
5356
5457
5558
56-
localstorage@1.0.12
59+
localstorage@1.1.1
5760
5861
59-
meteor@1.6.1
60-
meteor-base@1.0.4
62+
meteor@1.7.2
63+
meteor-base@1.1.0
6164
62-
minifier-js@1.2.17
63-
minimongo@1.0.20
64-
65+
minifier-js@2.1.4
66+
minimongo@1.3.2
67+
6568
66-
67-
68-
69-
69+
70+
71+
72+
73+
7074
71-
72-
73-
75+
76+
77+
7478
75-
promise@0.8.8
79+
promise@0.9.0
7680
7781
78-
79-
82+
83+
8084
8185
8286
@@ -87,19 +91,19 @@ semantic:[email protected]_4
8791
8892
8993
90-
91-
92-
94+
95+
96+
9397
94-
standard-minifier-js@1.2.2
95-
96-
97-
98-
99-
100-
98+
standard-minifier-js@2.1.2
99+
100+
101+
102+
103+
104+
101105
102106
103-
107+
104108
105109

index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
![](https://raw.githubusercontent.com/ics-software-engineering/meteor-application-template/master/doc/home-page.png)
22

3-
Meteor-application-template is a sample Meteor 1.4 application that is created to illustrate:
3+
Meteor-application-template is a sample Meteor 1.5 application that is created to illustrate:
44

55
* A standard directory layout using 'imports/' as recommended in the [Meteor Guide](https://guide.meteor.com/structure.html)
66
* A standard set of Meteor packages and example usage (FlowRouter, AutoForm, Accounts, and Semantic UI)

0 commit comments

Comments
 (0)