Skip to content

Commit 202f826

Browse files
committed
forking
1 parent c8cf2ec commit 202f826

File tree

9 files changed

+46
-114
lines changed

9 files changed

+46
-114
lines changed

.circleci/config.yml

Lines changed: 0 additions & 32 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 11 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 11 deletions
This file was deleted.

.github/dependabot.yml

Lines changed: 0 additions & 22 deletions
This file was deleted.

.github/workflows/auto-merge.yml

Lines changed: 0 additions & 29 deletions
This file was deleted.
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: Publish Packages
2+
3+
on:
4+
workflow_dispatch: {}
5+
# inputs:
6+
# version:
7+
# description: 'major | minor | patch'
8+
# required: true
9+
# default: 'patch'
10+
11+
jobs:
12+
publish-packages:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout
16+
uses: actions/checkout@v3
17+
18+
- name: Setup Node
19+
uses: actions/setup-node@v3
20+
with:
21+
node-version: '18'
22+
23+
- name: Install Deps
24+
run: |
25+
npm ci
26+
27+
- name: Creating .npmrc
28+
run: |
29+
cat << EOF > "$HOME/.npmrc"
30+
//registry.npmjs.org/:_authToken=$NPM_TOKEN
31+
EOF
32+
env:
33+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
34+
35+
- name: Publish Packages
36+
run: |
37+
npm publish --access restricted

package-lock.json

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

package.json

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
2-
"name": "openapi-typescript-codegen",
3-
"version": "0.23.0",
2+
"name": "@powdergg/openapi-typescript-codegen",
3+
"version": "0.1.0",
44
"description": "Library that generates Typescript clients based on the OpenAPI specification.",
55
"author": "Ferdi Koomen",
6-
"homepage": "https://github.com/ferdikoomen/openapi-typescript-codegen",
6+
"homepage": "https://github.com/gustvision/openapi-typescript-codegen",
77
"repository": {
88
"type": "git",
9-
"url": "git+https://github.com/ferdikoomen/openapi-typescript-codegen.git"
9+
"url": "git+https://github.com/gustvision/openapi-typescript-codegen.git"
1010
},
1111
"bugs": {
12-
"url": "https://github.com/ferdikoomen/openapi-typescript-codegen/issues"
12+
"url": "https://github.com/gustvision/openapi-typescript-codegen/issues"
1313
},
1414
"license": "MIT",
1515
"keywords": [
@@ -55,8 +55,7 @@
5555
"test:e2e": "jest --selectProjects E2E --runInBand --verbose",
5656
"eslint": "eslint .",
5757
"eslint:fix": "eslint . --fix",
58-
"prepublishOnly": "npm run clean && npm run release",
59-
"codecov": "codecov --token=66c30c23-8954-4892-bef9-fbaed0a2e42b"
58+
"prepublishOnly": "npm run clean && npm run release"
6059
},
6160
"dependencies": {
6261
"camelcase": "^6.3.0",

tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"$schema": "https://json.schemastore.org/tsconfig",
23
"compilerOptions": {
34
"outDir": "./dist",
45
"target": "es2019",

0 commit comments

Comments
 (0)