Skip to content

Commit 0298a3f

Browse files
committed
Correct ReadMe
1 parent b0ca3bd commit 0298a3f

File tree

2 files changed

+14
-30
lines changed

2 files changed

+14
-30
lines changed

.github/workflows/push.yml

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -15,24 +15,14 @@ jobs:
1515
ref: ${{ github.ref }}
1616
- name: "cat package.json"
1717
run: cat ./package.json
18+
1819
- name: Setup Node.js
19-
uses: actions/setup-node@v1
20+
uses: actions/setup-node@v2
2021
with:
2122
node-version: 16
23+
cache: "npm"
2224

23-
# Restore NPM Cache
24-
- name: Cache node modules
25-
uses: actions/cache@v2
26-
env:
27-
cache-name: cache-node-modules
28-
with:
29-
# npm cache files are stored in `~/.npm` on Linux/macOS
30-
path: ~/.npm
31-
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
32-
restore-keys: |
33-
${{ runner.os }}-build-${{ env.cache-name }}-
34-
${{ runner.os }}-build-
35-
${{ runner.os }}-
25+
3626
- run: npm ci
3727
- run: npm run prepublishOnly
3828
- run: npm run test:update

README.md

Lines changed: 10 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# OpenAPI Typescript Codegen
22

3-
<!-- [![NPM][npm-image]][npm-url] -->
3+
[![NPM][npm-image]][npm-url]
44
[![License][license-image]][license-url]
5-
<!-- [![Coverage][coverage-image]][coverage-url]
6-
[![Quality][quality-image]][quality-url]
7-
[![Code Climate][climate-image]][climate-url]
5+
<!-- [![Coverage][coverage-image]][coverage-url] -->
6+
<!-- [![Quality][quality-image]][quality-url] -->
7+
<!-- [![Code Climate][climate-image]][climate-url] -->
88
[![Downloads][downloads-image]][downloads-url]
9-
[![Build][build-image]][build-url] -->
9+
[![Build][build-image]][build-url]
1010

1111
> Node.js library that generates Typescript clients based on the OpenAPI specification.
1212
@@ -25,7 +25,7 @@
2525
## Install
2626

2727
```
28-
npm install openapi-typescript-codegen --save-dev
28+
npm install @ciptex/openapi-typescript-codegen --save-dev
2929
```
3030

3131

@@ -513,17 +513,11 @@ In order to compile the project and resolve the imports, you will need to enable
513513
in your `tsconfig.json` file.
514514

515515

516-
[npm-url]: https://npmjs.org/package/openapi-typescript-codegen
516+
[npm-url]: https://www.npmjs.com/package/@ciptex/openapi-typescript-codegen
517517
[npm-image]: https://img.shields.io/npm/v/openapi-typescript-codegen.svg
518518
[license-url]: LICENSE
519519
[license-image]: http://img.shields.io/npm/l/openapi-typescript-codegen.svg
520-
[coverage-url]: https://codecov.io/gh/ferdikoomen/openapi-typescript-codegen
521-
[coverage-image]: https://img.shields.io/codecov/c/github/ferdikoomen/openapi-typescript-codegen.svg
522-
[quality-url]: https://lgtm.com/projects/g/ferdikoomen/openapi-typescript-codegen
523-
[quality-image]: https://img.shields.io/lgtm/grade/javascript/g/ferdikoomen/openapi-typescript-codegen.svg
524-
[climate-url]: https://codeclimate.com/github/ferdikoomen/openapi-typescript-codegen
525-
[climate-image]: https://img.shields.io/codeclimate/maintainability/ferdikoomen/openapi-typescript-codegen.svg
526-
[downloads-url]: http://npm-stat.com/charts.html?package=openapi-typescript-codegen
520+
[downloads-url]: http://npm-stat.com/charts.html?package=@ciptex/openapi-typescript-codegen
527521
[downloads-image]: http://img.shields.io/npm/dm/openapi-typescript-codegen.svg
528-
[build-url]: https://circleci.com/gh/ferdikoomen/openapi-typescript-codegen/tree/master
529-
[build-image]: https://circleci.com/gh/ferdikoomen/openapi-typescript-codegen/tree/master.svg?style=svg
522+
[build-url]: https://github.com/Ciptex/openapi-typescript-codegen/actions/workflows/push.yml
523+
[build-image]: https://github.com/Ciptex/openapi-typescript-codegen/actions/workflows/push.yml/badge.svg

0 commit comments

Comments
 (0)