Skip to content

Commit

Permalink
Fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
MrZillaGold committed Feb 19, 2021
1 parent 7d37aca commit aa65c23
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "rawjsonbuilder",
"version": "1.0.1",
"version": "1.0.2",
"description": "Minecraft Raw JSON text builder",
"main": "./lib/RawJSONBuilder.js",
"types": "./lib/interfaces/index.d.ts",
"types": "./lib/RawJSONBuilder.d.ts",
"scripts": {
"build": "tsc && node --experimental-modules --es-module-specifier-resolution=node scripts/cleanUpBuild.mjs"
},
Expand Down
2 changes: 2 additions & 0 deletions src/RawJSONBuilder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,5 @@ export class RawJSONBuilder {
return JSON.stringify(this.toJSON());
}
}

export * from "./interfaces";

0 comments on commit aa65c23

Please sign in to comment.