Compare commits

...

3 commits

Author SHA1 Message Date
0d0ead8e2e chore(version): v0.1.0 2025-02-19 09:10:39 -03:00
e933fd5669 chore: add npm registry 2025-02-19 09:10:36 -03:00
9949e70575 chore: update cocogitto config 2025-02-19 09:07:58 -03:00
4 changed files with 26 additions and 3 deletions

15
CHANGELOG.md Normal file
View 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
View file

@ -0,0 +1,3 @@
[install]
registry = { token = "$NPM_REGISTRY_TOKEN", url = "https://git.alecodes.page/api/packages/alecodes/npm/" }

View file

@ -1,5 +1,6 @@
from_latest_tag = false
ignore_merge_commits = true
tag_prefix = "v"
disable_changelog = false
disable_bump_commit = false
generate_mono_repository_global_tag = true
@ -7,8 +8,12 @@ generate_mono_repository_package_tags = true
branch_whitelist = []
skip_ci = "[skip ci]"
skip_untracked = false
pre_bump_hooks = []
post_bump_hooks = []
pre_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 = []
post_package_bump_hooks = []

View file

@ -1,6 +1,6 @@
{
"name": "bun-plugin-sass",
"version": "0.0.0",
"version": "0.1.0",
"module": "index.ts",
"type": "module",
"scripts": {