Skip to content

Commit

Permalink
reaction-shop is now reaction-commerce package
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronjudd committed Feb 4, 2014
1 parent bc6a087 commit ab95f28
Show file tree
Hide file tree
Showing 394 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ npm-debug.log

/dev.json

/packages/reaction-shop/.npm/
/packages/reaction-commerce/.npm/

/private/data/system.indexes.json

Expand Down
2 changes: 1 addition & 1 deletion .meteor/packages
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ videojs
font-awesome-4
x-editable-bootstrap3
highcharts
reaction-commerce
reaction-filepicker
reaction-helloworld
reaction-shop
coffeescript
collection2
autoform
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ Our core is being built with a preference for Coffeescript + LESS.

We are always using latest full release of all packages.

Packages should be able to run independently, whenever possible but many of the core packages will have dependancies on the reaction-shop package.
Packages should be able to run independently, whenever possible but many of the core packages will have dependancies on the reaction-commerce package.

At this time, for development ease, we are committing all reaction-* packages in this main repo but as we approach an Alpha release, these will be moved to individual package repos and published on the Meteor package manager. Tests will be added when they are moved to their own repos.

Expand Down Expand Up @@ -186,7 +186,7 @@ For using shop permissions into some packages you must add it into register dire
If we add this package then permissions will be available in Shop Accounts Settings.

Meteor.app.packages.register
name: 'reaction-shop-orders'
name: 'reaction-commerce-orders'
provides: ['orderManager']
label: 'Orders'
overviewRoute: 'shop/orders'
Expand Down
2 changes: 1 addition & 1 deletion packages/reaction-accounts/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Package.on_use(function (api) {
"accounts-base",
"underscore",
"templating",
"reaction-shop"
"reaction-commerce"
], ["client"]);

api.add_files([
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Meteor.app.packages.register
name: 'reaction-shop'
name: 'reaction-commerce'
depends: ['orderManager', 'fileUploader', 'staffAccountsManager']
label: 'Shop'
description: 'Reaction Shop'
Expand Down Expand Up @@ -37,7 +37,7 @@ Meteor.app.packages.register
]

Meteor.app.packages.register
name: 'reaction-shop-orders'
name: 'reaction-commerce-orders'
provides: ['orderManager']
label: 'Orders'
overviewRoute: 'dashboard/orders'
Expand All @@ -52,7 +52,7 @@ Meteor.app.packages.register


Meteor.app.packages.register
name: 'reaction-shop-staff-accounts'
name: 'reaction-commerce-staff-accounts'
provides: ['staffAccountsManager']
label: 'Staff Accounts'
settingsRoute: 'shop/settings/account'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ ShopController = RouteController.extend
@stop()

Router.map ->
# home page intro screen for reaction-shop
# home page intro screen for reaction-commerce
@route 'dashboard',
controller: ShopAdminController
template: 'dashboard'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Template["reaction-shop-widget"].helpers
Template["reaction-commerce-widget"].helpers
pcount: ->
Products.find().count()

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template name="reaction-shop-widget">
<ul class="reaction-shop-widget list-unstyled">
<template name="reaction-commerce-widget">
<ul class="reaction-commerce-widget list-unstyled">
<li>
<span class="badge">{{ocount}}</span>
<a href="{{pathFor 'dashboard/orders'}}">
Expand Down
File renamed without changes.
File renamed without changes.
Loading

0 comments on commit ab95f28

Please sign in to comment.