Skip to content

Commit

Permalink
Merge branch 'release/1.0.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
Marketto committed Dec 1, 2019
2 parents 80186ab + b607a8d commit 3fdb178
Show file tree
Hide file tree
Showing 22 changed files with 118 additions and 146 deletions.
20 changes: 20 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/dist/diacritic-remover.js",
"outFiles": [
"${workspaceFolder}/**/*.js"
]
}
]
}
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@

# *diacritic-remover* changelog
## 1.0.3
* added input char in matcher, insensitiveMatcher and matcherBy outputs
* Changelog moved into CHANGELOG.md
## 1.0.2
* matcherBy Refactoring
## 1.0.1
* matcherBy fix
* type d.ts
* source maps
## 1.0.0
* First version
12 changes: 2 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@

Typescript library to handle and remove diacritics from strings

## [CHANGELOG](CHANGELOG.md)

## INSTALLATION
```{r, engine='bash', global_install}
npm i -s @marketto/diacritic-remover
Expand Down Expand Up @@ -97,16 +99,6 @@ diacriticRemover.insensitiveValidator.A.test('À'); //true
diacriticRemover.matcherBy(/^[au]$/); //áäâàåÄąāãăúûüùůŭųūư
```

## CHANGELOG
### 1.0.2
* matcherBy Refactoring
### 1.0.1
* matcherBy fix
* type d.ts
* source maps
### 1.0.0
* First version

## LICENSE
[MIT License](LICENSE)

Expand Down
18 changes: 2 additions & 16 deletions dist/diacritic-remover.bundle.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/diacritic-remover.bundle.js.map

Large diffs are not rendered by default.

18 changes: 2 additions & 16 deletions dist/diacritic-remover.es.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/diacritic-remover.es.js.map

Large diffs are not rendered by default.

Loading

0 comments on commit 3fdb178

Please sign in to comment.