Skip to content

Commit

Permalink
chore(package): update dependencies (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
Comandeer authored May 7, 2024
1 parent 9678580 commit b3faf66
Show file tree
Hide file tree
Showing 9 changed files with 2,753 additions and 1,644 deletions.
1 change: 1 addition & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ end_of_line = lf
insert_final_newline = true
indent_style = tab
indent_size = 4
trim_trailing_whitespace = true

[*.yml]
indent_style = space
Expand Down
3 changes: 0 additions & 3 deletions .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npx commitplease .git/COMMIT_EDITMSG
3 changes: 0 additions & 3 deletions .husky/pre-push
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npm run lint
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,19 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

---

## [0.6.0]
### Changed
* [#26]: **BREAKING CHANGE**: updated dependencies:

| Dependency | Old version | New version |
| ---------- | ----------- | ----------- |
| ⚠️ `execa` | `^7.1.1` | `^8.0.1` |
| `pathe` | `^1.1.1` | `^1.1.2` |
| `tslib` | `^2.6.1` | `^2.6.2` |

Dependencies with major version change are marked with the "⚠️" emoji.


## [0.5.1] – 2023-08-02
### Fixed
* [#24]: `tslib` was incorrectly marked as dev dependency instead of runtime one.
Expand Down Expand Up @@ -57,7 +70,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
[#18]: https://github.com/Comandeer/esm-loader-manager/issues/18
[#20]: https://github.com/Comandeer/esm-loader-manager/issues/20
[#24]: https://github.com/Comandeer/esm-loader-manager/issues/24
[#26]: https://github.com/Comandeer/esm-loader-manager/issues/26

[0.6.0]: https://github.com/Comandeer/esm-loader-manager/compare/v0.5.1...v0.6.0
[0.5.1]: https://github.com/Comandeer/esm-loader-manager/compare/v0.5.0...v0.5.1
[0.5.0]: https://github.com/Comandeer/esm-loader-manager/compare/v0.4.0...v0.5.0
[0.4.0]: https://github.com/Comandeer/esm-loader-manager/compare/v0.3.0...v0.4.0
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2022-2023 Comandeer
Copyright (c) 2022-2024 Comandeer

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion ava.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const config = {
'!tests/**/{__fixtures__,__helpers__}/**'
],
nodeArguments: [
'--loader=tsx'
'--import=tsx'
]
};

Expand Down
4 changes: 2 additions & 2 deletions eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ import eslintConfig from '@comandeer/eslint-config';
import formattingConfig from '@comandeer/eslint-config/formatting';

export default [
...eslintConfig,
...formattingConfig
...eslintConfig(),
...formattingConfig()
];
Loading

0 comments on commit b3faf66

Please sign in to comment.