@oneblink/release-cli 1.0.0 → 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 CHANGED
@@ -7,6 +7,22 @@ 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
+
18
+ ## [1.1.0] - 2022-08-26
19
+
20
+ ### Patched
21
+
22
+ - `changelog-parser` to use `\n` as line endings instead of detecting based on platform
23
+
10
24
  ## [1.0.0] - 2021-04-21
11
25
 
26
+ ### Added
27
+
12
28
  - Initial Release
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.0.0",
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"
@@ -16,6 +16,7 @@
16
16
  "meow": "^9.0.0",
17
17
  "ora": "^5.4.0",
18
18
  "package-diff-summary": "^3.0.1",
19
+ "patch-package": "^6.4.7",
19
20
  "prettier": "^2.2.1",
20
21
  "read-pkg-up": "^7.0.1",
21
22
  "semver": "^7.3.5",
@@ -44,7 +45,8 @@
44
45
  "npm": ">=6"
45
46
  },
46
47
  "files": [
47
- "dist"
48
+ "dist",
49
+ "patches"
48
50
  ],
49
51
  "homepage": "https://github.com/oneblink/release-cli#readme",
50
52
  "keywords": [
@@ -65,6 +67,7 @@
65
67
  "jest": "jest --silent",
66
68
  "prepare": "npm run build",
67
69
  "pretest": "npm run eslint",
68
- "test": "npm run jest"
70
+ "test": "npm run jest",
71
+ "postinstall": "patch-package"
69
72
  }
70
73
  }
@@ -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
+