forked from meteor/tutorials
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.js
More file actions
82 lines (73 loc) · 2.1 KB
/
Copy pathpackage.js
File metadata and controls
82 lines (73 loc) · 2.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
Package.describe({
summary: 'Tutorial content, included in meteor.com via package',
version: '0.0.1',
name: 'tutorials'
});
Package.onUse(function (api) {
api.versionsFrom('1.2-rc.14');
api.use([
'simple:markdown-templating@1.2.7',
'templating',
'underscore',
'jsx@0.1.1',
'simple:highlight.js@1.0.9',
'reactive-var',
'less',
'ecmascript',
'mdg:tutorial-step-diff-compiler@0.1.0',
'mdg:tutorial-diff-box@0.3.0',
'mdg:tutorial-registry@0.1.1'
]);
api.addFiles([
'content/angular/metadata.js',
'content/blaze/metadata.js',
'content/react/metadata.js',
]);
api.addFiles([
'content/angular/step02.md',
'content/angular/step03.md',
'content/angular/step04.md',
'content/angular/step05.md',
'content/angular/step06.md',
'content/angular/step07.md',
'content/angular/step08.md',
'content/angular/step09.md',
'content/angular/step10.md',
'content/angular/step11.md',
'content/angular/step12.md',
'content/blaze/step02.md',
'content/blaze/step03.md',
'content/blaze/step04.md',
'content/blaze/step05.md',
'content/blaze/step07.md',
'content/blaze/step08.md',
'content/blaze/step09.md',
'content/blaze/step10.md',
'content/blaze/step12.md',
'content/react/step02.md',
'content/react/step03.md',
'content/react/step04.md',
'content/react/step05.md',
'content/react/step07.md',
'content/react/step08.md',
'content/react/step09.md',
'content/react/step10.md',
'content/react/step11.md',
'content/step00.html',
'content/shared/explanations.md',
'content/shared/adding-css.md',
'content/shared/adding-css.js',
'content/shared/nextSteps.md',
'content/shared/step01.md',
'content/shared/step06.md',
'content/shared/step11.md',
'generated/react.multi.patch',
'generated/blaze.multi.patch',
'generated/angular.multi.patch'
], 'client');
// Also, exports all of the templates from the content/ directory
api.export('TUTORIAL_PAGES');
api.export('REACT_TUT');
api.export('ANGULAR_TUT');
api.export('BLAZE_TUT');
});