Skip to content

Commit

Permalink
configure for publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
svenliebig committed Sep 28, 2022
1 parent 739115f commit bdba7aa
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 9 deletions.
12 changes: 8 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
{
"name": "ts-ast-parser",
"version": "1.0.0",
"main": "index.js",
"name": "ts-partial-type-resolver",
"version": "0.1.0",
"license": "MIT",
"main": "dist/index.js",
"files": [
"src",
"dist"
],
"scripts": {
"start": "ts-node start.ts",
"test:coverage": "c8 -r lcov ava",
Expand All @@ -25,4 +29,4 @@
"--loader=ts-node/esm"
]
}
}
}
3 changes: 3 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export * from "./models"
export { Parser } from "./parser"
export * from "./rewrite"
16 changes: 11 additions & 5 deletions src/models/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
export { ArrayType } from "./ArrayType"
export { ArrayTypeDeclaration } from "./ArrayTypeDeclaration"
export { BooleanType } from "./BooleanType"
export { EnumType } from "./EnumType"
export { EnumTypeDeclaration } from "./EnumTypeDeclaration"
export * from "./ArrayType"
export * from "./BooleanType"
export * from "./EnumType"
export * from "./IntersectionType"
export * from "./LiteralType"
export * from "./NumberType"
export * from "./StringType"
export * from "./TypeLiteral"
export * from "./TypeReference"
export * from "./UnionType"
export * from "./UnknownType"

0 comments on commit bdba7aa

Please sign in to comment.