@normful/picadillo 1.0.3 โ 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9 -0
- package/package.json +1 -1
- package/cliff.toml +0 -94
- package/generate-changelog.sh +0 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,17 @@
|
|
|
1
|
+
## [1.1.0] - 2026-02-16
|
|
2
|
+
|
|
3
|
+
### ๐ Features
|
|
4
|
+
|
|
5
|
+
- *(npmignore)* Include release scripts in npm package distribution
|
|
1
6
|
## [1.0.3] - 2026-02-16
|
|
2
7
|
|
|
3
8
|
### ๐ Refactor
|
|
4
9
|
|
|
5
10
|
- *(docs)* Update logo path in README to use absolute URL
|
|
11
|
+
|
|
12
|
+
### โ๏ธ Miscellaneous Tasks
|
|
13
|
+
|
|
14
|
+
- Release 1.0.3
|
|
6
15
|
## [1.0.2] - 2026-02-16
|
|
7
16
|
|
|
8
17
|
### ๐ Features
|
package/package.json
CHANGED
package/cliff.toml
DELETED
|
@@ -1,94 +0,0 @@
|
|
|
1
|
-
# git-cliff ~ configuration file
|
|
2
|
-
# https://git-cliff.org/docs/configuration
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
[changelog]
|
|
6
|
-
# A Tera template to be rendered for each release in the changelog.
|
|
7
|
-
# See https://keats.github.io/tera/docs/#introduction
|
|
8
|
-
body = """
|
|
9
|
-
{% if version %}\
|
|
10
|
-
## [{{ version | trim_start_matches(pat="v") }}] - {{ timestamp | date(format="%Y-%m-%d") }}
|
|
11
|
-
{% else %}\
|
|
12
|
-
## [unreleased]
|
|
13
|
-
{% endif %}\
|
|
14
|
-
{% for group, commits in commits | group_by(attribute="group") %}
|
|
15
|
-
### {{ group | striptags | trim | upper_first }}
|
|
16
|
-
{% for commit in commits %}
|
|
17
|
-
- {% if commit.scope %}*({{ commit.scope }})* {% endif %}\
|
|
18
|
-
{% if commit.breaking %}[**breaking**] {% endif %}\
|
|
19
|
-
{{ commit.message | upper_first }}\
|
|
20
|
-
{% endfor %}
|
|
21
|
-
{% endfor %}
|
|
22
|
-
"""
|
|
23
|
-
# Remove leading and trailing whitespaces from the changelog's body.
|
|
24
|
-
trim = true
|
|
25
|
-
# Render body even when there are no releases to process.
|
|
26
|
-
render_always = true
|
|
27
|
-
# An array of regex based postprocessors to modify the changelog.
|
|
28
|
-
postprocessors = [
|
|
29
|
-
# Replace the placeholder <REPO> with a URL.
|
|
30
|
-
#{ pattern = '<REPO>', replace = "https://github.com/orhun/git-cliff" },
|
|
31
|
-
]
|
|
32
|
-
# render body even when there are no releases to process
|
|
33
|
-
# render_always = true
|
|
34
|
-
# output file path
|
|
35
|
-
# output = "test.md"
|
|
36
|
-
|
|
37
|
-
[git]
|
|
38
|
-
# Parse commits according to the conventional commits specification.
|
|
39
|
-
# See https://www.conventionalcommits.org
|
|
40
|
-
conventional_commits = true
|
|
41
|
-
# Exclude commits that do not match the conventional commits specification.
|
|
42
|
-
filter_unconventional = true
|
|
43
|
-
# Require all commits to be conventional.
|
|
44
|
-
# Takes precedence over filter_unconventional.
|
|
45
|
-
require_conventional = false
|
|
46
|
-
# Split commits on newlines, treating each line as an individual commit.
|
|
47
|
-
split_commits = false
|
|
48
|
-
# An array of regex based parsers to modify commit messages prior to further processing.
|
|
49
|
-
commit_preprocessors = [
|
|
50
|
-
# Replace issue numbers with link templates to be updated in `changelog.postprocessors`.
|
|
51
|
-
#{ pattern = '\((\w+\s)?#([0-9]+)\)', replace = "([#${2}](<REPO>/issues/${2}))"},
|
|
52
|
-
# Check spelling of the commit message using https://github.com/crate-ci/typos.
|
|
53
|
-
# If the spelling is incorrect, it will be fixed automatically.
|
|
54
|
-
#{ pattern = '.*', replace_command = 'typos --write-changes -' },
|
|
55
|
-
]
|
|
56
|
-
# Prevent commits that are breaking from being excluded by commit parsers.
|
|
57
|
-
protect_breaking_commits = false
|
|
58
|
-
# An array of regex based parsers for extracting data from the commit message.
|
|
59
|
-
# Assigns commits to groups.
|
|
60
|
-
# Optionally sets the commit's scope and can decide to exclude commits from further processing.
|
|
61
|
-
commit_parsers = [
|
|
62
|
-
{ message = "^feat", group = "<!-- 0 -->๐ Features" },
|
|
63
|
-
{ message = "^fix", group = "<!-- 1 -->๐ Bug Fixes" },
|
|
64
|
-
{ message = "^doc", group = "<!-- 3 -->๐ Documentation" },
|
|
65
|
-
{ message = "^perf", group = "<!-- 4 -->โก Performance" },
|
|
66
|
-
{ message = "^refactor", group = "<!-- 2 -->๐ Refactor" },
|
|
67
|
-
{ message = "^style", group = "<!-- 5 -->๐จ Styling" },
|
|
68
|
-
{ message = "^test", group = "<!-- 6 -->๐งช Testing" },
|
|
69
|
-
{ message = "^chore\\(release\\): prepare for", skip = true },
|
|
70
|
-
{ message = "^chore\\(deps.*\\)", skip = true },
|
|
71
|
-
{ message = "^chore\\(pr\\)", skip = true },
|
|
72
|
-
{ message = "^chore\\(pull\\)", skip = true },
|
|
73
|
-
{ message = "^chore|^ci", group = "<!-- 7 -->โ๏ธ Miscellaneous Tasks" },
|
|
74
|
-
{ body = ".*security", group = "<!-- 8 -->๐ก๏ธ Security" },
|
|
75
|
-
{ message = "^revert", group = "<!-- 9 -->โ๏ธ Revert" },
|
|
76
|
-
{ message = ".*", group = "<!-- 10 -->๐ผ Other" },
|
|
77
|
-
]
|
|
78
|
-
# Exclude commits that are not matched by any commit parser.
|
|
79
|
-
filter_commits = false
|
|
80
|
-
# Fail on a commit that is not matched by any commit parser.
|
|
81
|
-
fail_on_unmatched_commit = false
|
|
82
|
-
# An array of link parsers for extracting external references, and turning them into URLs, using regex.
|
|
83
|
-
link_parsers = []
|
|
84
|
-
# Include only the tags that belong to the current branch.
|
|
85
|
-
use_branch_tags = false
|
|
86
|
-
# Order releases topologically instead of chronologically.
|
|
87
|
-
topo_order = false
|
|
88
|
-
# Order commits topologically instead of chronologically.
|
|
89
|
-
topo_order_commits = true
|
|
90
|
-
# Order of commits in each group/release within the changelog.
|
|
91
|
-
# Allowed values: newest, oldest
|
|
92
|
-
sort_commits = "oldest"
|
|
93
|
-
# Process submodules commits
|
|
94
|
-
recurse_submodules = false
|
package/generate-changelog.sh
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env bash
|
|
2
|
-
|
|
3
|
-
set -o errexit
|
|
4
|
-
set -o pipefail
|
|
5
|
-
|
|
6
|
-
LATEST_VERSION=$(node -p -e "require('./package.json').version")
|
|
7
|
-
|
|
8
|
-
if [ "$1" = "stdout" ]; then
|
|
9
|
-
git-cliff --output - --unreleased --tag $LATEST_VERSION
|
|
10
|
-
else
|
|
11
|
-
git-cliff --output './CHANGELOG.md' --tag $LATEST_VERSION
|
|
12
|
-
fi
|