Skip to content

Commit 4c997c3

Browse files
committed
- Fixed paths inside comments being resolved.
- Fixed dependencies having security issues. - Fixed typings' path in `package.json`
1 parent bb10935 commit 4c997c3

File tree

6 files changed

+3960
-2876
lines changed

6 files changed

+3960
-2876
lines changed

CHANGELOG.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,15 @@ This file uses change log convention from [Keep a CHANGELOG].
55

66
## [Unreleased]
77

8+
## [1.2.0] - 2020-12-29
9+
### Fixed
10+
- Fixed paths inside comments being resolved.
11+
- Fixed dependencies having security issues.
12+
- Fixed typings' path in `package.json`
13+
814
## [1.1.0] - 2019-08-23
915
### Fixed
10-
- Fixed dependency issue and removed unusued dependencies.
16+
- Fixed dependency issue and removed unused dependencies.
1117

1218
## [1.0.0] - 2019-08-23
1319
### Added
@@ -54,7 +60,9 @@ This file uses change log convention from [Keep a CHANGELOG].
5460
[Keep a CHANGELOG]: http://keepachangelog.com
5561
[Semantic Versioning]: http://semver.org/
5662

57-
[unreleased]: https://github.com/dhkatz/gulp-ts-alias/compare/1.0.0...HEAD
63+
[unreleased]: https://github.com/dhkatz/gulp-ts-alias/compare/1.2.0...HEAD
64+
[1.2.0]: https://github.com/dhkatz/gulp-ts-alias/compare/1.1.0...1.2.0
65+
[1.1.0]: https://github.com/dhkatz/gulp-ts-alias/compare/1.0.0...1.1.0
5866
[1.0.0]: https://github.com/dhkatz/gulp-ts-alias/compare/0.2.1...1.0.0
5967
[0.2.1]: https://github.com/dhkatz/gulp-ts-alias/compare/0.2.0...0.2.1
6068
[0.2.0]: https://github.com/dhkatz/gulp-ts-alias/compare/0.1.5...0.2.0

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,14 @@ Resolve TypeScript import aliases and paths defined in `tsconfig`.
1212

1313
There have been previous attempts at releasing Gulp plugins that accomplish something similar, but all have become unmaintained.
1414

15-
For legacy sake, here is a list of previous packages/scripts that have been considered:
15+
For legacy’s sake, here is a list of previous packages/scripts that have been considered:
1616

1717
[gulp-ts-paths](https://www.npmjs.com/package/gulp-ts-paths)
1818
[path-alias-resolver](https://gist.github.com/azarus/f369ee2ab0283ba0793b0ccf0e9ec590)
1919

20+
**Note:** Currently, multiple imports per line are not supported!
21+
Imports within multiline comments may also be replaced.
22+
2023
## Usage
2124

2225
```javascript
@@ -47,7 +50,7 @@ The following configuration is common in `tsconfig` configuration files
4750
"rootDir": "./src",
4851
"baseUrl": ".",
4952
"paths": {
50-
"@/*": ["src/*"],
53+
"@/*": ["src/*"]
5154
}
5255
}
5356
```

0 commit comments

Comments
 (0)