Skip to content

Commit

Permalink
Merge pull request #17 from Dinwy/feature/hostedFields
Browse files Browse the repository at this point in the history
[Feature] Hosted Fields Support
  • Loading branch information
Dinwy authored Jul 9, 2024
2 parents ec907e6 + 0a231fc commit 3550e1d
Show file tree
Hide file tree
Showing 19 changed files with 1,684 additions and 46 deletions.
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

0 comments on commit 3550e1d

Please sign in to comment.