Skip to content

Commit 652a09d

Browse files
authored
build(release): publish package (#9)
* build(release): update dependencies The **parse-numeric** module provides two features: 1. `parseNumeric` is a function that converts numeric strings into Number types. 2. `parseNumeric.isNumeric` evaluates a value and determines whether the value can be converted to a Number type. **parse-numeric** differs from similar modules in how it evaluates `Strings` and what it returns: ``` parseNumeric when given a value that is a {string} that represents a {number} ✓ will convert the {string} to a {number} a non-numeric {string} ✓ will return the original value a {number} ✓ will return the {number} an empty {string} ✓ will return the empty {string} {null} ✓ will return {null} (1ms) {undefined} ✓ will return {undefined} ``` and ``` parseNumeric.isNumeric ✓ returns false for non-numeric values ✓ returns true for numbers and numeric strings ✓ returns true for numbers and numeric strings ``` This commit also includes CI build features with quality gates, as well as documentation. GH-1
1 parent da29144 commit 652a09d

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

.npmrc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[commitplease]
2+
nohook = true
3+
4+
//registry.npmjs.org/:_authToken = ${NPM_TOKEN}

package.json

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@
2323
"revert",
2424
"style",
2525
"test"
26-
],
27-
"scope": "\\S+.*"
26+
]
2827
},
2928
"contributors": [
3029
{
@@ -233,7 +232,12 @@
233232
"@semantic-release/changelog",
234233
"@semantic-release/npm",
235234
"@semantic-release/github",
236-
"@semantic-release/git"
235+
[
236+
"@semantic-release/git",
237+
{
238+
"message": "chore(release): v${nextRelease.version}"
239+
}
240+
]
237241
],
238242
"prepare": [
239243
{

0 commit comments

Comments
 (0)