Skip to content

Commit

Permalink
NTR: fix styling
Browse files Browse the repository at this point in the history
* NTR: skip ally tests for 6.4

* NTR: change parameter for command

* NTR: fix build

* NTR: remove skip

---------

Co-authored-by: Vitalij Mik <vitalij.mik@dasistweb.de>
  • Loading branch information
BlackScorp and Vitalij Mik authored Feb 27, 2025
1 parent 9dac9df commit 8c6de34
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 13 deletions.
2 changes: 1 addition & 1 deletion src/Resources/app/storefront/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ help:
# ------------------------------------------------------------------------------------------------------------

build: ## Builds using webpack
npx webpack build --config webpack.config.js
npx -y webpack build --config webpack.config.js
cd /var/www/html && php bin/console assets:install
18 changes: 9 additions & 9 deletions src/Resources/app/storefront/src/scss/base.scss
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
@import url("../mollie-payments/plugins/creditcard-components.plugin");
@import url("../mollie-payments/plugins/apple-pay-direct.plugin");
@import url("./checkout/payment-selection");
@import url("./account/payment-selection");
@import url("./account/subscriptions");
@import url("./component/credit-card-mandate");
@import url("./component/paypal-express-button");
@import url("./component/express-button");
@import url("./display");
@import "../mollie-payments/plugins/creditcard-components.plugin";
@import "../mollie-payments/plugins/apple-pay-direct.plugin";
@import "./checkout/payment-selection";
@import "./account/payment-selection";
@import "./account/subscriptions";
@import "./component/credit-card-mandate";
@import "./component/paypal-express-button";
@import "./component/express-button";
@import "./display";
3 changes: 1 addition & 2 deletions src/Resources/app/storefront/webpack.config.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
const path = require('path')
const {resolve, join} = require('path');

module.exports = {
mode: 'production',
entry: './src/custom.js',
output: {
path: path.resolve(__dirname, '..', '..', 'public'),
path: resolve(__dirname, '..', '..', 'public'),
filename: 'mollie-payments.js',
},
resolve: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,6 @@ describe('Subscription', () => {
})

it('C4237799: Accessibility Storefront Account Subscriptions @a11y', () => {

beforeEach(device);

buySubscription();
Expand Down

0 comments on commit 8c6de34

Please # to comment.