Skip to content

Commit

Permalink
Update dependencies and release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
david-04 committed Dec 30, 2022
1 parent efbcb85 commit 74acde3
Show file tree
Hide file tree
Showing 7 changed files with 463 additions and 226 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Change Log

## [1.1.0](https://github.com/david-04/7-sync/releases/tag/v1.1.0) (UNRELEASED)
## [1.1.0](https://github.com/david-04/7-sync/releases/tag/v1.1.0) (2022-12-30)

- Increased performance by running multiple 7-Zip instances simultaenously (command line option `--parallel`, default: `2`)
- Increased throughput by zipping multiple files simultaneously (command line option `--parallel`, default: `2`)
- Fixed an issue that prevented root directory source files starting with `@` or `-` from being zipped

## [1.0.3](https://github.com/david-04/7-sync/releases/tag/v1.0.3) (2022-05-27)
Expand Down
19 changes: 17 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,20 @@
RUN=node "../$(7_SYNC_JS)"
VERSION=$(shell grep -E "^## \[[0-9.]+\]" CHANGELOG.md | head -1 | sed "s|^\#\# \[||;s|\].*||")

autorun : ;
$(info )
$(info $() build ..... compile the application)
$(info $() help ...... 7-sync --help)
$(info $() publish ... publish the release to NPM)
$(info $() release ... assemble the release)
$(info $() version ... 7-sync --version)

autorun.editor : build;

#-----------------------------------------------------------------------------------------------------------------------
# Compile
#-----------------------------------------------------------------------------------------------------------------------

autorun : build;

build : $(7_SYNC_JS);

$(7_SYNC_JS) : $(wildcard src/*.ts src/*/*.ts src/*/*/*.ts src/*/*/*/*.ts)
Expand Down Expand Up @@ -51,6 +59,13 @@ update-version :
> src/version.ts.tmp
mv -f src/version.ts.tmp src/version.ts

#-----------------------------------------------------------------------------------------------------------------------
# Publish
#-----------------------------------------------------------------------------------------------------------------------

publish :
cd package && npm publish

#-----------------------------------------------------------------------------------------------------------------------
# Clean
#-----------------------------------------------------------------------------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"devDependencies": {
"@types/node": "^16.11.7"
"@types/node": "^18.11.18"
},
"name": "7-sync",
"private": true,
"scripts": {
"build": "tsc"
},
"version": "0.0.1"
"version": "0.0.0"
}
Loading

0 comments on commit 74acde3

Please sign in to comment.