@7nohe/openapi-react-query-codegen 0.1.2 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/bin/cli.js CHANGED
File without changes
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@7nohe/openapi-react-query-codegen",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "OpenAPI React Query Codegen",
5
5
  "bin": {
6
6
  "openapi-rq": "bin/cli.js"
package/package.json CHANGED
@@ -1,10 +1,16 @@
1
1
  {
2
2
  "name": "@7nohe/openapi-react-query-codegen",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "OpenAPI React Query Codegen",
5
5
  "bin": {
6
6
  "openapi-rq": "bin/cli.js"
7
7
  },
8
+ "scripts": {
9
+ "build": "tsc -p tsconfig.json",
10
+ "preview": "npm run build && npm -C examples/react-app run generate:api",
11
+ "prepublishOnly": "npm run build",
12
+ "release": "npx git-ensure -a && npx bumpp --commit --tag --push"
13
+ },
8
14
  "repository": {
9
15
  "type": "git",
10
16
  "url": "https://github.com/7nohe/openapi-react-query-codegen.git"
@@ -35,10 +41,5 @@
35
41
  "openapi-types": "^12.0.0",
36
42
  "openapi-typescript-codegen": "^0.23.0",
37
43
  "typescript": "^4.7.4"
38
- },
39
- "scripts": {
40
- "build": "tsc -p tsconfig.json",
41
- "preview": "npm run build && npm -C examples/react-app run generate:api",
42
- "release": "npx git-ensure -a && npx bumpp --commit --tag --push"
43
44
  }
44
- }
45
+ }