@oneblink/release-cli 1.2.0-beta.1 → 1.2.0-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/package.json +3 -2
- package/patches/changelog-parser+2.8.0.patch +10 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
### Moved
|
|
11
|
+
|
|
12
|
+
`patch-package` to deps
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
|
|
16
|
+
`patches` dir to `files` in `package.json` file
|
|
17
|
+
|
|
10
18
|
## [1.1.0] - 2022-08-26
|
|
11
19
|
|
|
12
20
|
### Patched
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oneblink/release-cli",
|
|
3
3
|
"description": "Used internally by OneBlink to release code bases quickly and consistently",
|
|
4
|
-
"version": "1.2.0-beta.
|
|
4
|
+
"version": "1.2.0-beta.2",
|
|
5
5
|
"author": "OneBlink <developers@oneblink> (https://github.com/oneblink)",
|
|
6
6
|
"bin": {
|
|
7
7
|
"oneblink-release": "dist/bin.js"
|
|
@@ -45,7 +45,8 @@
|
|
|
45
45
|
"npm": ">=6"
|
|
46
46
|
},
|
|
47
47
|
"files": [
|
|
48
|
-
"dist"
|
|
48
|
+
"dist",
|
|
49
|
+
"patches"
|
|
49
50
|
],
|
|
50
51
|
"homepage": "https://github.com/oneblink/release-cli#readme",
|
|
51
52
|
"keywords": [
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
diff --git a/node_modules/changelog-parser/index.js b/node_modules/changelog-parser/index.js
|
|
2
|
+
index a14d61d..0289be4 100644
|
|
3
|
+
--- a/node_modules/changelog-parser/index.js
|
|
4
|
+
+++ b/node_modules/changelog-parser/index.js
|
|
5
|
+
@@ -1,4 +1,4 @@
|
|
6
|
+
-var EOL = require('os').EOL
|
|
7
|
+
+var EOL = '\n'
|
|
8
|
+
var lineReader = require('line-reader')
|
|
9
|
+
var removeMarkdown = require('remove-markdown')
|
|
10
|
+
|