Skip to content

Commit

Permalink
Improvements (#270)
Browse files Browse the repository at this point in the history
  • Loading branch information
TriPSs authored Oct 24, 2024
2 parents 492ffbe + b2e8540 commit ae403ae
Show file tree
Hide file tree
Showing 17 changed files with 2,268 additions and 6,825 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ This action will bump version, tag commit and generate a changelog with conventi
- **Optional** `git-branch`: The branch used to push. Default is the current branch (`${{ github.ref }}`)
- **Optional** `git-url`: Git repository domain. Default is `github.com`
- **Optional** `git-path`: Path filter for the logs and version. If set, only commits that match the path filter will be considered. By default, we won't use this feature(empty string).
- **Optional** `preset`: Preset that is used from conventional commits. Default is `angular` ([learn more about presents here](https://github.com/TriPSs/conventional-changelog-action/issues/223))
- **Optional** `preset`: Preset that is used from conventional commits. Default is `angular` ([learn more about presets here](https://github.com/TriPSs/conventional-changelog-action/issues/223))
- **Optional** `tag-prefix`: Prefix for the git tags. Default `v`.
- **Optional** `input-file`: Read the changelog from this file. This will prepend the newly generated changelogs to the file's content.
- **Optional** `output-file`: File to output the changelog to. Default `CHANGELOG.md`, when providing `'false'` no file will be generated / updated.
Expand Down
307 changes: 202 additions & 105 deletions dist/482.index.js → dist/282.index.js

Large diffs are not rendered by default.

31 changes: 21 additions & 10 deletions dist/941.index.js → dist/398.index.js
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
"use strict";
exports.id = 941;
exports.ids = [941];
exports.id = 398;
exports.ids = [398];
exports.modules = {

/***/ 7941:
/***/ 6398:
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {

// ESM COMPAT FLAG
__webpack_require__.r(__webpack_exports__);

// EXPORTS
__webpack_require__.d(__webpack_exports__, {
"readPackageUp": () => (/* binding */ readPackageUp),
"readPackageUpSync": () => (/* binding */ readPackageUpSync)
readPackageUp: () => (/* binding */ readPackageUp),
readPackageUpSync: () => (/* binding */ readPackageUpSync)
});

// EXTERNAL MODULE: external "node:path"
var external_node_path_ = __webpack_require__(9411);
var external_node_path_ = __webpack_require__(6760);
// EXTERNAL MODULE: external "node:url"
var external_node_url_ = __webpack_require__(1041);
var external_node_url_ = __webpack_require__(3136);
// EXTERNAL MODULE: external "node:process"
var external_node_process_ = __webpack_require__(7742);
var external_node_process_ = __webpack_require__(1708);
// EXTERNAL MODULE: external "node:fs"
var external_node_fs_ = __webpack_require__(7561);
var external_node_fs_ = __webpack_require__(3024);
;// CONCATENATED MODULE: ./node_modules/yocto-queue/index.js
/*
How it works:
Expand Down Expand Up @@ -72,6 +72,17 @@ class Queue {
return current.value;
}

peek() {
if (!this.#head) {
return;
}

return this.#head.value;

// TODO: Node.js 18.
// return this.#head?.value;
}

clear() {
this.#head = undefined;
this.#tail = undefined;
Expand Down Expand Up @@ -421,7 +432,7 @@ function findUpSync(name, options = {}) {


// EXTERNAL MODULE: ./node_modules/read-pkg/index.js + 2 modules
var read_pkg = __webpack_require__(581);
var read_pkg = __webpack_require__(4282);
;// CONCATENATED MODULE: ./node_modules/read-pkg-up/index.js


Expand Down
Loading

0 comments on commit ae403ae

Please sign in to comment.