Skip to content

Commit

Permalink
chore: update packages (#169)
Browse files Browse the repository at this point in the history
* chore: update ws from v8.14.2 to v8.16.0

* chore: update typescript v5.2.2 to v5.4.5

* chore: update ts-node from v10.9.1 to v10.9.2

* chore: update ts-jest from v29.1.1 to v29.1.2

* chore: update semver from v7.5.4 to v7.6.0

* chore: update moment from v2.29.4 to v2.30.1

* chore: update inquirer from v9.2.12 to v9.2.18

* chore: update ignore from v5.2.4 to v5.3.1

* chore: update https-proxy-agent from v7.0.2 to v7.0.4

* chore: update get-port from v7.0.0 to v7.1.0

* chore: update fs-extra from v11.1.1 to v11.2.0

* chore: update ansi-escapes from v6.2.0 to v6.2.1

* chore: update @types/ws from v8.5.9 to v8.5.10

* chore: update @types/update-notifier from v6.0.7 to v6.0.8

* chore: update @types/tar from v6.1.9 to v6.1.12

* chore: update @types/semver from v7.5.5 to v7.5.8

* chore: update @types/jest from v29.5.8 to v29.5.12

* chore: upgrade update-notifier from v6.0.2 to v7.0.0

* chore: upgrade tar from v6.2.0 to v7.0.1

* chore: upgrade ora from v7.0.1 to v8.0.1

* chore: upgrade ora from v13.2.2 to v14.0.1

* chore: delete unused package (@types/tar)

* chore: upgrade @oclif/plugin-version from v1.3.8 to v2.0.17

* chore: upgrade @oclif/plugin-help from v5.2.15 to v6.0.21

* chore: upgrade @oclif/plugin-autocomplete from v2.3.9 to v3.0.15

* chore: upgrade mime from v3.0.0 to v4.0.1

* chore: upgrade prettier from v2.8.8 to v3.2.5

* chore: upgrade pretty-quick from v3.1.3 to v4.0.0

* chore: upgrade inquirer from v9.2.18 to v9.2.19

* chore: upgrade open from v9.1.0 to v10.1.0

* chore: upgrade husky from v8.0.3 to v9.0.11

* chore: migrate from husky v8 to v9

* chore: upgrade oclif from v3.10.0 to v4.8.5

* chore: upgrade @oclif/core from v2.15.0 to v3.26.4

* chore: migrate from @oclif/core v2 to v3

* chore: upgrade oclif from v4.8.5 to v4.8.6

* chore: upgrade eslint-config-oclif from v4.0.0 to v5.1.3

* chore: upgrade eslint-config-oclif-typescript from v1.0.3 to v3.1.6

* core: dropped support for Node.js version 16
  • Loading branch information
vashian authored Apr 21, 2024
1 parent f05bb05 commit 0811d0e
Show file tree
Hide file tree
Showing 8 changed files with 65,487 additions and 10,867 deletions.
36 changes: 0 additions & 36 deletions .husky/_/husky.sh
Original file line number Diff line number Diff line change
@@ -1,36 +0,0 @@
#!/usr/bin/env sh
if [ -z "$husky_skip_init" ]; then
debug () {
if [ "$HUSKY_DEBUG" = "1" ]; then
echo "husky (debug) - $1"
fi
}

readonly hook_name="$(basename -- "$0")"
debug "starting $hook_name..."

if [ "$HUSKY" = "0" ]; then
debug "HUSKY env variable is set to 0, skipping hook"
exit 0
fi

if [ -f ~/.huskyrc ]; then
debug "sourcing ~/.huskyrc"
. ~/.huskyrc
fi

readonly husky_skip_init=1
export husky_skip_init
sh -e "$0" "$@"
exitCode="$?"

if [ $exitCode != 0 ]; then
echo "husky - $hook_name hook exited with code $exitCode (error)"
fi

if [ $exitCode = 127 ]; then
echo "husky - command not found in PATH=$PATH"
fi

exit $exitCode
fi
1 change: 0 additions & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

npx pretty-quick --staged
2 changes: 1 addition & 1 deletion bin/dev.cmd
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
@echo off

node "%~dp0\dev" %*
node --loader ts-node/esm --no-warnings=ExperimentalWarning "%~dp0\dev" %*
7 changes: 3 additions & 4 deletions bin/dev.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#!/usr/bin/env ts-node

(async () => {
const oclif = await import('@oclif/core');
await oclif.execute({ type: 'esm', development: true, dir: import.meta.url });
})();
import { execute } from '@oclif/core';

await execute({ development: true, dir: import.meta.url });
7 changes: 3 additions & 4 deletions bin/run.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#!/usr/bin/env node

(async () => {
const oclif = await import('@oclif/core');
await oclif.execute({ type: 'esm', dir: import.meta.url });
})();
import { execute } from '@oclif/core';

await execute({ dir: import.meta.url });
Loading

0 comments on commit 0811d0e

Please sign in to comment.