Skip to content

Commit

Permalink
v2.0.0-beta.4
Browse files Browse the repository at this point in the history
  • Loading branch information
DylanBulmer committed Aug 30, 2023
1 parent 953ff38 commit ee98bee
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
{
"name": "@dylanbulmer/api",
"version": "2.0.0-beta.3",
"main": "index.js",
"version": "2.0.0-beta.4",
"author": "Dylan Bulmer <[email protected]>",
"license": "MIT",
"bin": {
"api": "dist/cjs/index.js"
"api": "./cjs/index.js"
},
"main": "./cjs/index.js",
"module": "./esm/index.js",
"types": "./types/index.d.ts",
"exports": {
".": {
"require": "./cjs/index.js",
Expand Down
4 changes: 2 additions & 2 deletions src/__tests__/api-doc.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { OpenAPIV3_1 } from "openapi-types";
import * as Responses from "../classes/responses";
import { Responses } from "../";

const settings: OpenAPIV3_1.Document = {
openapi: "3.1.0",
Expand All @@ -8,7 +8,7 @@ const settings: OpenAPIV3_1.Document = {
servers: [
{
url: `http://localhost:8000/api/`,
description: "Dev Server"
description: "Dev Server",
},
],

Expand Down

0 comments on commit ee98bee

Please sign in to comment.