Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: motss/normalize-diacritics
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v5.0.0
Choose a base ref
...
head repository: motss/normalize-diacritics
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 3 commits
  • 6 files changed
  • 1 contributor

Commits on Apr 14, 2024

  1. ci: bump nodejs version in publish.yml

    Signed-off-by: Rong Sen Ng (motss) <[email protected]>
    motss committed Apr 14, 2024
    Copy the full SHA
    ea29903 View commit details
  2. chore(release): 5.0.1 🎉

    motss committed Apr 14, 2024
    Copy the full SHA
    c6afad1 View commit details
  3. build: add skipLibCheck=true in tsconfig.json

    Signed-off-by: Rong Sen Ng (motss) <[email protected]>
    motss committed Apr 14, 2024
    Copy the full SHA
    adbd789 View commit details
Showing with 34 additions and 15 deletions.
  1. +1 −1 .github/workflows/publish.yml
  2. +15 −11 CHANGELOG.md
  3. +14 −0 FULL_CHANGELOG.md
  4. +2 −2 package-lock.json
  5. +1 −1 package.json
  6. +1 −0 tsconfig.json
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -23,7 +23,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
target: [18.x]
target: [20.x]

steps:
- name: Checkout
26 changes: 15 additions & 11 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file. See [standa



## [5.0.1](https://github.com/motss/normalize-diacritics/compare/5.1.0...5.0.1) (2024-04-14)




# [5.1.0](https://github.com/motss/normalize-diacritics/compare/v5.0.0...5.1.0) (2024-04-14)


### ci

* bump nodejs version in publish.yml ([ea29903](https://github.com/motss/normalize-diacritics/commit/ea2990390d0f8a6e92144a927feb29f80c30ead9))



# [5.0.0](https://github.com/motss/normalize-diacritics/compare/v4.0.3...v5.0.0) (2024-04-14)


@@ -424,14 +438,4 @@ All notable changes to this project will be documented in this file. See [standa



## [0.4.3](https://github.com/motss/normalize-diacritics/compare/v0.4.2...v0.4.3) (2017-12-17)




## [0.4.2](https://github.com/motss/normalize-diacritics/compare/v0.4.1...v0.4.2) (2017-12-17)




## [0.4.1](https://github.com/motss/normalize-diacritics/compare/v0.4.0...v0.4.1) (2017-12-06)
## [0.4.3](https://github.com/motss/normalize-diacritics/compare/v0.4.2...v0.4.3) (2017-12-17)
14 changes: 14 additions & 0 deletions FULL_CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file. See [standa



## [5.0.1](https://github.com/motss/normalize-diacritics/compare/5.1.0...5.0.1) (2024-04-14)




# [5.1.0](https://github.com/motss/normalize-diacritics/compare/v5.0.0...5.1.0) (2024-04-14)


### ci

* bump nodejs version in publish.yml ([ea29903](https://github.com/motss/normalize-diacritics/commit/ea2990390d0f8a6e92144a927feb29f80c30ead9))



# [5.0.0](https://github.com/motss/normalize-diacritics/compare/v4.0.3...v5.0.0) (2024-04-14)


4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "normalize-diacritics",
"version": "5.0.0",
"version": "5.0.1",
"description": "Remove accents/ diacritics in string",
"keywords": [
"diacritic",
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -3,6 +3,7 @@
"compilerOptions": {
"declarationDir": "dist",
"ignoreDeprecations": "5.0",
"skipLibCheck": true,
"outDir": "dist",
"rootDir": "src"
},