Skip to content

Commit 8fab8df

Browse files
committed
fix: updating to publish; removed github release
1 parent 31486cf commit 8fab8df

File tree

4 files changed

+58
-7
lines changed

4 files changed

+58
-7
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
command: npm pack
8282
- run:
8383
name: release
84-
command: CI=false npx semantic-release || true
84+
command: CI=false npx semantic-release
8585
# Orchestrate our job run sequence
8686
workflows:
8787
build_lint_test_publish:

package-lock.json

Lines changed: 45 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "@cubedelement.com/realty-investor-timeline",
3-
"version": "0.1.0",
3+
"private": false,
4+
"version": "1.0.0",
45
"description": "A way to determine if and when your expenses would be covered",
56
"main": "./dist/index.js",
67
"types": "./dist/index.d.ts",
@@ -36,6 +37,7 @@
3637
"devDependencies": {
3738
"@commitlint/cli": "^13.1.0",
3839
"@commitlint/config-conventional": "^13.1.0",
40+
"@semantic-release/changelog": "^6.0.0",
3941
"@types/chance": "^1.1.3",
4042
"@types/jest": "^27.0.1",
4143
"@types/lodash.clonedeep": "^4.5.6",

release.config.js

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,14 @@ module.exports = {
22
'branches': ['main'],
33
'plugins': [
44
'@semantic-release/commit-analyzer',
5-
'@semantic-release/github',
65
['@semantic-release/release-notes-generator'],
7-
['@semantic-release/npm']
8-
],
9-
'debug': true
6+
['@semantic-release/changelog', {
7+
'changelogFile': 'docs/CHANGELOG.md'
8+
}],
9+
['@semantic-release/npm'],
10+
['@semantic-release/git', {
11+
'assets': ['docs', 'package.json', 'package-lock.json'],
12+
'message': 'chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}'
13+
}]
14+
]
1015
};

0 commit comments

Comments
 (0)