|
1 | 1 | Package.describe({
|
2 |
| - name: 'cultofcoders:grapher', |
3 |
| - version: '1.3.7', |
4 |
| - // Brief, one-line summary of the package. |
5 |
| - summary: 'Grapher is a data fetching layer on top of Meteor', |
6 |
| - // URL to the Git repository containing the source code for this package. |
7 |
| - git: 'https://github.com/cult-of-coders/grapher', |
8 |
| - // By default, Meteor will default to using README.md for documentation. |
9 |
| - // To avoid submitting documentation, set this field to null. |
10 |
| - documentation: 'README.md', |
| 2 | + name: 'cultofcoders:grapher', |
| 3 | + version: '1.3.7_1', |
| 4 | + // Brief, one-line summary of the package. |
| 5 | + summary: 'Grapher is a data fetching layer on top of Meteor', |
| 6 | + // URL to the Git repository containing the source code for this package. |
| 7 | + git: 'https://github.com/cult-of-coders/grapher', |
| 8 | + // By default, Meteor will default to using README.md for documentation. |
| 9 | + // To avoid submitting documentation, set this field to null. |
| 10 | + documentation: 'README.md', |
11 | 11 | });
|
12 | 12 |
|
13 | 13 | Npm.depends({
|
14 |
| - sift: '3.2.6', |
15 |
| - 'dot-object': '1.5.4', |
16 |
| - 'lodash.clonedeep': '4.5.0', |
17 |
| - 'deep-extend': '0.5.0', |
| 14 | + sift: '3.2.6', |
| 15 | + 'dot-object': '1.5.4', |
| 16 | + 'lodash.clonedeep': '4.5.0', |
| 17 | + 'deep-extend': '0.5.0', |
18 | 18 | });
|
19 | 19 |
|
20 | 20 | Package.onUse(function(api) {
|
21 |
| - api.versionsFrom('1.3'); |
22 |
| - |
23 |
| - var packages = [ |
24 |
| - 'ecmascript', |
25 |
| - 'underscore', |
26 |
| - 'promise', |
27 |
| - 'check', |
28 |
| - 'reactive-var', |
29 |
| - 'mongo', |
30 |
| - |
31 |
| - |
32 |
| - |
33 |
| - |
34 |
| - ]; |
35 |
| - |
36 |
| - api.use(packages); |
37 |
| - |
38 |
| - api.mainModule('main.client.js', 'client'); |
39 |
| - api.mainModule('main.server.js', 'server'); |
| 21 | + api.versionsFrom('1.3'); |
| 22 | + |
| 23 | + var packages = [ |
| 24 | + 'ecmascript', |
| 25 | + 'underscore', |
| 26 | + 'promise', |
| 27 | + 'check', |
| 28 | + 'reactive-var', |
| 29 | + 'mongo', |
| 30 | + |
| 31 | + |
| 32 | + |
| 33 | + |
| 34 | + ]; |
| 35 | + |
| 36 | + api.use(packages); |
| 37 | + |
| 38 | + api.mainModule('main.client.js', 'client'); |
| 39 | + api.mainModule('main.server.js', 'server'); |
40 | 40 | });
|
41 | 41 |
|
42 | 42 | Package.onTest(function(api) {
|
43 |
| - api.use('cultofcoders:grapher'); |
| 43 | + api.use('cultofcoders:grapher'); |
44 | 44 |
|
45 |
| - var packages = [ |
46 |
| - 'ecmascript', |
47 |
| - 'underscore', |
48 |
| - |
49 |
| - |
50 |
| - |
51 |
| - |
52 |
| - 'mongo', |
53 |
| - ]; |
| 45 | + var packages = [ |
| 46 | + 'ecmascript', |
| 47 | + 'underscore', |
| 48 | + |
| 49 | + |
| 50 | + |
| 51 | + |
| 52 | + 'mongo', |
| 53 | + ]; |
54 | 54 |
|
55 |
| - api.use(packages); |
56 |
| - api.use('tracker'); |
| 55 | + api.use(packages); |
| 56 | + api.use('tracker'); |
57 | 57 |
|
58 |
| - api.use(['cultofcoders:mocha', 'practicalmeteor:chai']); |
| 58 | + api.use(['cultofcoders:mocha', 'practicalmeteor:chai']); |
59 | 59 |
|
60 |
| - // LINKS |
61 |
| - api.addFiles('lib/links/tests/main.js', 'server'); |
| 60 | + // LINKS |
| 61 | + api.addFiles('lib/links/tests/main.js', 'server'); |
62 | 62 |
|
63 |
| - // EXPOSURE |
64 |
| - api.addFiles('lib/exposure/testing/server.js', 'server'); |
65 |
| - api.addFiles('lib/exposure/testing/client.js', 'client'); |
| 63 | + // EXPOSURE |
| 64 | + api.addFiles('lib/exposure/testing/server.js', 'server'); |
| 65 | + api.addFiles('lib/exposure/testing/client.js', 'client'); |
66 | 66 |
|
67 |
| - // QUERY |
68 |
| - api.addFiles('lib/query/testing/bootstrap/index.js'); |
| 67 | + // QUERY |
| 68 | + api.addFiles('lib/query/testing/bootstrap/index.js'); |
69 | 69 |
|
70 |
| - // When you play with tests you should comment this to make tests go faster. |
71 |
| - api.addFiles('lib/query/testing/bootstrap/fixtures.js', 'server'); |
| 70 | + // When you play with tests you should comment this to make tests go faster. |
| 71 | + api.addFiles('lib/query/testing/bootstrap/fixtures.js', 'server'); |
72 | 72 |
|
73 |
| - api.addFiles('lib/query/testing/server.test.js', 'server'); |
74 |
| - api.addFiles('lib/query/testing/client.test.js', 'client'); |
| 73 | + api.addFiles('lib/query/testing/server.test.js', 'server'); |
| 74 | + api.addFiles('lib/query/testing/client.test.js', 'client'); |
75 | 75 |
|
76 |
| - // NAMED QUERY |
77 |
| - api.addFiles('lib/namedQuery/testing/bootstrap/both.js'); |
78 |
| - api.addFiles('lib/namedQuery/testing/bootstrap/client.js', 'client'); |
79 |
| - api.addFiles('lib/namedQuery/testing/bootstrap/server.js', 'server'); |
| 76 | + // NAMED QUERY |
| 77 | + api.addFiles('lib/namedQuery/testing/bootstrap/both.js'); |
| 78 | + api.addFiles('lib/namedQuery/testing/bootstrap/client.js', 'client'); |
| 79 | + api.addFiles('lib/namedQuery/testing/bootstrap/server.js', 'server'); |
80 | 80 |
|
81 |
| - // REACTIVE COUNTS |
82 |
| - api.addFiles('lib/query/counts/testing/server.test.js', 'server'); |
83 |
| - api.addFiles('lib/query/counts/testing/client.test.js', 'client'); |
| 81 | + // REACTIVE COUNTS |
| 82 | + api.addFiles('lib/query/counts/testing/server.test.js', 'server'); |
| 83 | + api.addFiles('lib/query/counts/testing/client.test.js', 'client'); |
84 | 84 |
|
85 |
| - // NAMED QUERIES |
86 |
| - api.addFiles('lib/namedQuery/testing/server.test.js', 'server'); |
87 |
| - api.addFiles('lib/namedQuery/testing/client.test.js', 'client'); |
| 85 | + // NAMED QUERIES |
| 86 | + api.addFiles('lib/namedQuery/testing/server.test.js', 'server'); |
| 87 | + api.addFiles('lib/namedQuery/testing/client.test.js', 'client'); |
88 | 88 |
|
89 |
| - // GRAPHQL |
90 |
| - api.addFiles('lib/graphql/testing/index.js', 'server'); |
| 89 | + // GRAPHQL |
| 90 | + api.addFiles('lib/graphql/testing/index.js', 'server'); |
91 | 91 | });
|
0 commit comments