-
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.
* development: (27 commits) Release 0.15.1 (#1314) Fix wrong method hooks context (#1307) - function isSoldOut() should return true if quantity is <= 0, not only if it is === 0. (#1311) Remove jquery-ui (#1310) Taxes (#1289) Fix Stripe refunds and Double Discounts (#1304) fix refunds and discounts for authorize.net (#1279) Fix Braintree discounts and refunds (#1265) Allow any user who has the createProduct permission to also delete products (#1263) Remove bash script from postinstall to fix Windows installs (#1299) update cardNumber schemas Fix PayPal PayFlow discounts and refunds (#1275) logout and hasPermission updates (#1290) Create email job queue and Reaction.Email namespace (#1282) updated package.json (#1286) Update circle node (#1281) Use forked version of authorize.net that doesn't have vulnerability (#1252) fix for #1072 (#1247) Temporarily bypass failiing inventory test (#1280) Fix inventory tests (#1254) ... # Conflicts: # .codeclimate.yml # .eslintignore # .meteor/versions # client/modules/core/main.js # imports/plugins/core/orders/client/templates/workflow/shippingTracking.js # imports/plugins/core/taxes/client/settings/custom.js # imports/plugins/core/taxes/client/settings/settings.js # imports/plugins/core/taxes/server/methods/methods.js # imports/plugins/included/authnet/server/methods/authnet.js # imports/plugins/included/braintree/server/methods/braintreeApi.js # imports/plugins/included/braintree/server/methods/braintreeMethods.js # imports/plugins/included/braintree/server/methods/braintreeapi-methods-refund.app-test.js # imports/plugins/included/example-paymentmethod/server/methods/example-payment-methods.app-test.js # imports/plugins/included/inventory/server/hooks/hooks.js # imports/plugins/included/inventory/server/hooks/inventory-hooks.app-test.js # imports/plugins/included/inventory/server/methods/inventory.js # imports/plugins/included/inventory/server/methods/statusChanges.js # imports/plugins/included/launchdock-connect/client/templates/dashboard.js # imports/plugins/included/paypal/server/methods/payflowpro-methods-refund.app-test.js # imports/plugins/included/paypal/server/methods/payflowproApi.js # imports/plugins/included/paypal/server/methods/payflowproMethods.js # imports/plugins/included/product-variant/client/templates/products/productDetail/variants/variantForm/variantForm.js # imports/plugins/included/taxes-avalara/server/hooks/hooks.js # imports/plugins/included/taxes-taxcloud/server/hooks/hooks.js # imports/plugins/included/taxes-taxjar/server/hooks/hooks.js # lib/collections/helpers.js # package.json # server/api/core/import.js # server/methods/catalog.js # server/methods/core/cart-remove.app-test.js # server/methods/core/orders.js # server/methods/core/shop.js
- Loading branch information
Showing
189 changed files
with
1,770 additions
and
2,682 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
{ | ||
"ignore": [ | ||
"**/deps/**", | ||
"**/node_modules/**", | ||
"**/thirdparty/**", | ||
"**/third_party/**", | ||
"**/vendor/**", | ||
"**/**-min-**", | ||
"**/**-min.**", | ||
"**/**.min.**", | ||
"**/**jquery.?(ui|effects)-*.*.?(*).?(cs|j)s", | ||
"**/**jquery-*.*.?(*).?(cs|j)s", | ||
"**/prototype?(*).js", | ||
"**/mootools*.*.*.js", | ||
"**/dojo.js", | ||
"**/MochiKit.js", | ||
"**/yahoo-*.js", | ||
"**/yui*.js", | ||
"**/ckeditor*.js", | ||
"**/tiny_mce*.js", | ||
"**/tiny_mce/?(langs|plugins|themes|utils)/**", | ||
"**/MathJax/**", | ||
"**/shBrush*.js", | ||
"**/shCore.js", | ||
"**/shLegacy.js", | ||
"**/modernizr.custom.?(*).js", | ||
"**/knockout-*.*.*.debug.js", | ||
"**/extjs/*.js", | ||
"**/extjs/*.xml", | ||
"**/extjs/*.txt", | ||
"**/extjs/*.html", | ||
"**/extjs/*.properties", | ||
"**/extjs/.sencha", | ||
"**/extjs/docs/**", | ||
"**/extjs/builds/**", | ||
"**/extjs/cmd/**", | ||
"**/extjs/examples/**", | ||
"**/extjs/locale/**", | ||
"**/extjs/packages/**", | ||
"**/extjs/plugins/**", | ||
"**/extjs/resources/**", | ||
"**/extjs/src/**", | ||
"**/extjs/welcome/**", | ||
"bower_components/**" | ||
], | ||
"test": [ | ||
"**/test/**", | ||
"**/tests/**", | ||
"**/spec/**", | ||
"**/specs/**", | ||
"**/**.app-test.**" | ||
], | ||
"critics": { | ||
"wc": {"limit": 5000}, | ||
"lint": {"engine": "eslint"} | ||
}, | ||
"dependencies": { | ||
"mute": [ | ||
"wdio-mocha-framework" | ||
], | ||
"unused-ignores": [ | ||
"jquery", | ||
"sweetalert2", | ||
"font-awesome", | ||
"bcrypt", | ||
"react-addons-pure-render-mixin", | ||
"url", | ||
"griddle-react", | ||
"tether-tooltip", | ||
"react-textarea-autosize", | ||
"react-color", | ||
"react-autosuggest", | ||
"meteor-node-stubs" | ||
] | ||
} | ||
} |
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 |
---|---|---|
@@ -1 +1,5 @@ | ||
# things to ignore in lint | ||
|
||
*.min.* | ||
server/plugins.js | ||
client/plugins.js |
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 |
---|---|---|
|
@@ -36,3 +36,5 @@ private/custom/* | |
|
||
imports/plugins/custom/* | ||
!imports/plugins/custom/.gitkeep | ||
|
||
.reaction/config.json |
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 |
---|---|---|
|
@@ -10,38 +10,39 @@ | |
[email protected] # Packages every Meteor app needs to have | ||
[email protected] # Packages for a great mobile UX | ||
[email protected] # Compile .html files into Meteor Blaze views | ||
[email protected].13 # ECMAScript 5 compatibility for older browsers. | ||
[email protected].7 # Enable ECMAScript2015+ syntax in app code | ||
[email protected].14 # ECMAScript 5 compatibility for older browsers. | ||
[email protected].8 # Enable ECMAScript2015+ syntax in app code | ||
[email protected] # ensure meteor method argument validation | ||
[email protected] # security-related policies enforced by newer browsers | ||
juliancwirko:postcss # CSS post-processing plugin (replaces standard-minifier-css) | ||
standard-minifier-js@1.1.8 # a minifier plugin used for Meteor apps by default | ||
standard-minifier-js@1.2.0 # a minifier plugin used for Meteor apps by default | ||
[email protected] # ReactiveDict whose contents are preserved across Hot Code Push | ||
[email protected] # Meteor transparent reactive programming library | ||
[email protected].10 | ||
[email protected].11 | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
[email protected].8 | ||
[email protected].9 | ||
[email protected] | ||
[email protected] | ||
[email protected].14 | ||
[email protected].15 | ||
[email protected] | ||
[email protected] | ||
[email protected].4 | ||
[email protected].16 | ||
[email protected].5 | ||
[email protected].17 | ||
[email protected] | ||
amplify | ||
mdg:validated-method | ||
shell-server | ||
|
||
# Meteor Auth Packages | ||
[email protected].9 | ||
accounts-password@1.2.12 | ||
[email protected].11 | ||
accounts-password@1.3.0 | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
oauth-encryption@1.1.13 | ||
oauth-encryption@1.2.0 | ||
# accounts-github | ||
# accounts-weibo | ||
# accounts-oauth | ||
|
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 +1 @@ | ||
[email protected].0.1 | ||
[email protected] |
Oops, something went wrong.