Skip to content

Commit

Permalink
🎉 🚀 release: v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hoanguyen committed Jul 6, 2021
1 parent 5d7c591 commit c290876
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# 0.1.0 (2021-07-06)


### Features

* init ([cb4d2c4](https://github.com/jambonn/vue-next-progressbar/commit/cb4d2c45b9e7bd8d92ed095e299817addf5e3c8b))



3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jambonn/vue-next-progressbar",
"version": "0.0.1",
"version": "0.1.0",
"description": "Slim progress bars for Vue 3.",
"keywords": [
"vue",
Expand All @@ -22,6 +22,7 @@
"build:lib": "NODE_ENV=production vite build --mode lib && yarn build:scss",
"build:scss": "sass src/progressbar.scss > lib/vue-next-progressbar.css && cleancss -o lib/vue-next-progressbar.min.css lib/vue-next-progressbar.css",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1",
"release": "node scripts/release.js",
"serve": "vite preview"
},
"main": "lib/vue-next-progressbar.cjs.js",
Expand Down
6 changes: 5 additions & 1 deletion scripts/release.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,11 @@ async function main() {
if (stdout) {
step('\nCommitting changes...');
await runIfNotDry('git', ['add', '-A']);
await runIfNotDry('git', ['commit', '-m', `release: v${targetVersion}`]);
await runIfNotDry('git', [
'commit',
'-m',
`:tada: :rocket: release: v${targetVersion}`,
]);
} else {
console.log('No changes to commit.');
}
Expand Down

0 comments on commit c290876

Please sign in to comment.