Skip to content

Commit

Permalink
Merge branch 'release/1.3.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
bsorrentino committed Sep 25, 2023
2 parents 7cccc8f + 27f9070 commit 29c8c20
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 3 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
# Changelog



## [Unreleased](https://github.com/bsorrentino/OfficeScripts-CLI/releases/tag/Unreleased) ()


### Bug Fixes

- **unpack** wrong output path ([19cf7808a2fdf9f](https://github.com/bsorrentino/OfficeScripts-CLI/commit/19cf7808a2fdf9f26eb78a460e1fcd08376165e1))

### Documentation

- update changelog ([c63e88405f315c6](https://github.com/bsorrentino/OfficeScripts-CLI/commit/c63e88405f315c6035a327d35c8fb9affc5f6a5a))


### ALM

- upgrade version ([f43fdaa75516308](https://github.com/bsorrentino/OfficeScripts-CLI/commit/f43fdaa755163089c551690c8090a276bf4d35a5))


"name: v1.3.2" is a release tag

## [v1.3.2](https://github.com/bsorrentino/OfficeScripts-CLI/releases/tag/v1.3.2) (2023-09-24)
Expand Down
2 changes: 1 addition & 1 deletion bin/osts-unpack.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export async function unpack(bodyDirPath, copyOfficeScriptSimplifiedDeclaration)
if (!fs.existsSync(dir)) {
await fsMkdir(dir);
}
await fsWriteFile(outputFilePath, osts.body);
await fsWriteFile(osts.bodyFilePath, osts.body);
// Copy declaration files if needed
if (copyOfficeScriptSimplifiedDeclaration) {
await CP_D_TS(bodyDirPath);
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bsorrentino/osts-cli",
"version": "1.3.2",
"version": "1.3.3",
"description": "CLI for manage OSTS files",
"types": "office-js-simplified.d.ts",
"files": [
Expand Down
2 changes: 1 addition & 1 deletion src/osts-unpack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export async function unpack( bodyDirPath:string, copyOfficeScriptSimplifiedDecl
if( !fs.existsSync(dir) ) {
await fsMkdir( dir )
}
await fsWriteFile( outputFilePath, osts.body )
await fsWriteFile( osts.bodyFilePath, osts.body )

// Copy declaration files if needed
if( copyOfficeScriptSimplifiedDeclaration ) {
Expand Down

0 comments on commit 29c8c20

Please sign in to comment.