Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feature] Hosted Fields Support #17

Merged
merged 15 commits into from
Jul 9, 2024
3 changes: 2 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"jasmine": true,
"jquery": true,
"prototypejs": true,
"node": true
"node": true,
"es6": true
},
"rules": {
"eqeqeq": [2, "smart"],
Expand Down
14 changes: 11 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
.DS_Store

# Ignore everything in the src directory
src/*
src/**
node_modules/

# Except for the src/app directory
!src/app/code/Komoju/
# Re-include directories under src/app/code/Komoju/Payments and subdirectories
!src/
!src/app/
!src/app/code/
!src/app/code/Komoju/
!src/app/code/Komoju/**

# Ignore everything in the src directory
src/**/.DS_Store
5 changes: 5 additions & 0 deletions deploy
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/usr/bin/env bash
bin/magento setup:upgrade
bin/magento cache:clean
bin/magento cache:flush
bin/magento setup:static-content:deploy -f
Loading
Loading