This repository has been archived by the owner on Oct 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 103
/
Copy pathpackage.js
98 lines (86 loc) · 2.48 KB
/
package.js
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
Package.describe({
summary: 'Tutorial content, included in meteor.com via package',
version: '0.0.5',
name: 'tutorials'
});
Package.onUse(function (api) {
api.use([
'simple:[email protected]',
'templating',
'underscore',
'jsx',
'simple:[email protected]',
'reactive-var',
'less',
'ecmascript',
'mdg:[email protected]',
'mdg:[email protected]',
'mdg:[email protected]'
]);
api.addFiles([
'content/angular/metadata.js',
'content/blaze/metadata.js',
'content/vue/metadata.js',
'content/svelte/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/step11.md',
'content/blaze/step12.md',
'content/vue/step02.md',
'content/vue/step03.md',
'content/vue/step04.md',
'content/vue/step05.md',
'content/vue/step07.md',
'content/vue/step08.md',
'content/vue/step09.md',
'content/vue/step10.md',
'content/vue/step11.md',
'content/vue/step12.md',
'content/svelte/step02.md',
'content/svelte/step03.md',
'content/svelte/step04.md',
'content/svelte/step05.md',
'content/svelte/step07.md',
'content/svelte/step08.md',
'content/svelte/step09.md',
'content/svelte/step10.md',
'content/svelte/step11.md',
'content/svelte/step12.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',
'generated/blaze.multi.patch',
'generated/angular.multi.patch',
'generated/vue.multi.patch',
'generated/svelte.multi.patch',
], 'client');
// Also, exports all of the templates from the content/ directory
api.export('TUTORIAL_PAGES');
api.export('ANGULAR_TUT');
api.export('BLAZE_TUT');
api.export('VUE_TUT');
api.export('SVELTE_TUT');
});