forked from olegshilov/reaction-core-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.js
71 lines (67 loc) · 2.63 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
Package.describe({
name: "autofly:theme",
summary: "Reaction Commerce core theme",
version: "1.6.0",
git: "https://bitbucket.org/auecommerce/autofly-theme"
});
Package.onUse(function(api) {
api.versionsFrom('[email protected]');
api.addFiles('theme-data.js', 'server');
api.export(['ThemeData']);
api.use([
'templating',
], ["client", "server"]);
api.addFiles([
"client/templates/cart/cartDrawer/cartDrawer.html",
"client/templates/cart/cartDrawer/cartDrawer.js",
"client/templates/cart/cartIcon/cartIcon.js",
"client/templates/cart/cartItems/cartItems.html",
"client/templates/cart/cartItems/cartItems.js",
], ["client"]);
// Everything after this point is generated by the build-package.sh
// AUTOGENERATED
api.addFiles([
'default/bootstrap.rtl.less',
'default/navs.less',
'default/grid.less',
'default/mixins.less',
'default/popovers.less',
'default/variables.less',
'default/panels.less',
'default/dropdowns.less',
'default/alerts.less',
'default/forms.less',
'default/mixins/lesshat.less',
'theme/accounts/accounts.less',
'theme/accounts/inline/inline.less',
'theme/cart/cartDrawer/cartDrawer.less',
'theme/cart/cartDrawer/cartItems/cartItems.less',
'theme/cart/cartDrawer/cartSubTotals/cartSubTotals.less',
'theme/cart/cartIcon/cartIcon.less',
'theme/cart/checkout/addressBook/addressBook.less',
'theme/cart/checkout/checkout.less',
'theme/cart/checkout/progressBar/progressBar.less',
'theme/dashboard/console/console.less',
'theme/dashboard/dashboard.less',
'theme/dashboard/orders/orders.less',
'theme/dashboard/packages/grid/package/package.less',
'theme/dashboard/shop/accounts.less',
'theme/dashboard/shop/settings.less',
'theme/dashboard/widget/widget.less',
'theme/layout/footer/footer.less',
'theme/layout/header/header.less',
'theme/layout/header/tags/tags.less',
'theme/layout/layout.less',
'theme/products/productDetail/attributes/attributes.less',
'theme/products/productDetail/images/productImageGallery.less',
'theme/products/productDetail/productDetail.less',
'theme/products/productDetail/tags/tags.less',
'theme/products/productDetail/variants/variant.less',
'theme/products/productDetail/variants/variantForm/childVariant/childVariant.less',
'theme/products/productDetail/variants/variantForm/variantForm.less',
'theme/products/productDetail/variants/variantList/variantList.less',
'theme/products/productGrid/productGrid.less',
'theme/products/productList/productList.less',
'theme/products/products.less',
], 'server', {isAsset:true});
});