Skip to content

Commit

Permalink
fix(repo): name
Browse files Browse the repository at this point in the history
  • Loading branch information
ralcorta committed Oct 31, 2022
1 parent 94cfc3f commit 5a4655a
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 25 deletions.
8 changes: 4 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@

### Contribuciones

Si encontras un bug o desaes sugerir algo, revisa de que no haya [issues](https://github.com/valiulab/afip.js/issues) con el mismo tema, y de ser asi [puedes generar uno aqui](https://github.com/valiulab/afip.js/issues/new).
Si encontras un bug o desaes sugerir algo, revisa de que no haya [issues](https://github.com/valiulab/afip.ts/issues) con el mismo tema, y de ser asi [puedes generar uno aqui](https://github.com/valiulab/afip.ts/issues/new).

### Desarrollo

Seria genial si puedes ayudarnos mejorando `afip.js`. ¿Como hacer?
Seria genial si puedes ayudarnos mejorando `afip.ts`. ¿Como hacer?

1. [Clonar](https://github.com/valiulab/afip.js).
1. [Clonar](https://github.com/valiulab/afip.ts).

2. `npm install`.

3. Rompela escribiendo tu codigo.

4. Correr los test: `npm test`.

5. Cear un [Pull Request](https://github.com/valiulab/afip.js/compare).
5. Cear un [Pull Request](https://github.com/valiulab/afip.ts/compare).
26 changes: 13 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
# 🚀 Afip SDK

[![npm](https://img.shields.io/npm/v/afip.js.svg?style=flat-square)](https://npmjs.org/package/afip.js)
[![npm](https://img.shields.io/npm/v/afip.ts.svg?style=flat-square)](https://npmjs.org/package/afip.ts)

<br />
<p align="center">
<a href="https://github.com/valiulab/afip.js">
<img src="https://user-images.githubusercontent.com/19806540/198080937-468e851b-2ae4-40a7-b2c5-cb929ff7749a.png" alt="Afip.js" width="230">
<a href="https://github.com/valiulab/afip.ts">
<img src="https://user-images.githubusercontent.com/19806540/198080937-468e851b-2ae4-40a7-b2c5-cb929ff7749a.png" alt="afip.ts" width="230">
</a>

<h3 align="center">Afip SDK</h3>

<p align="center">
Package que provee una interfaz para consumir y usar los Web Services de AFIP
<br />
<a href="https://valiulab-core.github.io/afip.js">Documentacion</a>
<a href="https://valiulab-core.github.io/afip.ts">Documentacion</a>
<br />
<br />
<small>
Inspirado en <a href="https://github.com/AfipSDK/afip.js">afip.js</a>
Inspirado en <a href="https://github.com/AfipSDK/afip.ts">afip.ts</a>
<br />
<a href="https://github.com/valiulab/afip.js/issues">Reportar un bug</a>
<a href="https://github.com/valiulab/afip.ts/issues">Reportar un bug</a>
</small>
</p>
</p>

<!-- [afip.js](https://github.com/AfipSDK/afip.js) -->
<!-- [afip.ts](https://github.com/AfipSDK/afip.ts) -->

#### Servicios disponibles

Expand All @@ -40,13 +40,13 @@
##### NPM

```sh
npm i afip.js --save
npm i afip.ts --save
```

##### Yarn

```sh
yarn add afip.js
yarn add afip.ts
```

### Uso de la SDK
Expand Down Expand Up @@ -106,21 +106,21 @@ Usamos ["semantic release library"](https://www.npmjs.com/package/semantic-relea

### Contribuciones

Si encontras un bug o desaes sugerir algo, revisa de que no haya [issues](https://github.com/valiulab/afip.js/issues) con el mismo tema, y de ser asi [puedes generar uno aqui](https://github.com/valiulab/afip.js/issues/new).
Si encontras un bug o desaes sugerir algo, revisa de que no haya [issues](https://github.com/valiulab/afip.ts/issues) con el mismo tema, y de ser asi [puedes generar uno aqui](https://github.com/valiulab/afip.ts/issues/new).

### Desarrollo

Seria genial si puedes ayudarnos mejorando `afip.js`. ¿Como hacer?
Seria genial si puedes ayudarnos mejorando `afip.ts`. ¿Como hacer?

1. [Clonar](https://github.com/valiulab/afip.js).
1. [Clonar](https://github.com/valiulab/afip.ts).

2. `npm install`.

3. Rompela escribiendo tu codigo.

4. Correr los test: `npm test`.

5. Cear un [Pull Request](https://github.com/valiulab/afip.js/compare).
5. Cear un [Pull Request](https://github.com/valiulab/afip.ts/compare).

## License

Expand Down
18 changes: 10 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
{
"name": "afip.js",
"name": "afip.ts",
"version": "0.8.4",
"description": "afip.js",
"description": "Afip typescript SDK",
"source": "src/index.ts",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "npx tsc",
"test": "jest",
"test-local": "ts-node tests/test-afip",
"doc": "typedoc --theme oxide --name 'afip.js' --out docs src/index.ts",
"doc": "typedoc --theme oxide --name 'afip.ts' --out docs src/index.ts",
"wsdl-gen": "wsdl-to-ts --"
},
"author": "ValiuLab",
"author": "valiuLab",
"license": "ISC",
"devDependencies": {
"@types/jest": "^27.5.2",
Expand All @@ -37,16 +36,19 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/valiulab/afip.js.git"
"url": "git+https://github.com/valiulab/afip.ts.git"
},
"bugs": {
"url": "https://github.com/valiulab/afip.js/issues"
"url": "https://github.com/valiulab/afip.ts/issues"
},
"homepage": "https://github.com/valiulab/afip.js#readme",
"homepage": "https://github.com/valiulab/afip.ts#readme",
"files": [
"lib/**/*"
],
"keywords": [
"web-service",
"factura-electronica",
"padron",
"afip",
"sdk",
"package",
Expand Down

0 comments on commit 5a4655a

Please sign in to comment.