forked from lxm_front/Mergely
@@ -8,4 +8,4 @@ npm run test
|
|||||||
|
|
||||||
## Conventional commits
|
## Conventional commits
|
||||||
|
|
||||||
Mergely is using [conventional commits](https://www.conventionalcommits.org/en/v1.0.0).
|
Mergely is using [conventional commits](https://www.conventionalcommits.org/en/v1.0.0), and [standard-version](https://www.npmjs.com/package/standard-version).
|
||||||
|
|||||||
@@ -4,6 +4,8 @@
|
|||||||
"build",
|
"build",
|
||||||
"chore",
|
"chore",
|
||||||
"ci",
|
"ci",
|
||||||
|
"feat",
|
||||||
|
"fix",
|
||||||
"docs",
|
"docs",
|
||||||
"style",
|
"style",
|
||||||
"refactor",
|
"refactor",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ const DiffParser = require('./diff-parser');
|
|||||||
|
|
||||||
function LCS(x, y, options) {
|
function LCS(x, y, options) {
|
||||||
function getPositionOfWords(text, options) {
|
function getPositionOfWords(text, options) {
|
||||||
var exp = new RegExp(/\w+/g);
|
var exp = new RegExp(/[^\s]/g);
|
||||||
var map = {};
|
var map = {};
|
||||||
var match;
|
var match;
|
||||||
var item = 0;
|
var item = 0;
|
||||||
|
|||||||
Reference in New Issue
Block a user