diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..55b1e5e --- /dev/null +++ b/CHANGELOG.md @@ -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). \ No newline at end of file diff --git a/bunfig.toml b/bunfig.toml new file mode 100644 index 0000000..850dab8 --- /dev/null +++ b/bunfig.toml @@ -0,0 +1,3 @@ +[install] + +registry = { token = "$NPM_REGISTRY_TOKEN", url = "https://git.alecodes.page/api/packages/alecodes/npm/" } diff --git a/cog.toml b/cog.toml index 2f52731..9ce7570 100644 --- a/cog.toml +++ b/cog.toml @@ -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 = [] diff --git a/package.json b/package.json index ca1f12b..d6698c0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bun-plugin-sass", - "version": "0.0.0", + "version": "0.1.0", "module": "index.ts", "type": "module", "scripts": {