Skip to content

Commit

Permalink
1.0.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
enact-bot committed Sep 22, 2023
2 parents d26996a + f41fb77 commit b8caa32
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 54 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## [1.0.2] (September 22, 2023)

* Updated `prettier` version to `^3.0.1`.

## [1.0.1] (July 25, 2023)

* Fixed to prevent empty `.ts` file generation for private modules.
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ async function parse ({path: modulePath, files, format, importMap, output}) {
}

if (format) {
result = prettier.format(result, {parser: 'typescript'});
result = await prettier.format(result, {parser: 'typescript'});
}

output(moduleName, result);
Expand Down
98 changes: 49 additions & 49 deletions package-lock.json

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

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@enact/jsdoc-to-ts",
"version": "1.0.1",
"version": "1.0.2",
"description": "Converts inline jsdoc comments to TypeScript .d.ts files",
"main": "index.js",
"author": "Roy Sutton <[email protected]>",
Expand Down Expand Up @@ -32,15 +32,15 @@
},
"dependencies": {
"documentation": "^14.0.2",
"glob": "^10.3.1",
"glob": "^10.3.3",
"jsonata": "^2.0.3",
"loglevel": "^1.8.1",
"minimist": "^1.2.8",
"prettier": "^2.8.8"
"prettier": "^3.0.1"
},
"devDependencies": {
"chai": "^4.3.7",
"eslint-config-enact-proxy": "^1.0.5",
"eslint-config-enact-proxy": "^1.0.6",
"mocha": "^10.2.0",
"react": "^18.2.0"
}
Expand Down

0 comments on commit b8caa32

Please sign in to comment.