Skip to content

Commit 36f9ffb

Browse files
author
Toyeeb
committed
Merge branch 'develop'
# Conflicts: # README.md # dist/bundles/flutterwave-angular-v3.umd.js # dist/bundles/flutterwave-angular-v3.umd.js.map # dist/bundles/flutterwave-angular-v3.umd.min.js # dist/bundles/flutterwave-angular-v3.umd.min.js.map # dist/flutterwave-angular-v3.es5.js # dist/flutterwave-angular-v3.es5.js.map # dist/flutterwave-angular-v3.js # dist/flutterwave-angular-v3.js.map # dist/package.json # dist/src/app/modules/models.d.ts # package.json # src/app/modules/flutterwave.module.ts # src/app/modules/flutterwave.service.ts # src/app/modules/make-payment/make-payment.component.ts # src/app/modules/models.ts
2 parents d186557 + 18073d3 commit 36f9ffb

22 files changed

+176
-124
lines changed

.github/workflows/publish.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
3+
4+
name: Deploy AngularJS Package
5+
6+
on:
7+
release:
8+
types: [created]
9+
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v2
15+
- uses: actions/setup-node@v1
16+
with:
17+
node-version: 12
18+
registry-url: https://registry.npmjs.org/
19+
- run: npm i && npm run build
20+
- run: cd dist && npm publish
21+
env:
22+
NODE_AUTH_TOKEN: ${{ secrets.npm_token }}
23+

README.md

Lines changed: 22 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,15 @@
1-
## 📝 Table of Contents
1+
<p align="center">
2+
<img title="Flutterwave" height="200" src="https://flutterwave.com/images/logo-colored.svg" width="50%"/>
3+
</p>
4+
5+
6+
# Flutterwave v3 Angular Library
7+
![Node.js Package](https://github.com/Flutterwave/Flutterwave-Angular-v3/workflows/Node.js%20Package/badge.svg)
8+
![npm](https://img.shields.io/npm/v/flutterwave-angular-v3)
9+
![npm](https://img.shields.io/npm/dt/flutterwave-angular-v3)
10+
![NPM](https://img.shields.io/npm/l/flutterwave-angular-v3)
11+
12+
## Table of Contents
213

314
- [About](#about)
415
- [Getting Started](#getting-started)
@@ -15,7 +26,7 @@ Flutterwave official Angular library to accept payment via card , USSD, QrCode
1526

1627
<a id="getting-started"></a>
1728

18-
## 🏁 Getting Started
29+
## Getting Started
1930

2031
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See [deployment](#deployment) for notes on how to deploy the project on a live system.
2132
See [references](#references) for links to dashboard and API documentation.
@@ -45,7 +56,7 @@ $ yarn add flutterwave-angular-v3
4556

4657
<a id="usage"></a>
4758

48-
## 🔧 Usage
59+
## Usage
4960

5061
Import FlutterwaveModule to the app root module
5162

@@ -268,13 +279,13 @@ export class AppComponent{
268279
```
269280

270281
<a id="deployment"></a>
271-
## 🚀 Deployment
282+
## Deployment
272283

273284
- Switch to Live Mode on the Dashboard settings page
274-
- Use the Live Public API key
285+
- Use the Live Public API key from the API tab
275286

276287
<a id="build-tools"></a>
277-
## ⛏️ Built Using
288+
## Built Using
278289

279290
- [Angular CLI](https://cli.angular.io/)
280291
- [Typescript](https://www.typescriptlang.org/)
@@ -284,8 +295,12 @@ export class AppComponent{
284295

285296

286297
<a id="references"></a>
287-
## 🎉 Flutterwave API References
298+
## Flutterwave API References
288299

289300
- [Flutterwave API Doc](https://developer.flutterwave.com/docs)
290301
- [Flutterwave Inline Payment Doc](https://developer.flutterwave.com/docs/flutterwave-inline)
291302
- [Flutterwave Dashboard](https://dashboard.flutterwave.com/login)
303+
304+
305+
306+

dist/bundles/flutterwave-angular-v3.umd.js

Lines changed: 17 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/bundles/flutterwave-angular-v3.umd.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/bundles/flutterwave-angular-v3.umd.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)