Skip to content
This repository was archived by the owner on Jul 22, 2025. It is now read-only.

Commit b100aed

Browse files
authored
Merge pull request #1518 from TelescopeJS/devel
v0.27.5 - really the latest full Meteor version
2 parents c8615d3 + 18bf68f commit b100aed

File tree

175 files changed

+1466
-2107
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

175 files changed

+1466
-2107
lines changed

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
packages/_*

.eslintrc

Lines changed: 24 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
{
22
"extends": [
3-
"eslint:recommended"
3+
"eslint:recommended",
4+
"plugin:meteor/recommended",
5+
"plugin:react/recommended"
46
],
57
"parser": "babel-eslint",
68
"parserOptions": {
@@ -10,7 +12,17 @@
1012
},
1113
"rules": {
1214
"babel/generator-star-spacing": 0,
13-
"babel/new-cap": 1,
15+
"babel/new-cap": [1, {
16+
"capIsNewExceptions": [
17+
"Optional",
18+
"OneOf",
19+
"Maybe",
20+
"MailChimpAPI",
21+
"Juice",
22+
"Run",
23+
"AppComposer"
24+
]
25+
}],
1426
"babel/array-bracket-spacing": 0,
1527
"babel/object-curly-spacing": 0,
1628
"babel/object-shorthand": 0,
@@ -20,8 +32,14 @@
2032
"key-spacing": 0,
2133
"no-extra-boolean-cast": 0,
2234
"no-undef": 1,
23-
"no-unused-vars": 1,
24-
"no-console": 1
35+
"no-unused-vars": [1, {
36+
"vars": "all",
37+
"args": "none",
38+
"varsIgnorePattern": "React|PropTypes|Component"
39+
}],
40+
"no-console": 1,
41+
"react/prop-types": 0,
42+
"meteor/audit-argument-checks": 0
2543
},
2644
"env": {
2745
"browser": true,
@@ -32,7 +50,8 @@
3250
},
3351
"plugins": [
3452
"babel",
35-
"meteor"
53+
"meteor",
54+
"react"
3655
],
3756
"settings": {
3857
"import/resolver": "meteor"

.meteor/packages

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ nova:base-routes
3030
nova:email-templates
3131
nova:i18n-en-us
3232

33-
accounts-password@1.3.2
33+
accounts-password@1.3.3
3434
# accounts-twitter
3535
# accounts-facebook
3636

.meteor/release

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

.meteor/versions

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
accounts-base@1.2.14
2-
accounts-password@1.3.2
2+
accounts-password@1.3.3
33
aldeed:collection2@2.10.0
44
aldeed:collection2-core@1.2.0
55
aldeed:schema-deny@1.1.0
@@ -8,7 +8,7 @@ aldeed:simple-schema@1.5.3
88
allow-deny@1.0.5
99
autoupdate@1.3.12
1010
babel-compiler@6.13.0
11-
babel-runtime@1.0.0
11+
babel-runtime@1.0.1
1212
base64@1.0.10
1313
binary-heap@1.0.10
1414
blaze@2.2.0
@@ -18,7 +18,7 @@ caching-compiler@1.1.9
1818
callback-hook@1.0.10
1919
check@1.2.4
2020
chuangbo:cookie@1.1.0
21-
coffeescript@1.11.1_3
21+
coffeescript@1.11.1_4
2222
dburles:collection-helpers@1.1.0
2323
ddp@1.2.5
2424
ddp-client@1.3.2
@@ -27,7 +27,7 @@ ddp-rate-limiter@1.0.6
2727
ddp-server@1.3.12
2828
deps@1.0.12
2929
diff-sequence@1.0.7
30-
ecmascript@0.6.0
30+
ecmascript@0.6.1
3131
ecmascript-runtime@0.3.15
3232
ejson@1.0.13
3333
email@1.1.18
@@ -59,7 +59,7 @@ meteorhacks:subs-manager@1.6.4
5959
meteorhacks:unblock@1.1.0
6060
minifier-css@1.2.15
6161
minifier-js@1.2.15
62-
minimongo@1.0.18
62+
minimongo@1.0.19
6363
modules@0.7.7
6464
modules-runtime@0.7.7
6565
mongo@1.1.14
@@ -105,15 +105,15 @@ rate-limit@1.0.6
105105
react-meteor-data@0.2.9
106106
reactive-dict@1.1.8
107107
reactive-var@1.0.11
108-
reactrouter:react-router-ssr@3.1.5
108+
reactrouter:react-router-ssr@3.1.6-nova-patch
109109
reload@1.1.11
110110
retry@1.0.9
111111
routepolicy@1.0.12
112112
service-configuration@1.0.11
113113
session@1.1.7
114114
sha@1.0.9
115115
shell-server@0.2.1
116-
softwarerero:accounts-t9n@1.3.5
116+
softwarerero:accounts-t9n@1.3.6
117117
spacebars@1.0.13
118118
spacebars-compiler@1.0.13
119119
srp@1.0.10

History.md

Lines changed: 8 additions & 0 deletions

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"npm": "^3.0"
66
},
77
"scripts": {
8-
"lint": "eslint --cache packages"
8+
"lint": "eslint --cache --ext .jsx,js packages"
99
},
1010
"dependencies": {
1111
"babel-runtime": "^6.18.0",

0 commit comments

Comments
 (0)