-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- moves cart and checkout templates from core into `reactioncommerce:reaction-checkout` - adds dependency in reaction-shipping to reaction-checkout Related Issues: - #731 - #451 - #416
- Loading branch information
aaronjudd
committed
Feb 3, 2016
1 parent
a7ba0c4
commit dc40776
Showing
37 changed files
with
108 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -141,6 +141,7 @@ reactioncommerce:[email protected] | |
reactioncommerce:[email protected] | ||
reactioncommerce:[email protected] | ||
reactioncommerce:[email protected] | ||
reactioncommerce:[email protected] | ||
reactioncommerce:[email protected] | ||
reactioncommerce:[email protected] | ||
reactioncommerce:[email protected] | ||
|
@@ -150,7 +151,7 @@ reactioncommerce:[email protected] | |
reactioncommerce:[email protected] | ||
reactioncommerce:[email protected] | ||
reactioncommerce:[email protected] | ||
reactioncommerce:reaction-shipping@0.6.3 | ||
reactioncommerce:reaction-shipping@0.7.0 | ||
reactioncommerce:[email protected] | ||
reactioncommerce:[email protected] | ||
reactioncommerce:[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# reaction-cart | ||
Reaction Commerce Cart and Checkout | ||
|
||
`meteor add reactioncommerce:reaction-cart` |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
Package.describe({ | ||
summary: "Reaction Cart and Checkout", | ||
name: "reactioncommerce:reaction-checkout", | ||
version: "1.0.0", | ||
documentation: "README.md" | ||
}); | ||
|
||
Package.onUse(function (api) { | ||
api.versionsFrom("[email protected]"); | ||
|
||
// meteor base packages | ||
api.use("meteor-base"); | ||
api.use("mongo"); | ||
api.use("ecmascript"); | ||
api.use("es5-shim"); | ||
api.use("blaze-html-templates"); | ||
api.use("session"); | ||
api.use("jquery"); | ||
api.use("tracker"); | ||
|
||
// meteor add-on packages | ||
api.use("underscore"); | ||
api.use("logging"); | ||
api.use("reload"); | ||
api.use("random"); | ||
api.use("ejson"); | ||
api.use("check"); | ||
api.use("http"); | ||
api.use("reactive-var"); | ||
api.use("reactive-dict"); | ||
|
||
// community packages | ||
api.use("reactioncommerce:[email protected]"); | ||
|
||
// Cart Templates | ||
api.addFiles("client/templates/cart/cartDrawer/cartDrawer.html", "client"); | ||
api.addFiles("client/templates/cart/cartDrawer/cartDrawer.js", "client"); | ||
|
||
api.addFiles("client/templates/cart/cartDrawer/cartItems/cartItems.html", "client"); | ||
api.addFiles("client/templates/cart/cartDrawer/cartItems/cartItems.js", "client"); | ||
|
||
api.addFiles("client/templates/cart/cartDrawer/cartSubTotals/cartSubTotals.html", "client"); | ||
api.addFiles("client/templates/cart/cartDrawer/cartSubTotals/cartSubTotals.js", "client"); | ||
|
||
api.addFiles("client/templates/cart/cartIcon/cartIcon.html", "client"); | ||
api.addFiles("client/templates/cart/cartIcon/cartIcon.js", "client"); | ||
|
||
api.addFiles("client/templates/cart/cartPanel/cartPanel.html", "client"); | ||
api.addFiles("client/templates/cart/cartPanel/cartPanel.js", "client"); | ||
|
||
api.addFiles("client/templates/cart/checkout/checkout.html", "client"); | ||
api.addFiles("client/templates/cart/checkout/checkout.js", "client"); | ||
|
||
api.addFiles("client/templates/cart/checkout/header/header.html", "client"); | ||
|
||
api.addFiles("client/templates/cart/checkout/login/login.html", "client"); | ||
api.addFiles("client/templates/cart/checkout/login/login.js", "client"); | ||
|
||
api.addFiles("client/templates/cart/checkout/progressBar/progressBar.html", "client"); | ||
api.addFiles("client/templates/cart/checkout/progressBar/progressBar.js", "client"); | ||
|
||
api.addFiles("client/templates/cart/checkout/review/review.html", "client"); | ||
api.addFiles("client/templates/cart/checkout/review/review.js", "client"); | ||
|
||
api.addFiles("client/templates/cart/checkout/payment/payment.html", "client"); | ||
api.addFiles("client/templates/cart/checkout/payment/methods/cards.html", "client"); | ||
api.addFiles("client/templates/cart/checkout/payment/methods/cards.js", "client"); | ||
|
||
api.addFiles("client/templates/cart/checkout/completed/completed.html", "client"); | ||
api.addFiles("client/templates/cart/checkout/completed/completed.js", "client"); | ||
|
||
api.addFiles("client/templates/cart/checkout/shipping/shipping.html", "client"); | ||
api.addFiles("client/templates/cart/checkout/shipping/shipping.js", "client"); | ||
|
||
api.addFiles("client/templates/cart/checkout/addressBook/addressBook.html", "client"); | ||
api.addFiles("client/templates/cart/checkout/addressBook/addressBook.js", "client"); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
Package.describe({ | ||
summary: "Reaction Shipping - Flat Rate shipping for Reaction Commerce", | ||
name: "reactioncommerce:reaction-shipping", | ||
version: "0.6.3", | ||
version: "0.7.0", | ||
documentation: "README.md" | ||
}); | ||
|
||
|
@@ -26,9 +26,9 @@ Package.onUse(function (api) { | |
|
||
api.use("templating"); | ||
api.use("less"); | ||
api.use("reactioncommerce:[email protected]"); | ||
api.use("reactioncommerce:[email protected]"); | ||
|
||
|
||
api.addFiles([ | ||
"common/collections.js" // any unique collections | ||
], ["client", "server"]); | ||
|