Skip to content

Commit 9f24f06

Browse files
authored
Merge pull request #34 from benjGam/develop
Develop
2 parents 67ea730 + 9b43629 commit 9f24f06

File tree

3 files changed

+15
-5
lines changed

3 files changed

+15
-5
lines changed

CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
# Version 2.5.0 [ON-GOING]
1+
# Version 2.5.4
2+
3+
- `Patch`:
4+
- Paths are patched.
5+
6+
# Version 2.5.0
27

38
- `Added`:
49
- `getFirstCharIndex(string: string): number` method has been implemented.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "string-utils-ts",
3-
"version": "2.5.3",
3+
"version": "2.5.4",
44
"description": "Provide some useful functions for strings",
55
"main": "./lib",
66
"scripts": {

tsconfig.json

+8-3
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,20 @@
88
"allowSyntheticDefaultImports": true,
99
"target": "ES2021",
1010
"sourceMap": true,
11-
"outDir": "./lib",
12-
"baseUrl": "./",
11+
"outDir": "./lib/",
12+
"baseUrl": "./src",
1313
"incremental": true,
1414
"skipLibCheck": true,
1515
"strictNullChecks": false,
1616
"noImplicitAny": false,
1717
"strictBindCallApply": false,
1818
"forceConsistentCasingInFileNames": false,
19-
"noFallthroughCasesInSwitch": false
19+
"noFallthroughCasesInSwitch": false,
20+
"paths": {
21+
"string-utils-ts/case": ["./case/"],
22+
"string-utils-ts/word": ["./word/"]
23+
}
2024
},
25+
"include": ["src/**/*"],
2126
"exclude": ["test/**/*.spec.ts"]
2227
}

0 commit comments

Comments
 (0)