generated from alecodes/base-template
Compare commits
3 commits
fa09b9e48a
...
0d0ead8e2e
| Author | SHA1 | Date | |
|---|---|---|---|
| 0d0ead8e2e | |||
| e933fd5669 | |||
| 9949e70575 |
4 changed files with 26 additions and 3 deletions
15
CHANGELOG.md
Normal file
15
CHANGELOG.md
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
# Changelog
|
||||||
|
All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.
|
||||||
|
|
||||||
|
- - -
|
||||||
|
## v0.1.0 - 2025-02-19
|
||||||
|
#### Features
|
||||||
|
- add plugin - (fa09b9e) - aleidk
|
||||||
|
#### Miscellaneous Chores
|
||||||
|
- add npm registry - (e933fd5) - aleidk
|
||||||
|
- update cocogitto config - (9949e70) - aleidk
|
||||||
|
- initial commit - (b7452c7) - alecodes
|
||||||
|
|
||||||
|
- - -
|
||||||
|
|
||||||
|
Changelog generated by [cocogitto](https://github.com/cocogitto/cocogitto).
|
||||||
3
bunfig.toml
Normal file
3
bunfig.toml
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
[install]
|
||||||
|
|
||||||
|
registry = { token = "$NPM_REGISTRY_TOKEN", url = "https://git.alecodes.page/api/packages/alecodes/npm/" }
|
||||||
9
cog.toml
9
cog.toml
|
|
@ -1,5 +1,6 @@
|
||||||
from_latest_tag = false
|
from_latest_tag = false
|
||||||
ignore_merge_commits = true
|
ignore_merge_commits = true
|
||||||
|
tag_prefix = "v"
|
||||||
disable_changelog = false
|
disable_changelog = false
|
||||||
disable_bump_commit = false
|
disable_bump_commit = false
|
||||||
generate_mono_repository_global_tag = true
|
generate_mono_repository_global_tag = true
|
||||||
|
|
@ -7,8 +8,12 @@ generate_mono_repository_package_tags = true
|
||||||
branch_whitelist = []
|
branch_whitelist = []
|
||||||
skip_ci = "[skip ci]"
|
skip_ci = "[skip ci]"
|
||||||
skip_untracked = false
|
skip_untracked = false
|
||||||
pre_bump_hooks = []
|
pre_bump_hooks = [
|
||||||
post_bump_hooks = []
|
"echo 'bump package to {{version}}'",
|
||||||
|
"sed -E -i 's/(\"version\":) \"[0-9.]{5}\"/\\1 \"{{version}}\"/gi' package.json",
|
||||||
|
"bun run ci:publish",
|
||||||
|
]
|
||||||
|
post_bump_hooks = ["git push", "git push origin {{version_tag}}"]
|
||||||
pre_package_bump_hooks = []
|
pre_package_bump_hooks = []
|
||||||
post_package_bump_hooks = []
|
post_package_bump_hooks = []
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "bun-plugin-sass",
|
"name": "bun-plugin-sass",
|
||||||
"version": "0.0.0",
|
"version": "0.1.0",
|
||||||
"module": "index.ts",
|
"module": "index.ts",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue