Skip to content

Commit

Permalink
chore: update url page for the docs
Browse files Browse the repository at this point in the history
  • Loading branch information
gabriel-logan committed Jun 1, 2024
1 parent b4368bb commit eef95ca
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion packages/python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

This package provides Python functions to validate various forms fields.

Documentation: https://gabriel-logan.github.io/multiform-validator/documentation/py
Documentation: https://multiform-validator.vercel.app/documentation/py

Feel free to find bugs and report them to me. Your feedback is highly appreciated. Hugs from Gabriel Logan!

Expand Down
4 changes: 2 additions & 2 deletions packages/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "multiform-validator"
version = "0.1.0"
version = "0.1.1"
authors = [
{ name="Gabriel Logan" },
]
Expand All @@ -21,5 +21,5 @@ classifiers = [
]

[project.urls]
"Homepage" = "https://gabriel-logan.github.io/multiform-validator/documentation"
"Homepage" = "https://multiform-validator.vercel.app/documentation"
"Bug Tracker" = "https://github.com/gabriel-logan/multiform-validator/tree/main/packages/python"
14 changes: 7 additions & 7 deletions packages/typescript/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,32 +9,32 @@

This npm package provides JavaScript functions to validate various forms fields.

Documentation: https://gabriel-logan.github.io/multiform-validator
Documentation: https://multiform-validator.vercel.app

Feel free to find bugs and report them to me. Your feedback is highly appreciated. Hugs from Gabriel Logan!

## CDNs

jsDelivr:
```bash
https://cdn.jsdelivr.net/npm/multiform-validator@2.1.0/dist/bundle.min.js
https://cdn.jsdelivr.net/npm/multiform-validator@2.1.1/dist/bundle.min.js
```
```html
<script src="https://cdn.jsdelivr.net/npm/multiform-validator@2.1.0/dist/bundle.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/multiform-validator@2.1.1/dist/bundle.min.js"></script>
```

unpkg:
```bash
https://unpkg.com/multiform-validator@2.1.0/dist/bundle.js
https://unpkg.com/multiform-validator@2.1.1/dist/bundle.js
```
```html
<script src="https://unpkg.com/multiform-validator@2.1.0/dist/bundle.js"></script>
<script src="https://unpkg.com/multiform-validator@2.1.1/dist/bundle.js"></script>
```

### Example of use with CDN

```html
<script src="https://cdn.jsdelivr.net/npm/multiform-validator@2.1.0/dist/bundle.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/multiform-validator@2.1.1/dist/bundle.min.js"></script>
<script>
const emailResult = isEmail('123456');
Expand Down Expand Up @@ -144,7 +144,7 @@ validator.FUNCTION_NAME.errorMsg = 'ErrorMsg' // You can customize errors
```

## Documentation
### https://gabriel-logan.github.io/multiform-validator
### https://multiform-validator.vercel.app

```javascript

Expand Down
4 changes: 2 additions & 2 deletions packages/typescript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "multiform-validator",
"version": "2.1.0",
"version": "2.1.1",
"description": "Javascript library made to validate, several form fields, such as: email, phone, password, cpf etc.",
"main": "./dist/index.js",
"types": "./types/index.d.ts",
Expand Down Expand Up @@ -48,7 +48,7 @@
"bugs": {
"url": "https://github.com/gabriel-logan/multiform-validator/issues"
},
"homepage": "https://gabriel-logan.github.io/multiform-validator/",
"homepage": "https://multiform-validator.vercel.app",
"contributors": [
"Gabriel Logan",
"Breno A"
Expand Down

0 comments on commit eef95ca

Please sign in to comment.