Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ahsalar committed Jul 22, 2021
1 parent adcf728 commit 1fc2f61
Show file tree
Hide file tree
Showing 38 changed files with 11,169 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": "usage",
"debug": false
}
],
"@babel/preset-react"
],
"plugins": [
[
"@babel/plugin-transform-runtime",
{
"regenerator": true
}
],
[
"@babel/plugin-proposal-class-properties",
{
"loose": true
}
],
[
"transform-react-remove-prop-types",
{
"removeImport": true
}
]
],
"env": {
"development": {
"sourceMaps": true,
"retainLines": true
},
"test": {
"sourceMaps": true,
"retainLines": true
}
}
}
2 changes: 2 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
coverage/
dist/
3 changes: 3 additions & 0 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
extends: ["@paciolan/react"]
rules:
react/prop-types: off
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/coverage
/dist
/node_modules
/.idea
plugin.json
20 changes: 20 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
image: paciolanhub/alpine-node-dev:10.15.3c

stages:
- build

Build & Test:
stage: build
except:
- tags
before_script:
- npm ci
script:
- npm run build
- npm run lint
- npm run test:coverage -- --colors
artifacts:
expire_in: 1 hour
paths:
- dist/
coverage: /All files[^|]*\|[^|]*\s+([\d\.]+)/
3 changes: 3 additions & 0 deletions .prettierrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
arrowParens: avoid
tabWidth: 2
trailingComma: none
38 changes: 38 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Launch Chrome",
"url": "http://localhost:9090",
"webRoot": "${workspaceFolder}",
"sourceMaps": true,
},
{
"name": "Jest", // This is the configuration name you will see in debug sidebar
"type": "node",
"request": "launch",
"port": 9229,
"address": "localhost",
"stopOnEntry": false,
"runtimeExecutable": null,
"env": {
"NODE_ENV": "test"
},
"console": "integratedTerminal",
"runtimeArgs": [
"--inspect-brk", // node v8 use debug-brk if older version of node
"${workspaceRoot}/node_modules/.bin/jest",
"--watch",
"--bail",
"--runInBand"
],
"cwd": "${workspaceRoot}",
"sourceMaps": true
}
]
}
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)
Copyright (c) 2019 Paciolan

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
OR OTHER DEALINGS IN THE SOFTWARE.

17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1 +1,18 @@
# hollaex-plugin-starter

## Targets

### Static Targets

- Wallet Page
- REMOTE_COMPONENT__FIAT_WALLET_WITHDRAW
- REMOTE_COMPONENT__FIAT_WALLET_DEPOSIT

- Settings Page
- REMOTE_COMPONENT__BANK_VERIFICATION
- REMOTE_COMPONENT__BANK_VERIFICATION_HOME


### Dynamic Targets

- New Page
Binary file added media/icon-large.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added media/icon-small.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 1fc2f61

Please sign in to comment.