File tree 6 files changed +3960
-2876
lines changed
6 files changed +3960
-2876
lines changed Original file line number Diff line number Diff line change @@ -5,9 +5,15 @@ This file uses change log convention from [Keep a CHANGELOG].
5
5
6
6
## [ Unreleased]
7
7
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
+
8
14
## [ 1.1.0] - 2019-08-23
9
15
### Fixed
10
- - Fixed dependency issue and removed unusued dependencies.
16
+ - Fixed dependency issue and removed unused dependencies.
11
17
12
18
## [ 1.0.0] - 2019-08-23
13
19
### Added
@@ -54,7 +60,9 @@ This file uses change log convention from [Keep a CHANGELOG].
54
60
[ Keep a CHANGELOG ] : http://keepachangelog.com
55
61
[ Semantic Versioning ] : http://semver.org/
56
62
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
58
66
[ 1.0.0 ] : https://github.com/dhkatz/gulp-ts-alias/compare/0.2.1...1.0.0
59
67
[ 0.2.1 ] : https://github.com/dhkatz/gulp-ts-alias/compare/0.2.0...0.2.1
60
68
[ 0.2.0 ] : https://github.com/dhkatz/gulp-ts-alias/compare/0.1.5...0.2.0
Original file line number Diff line number Diff line change @@ -12,11 +12,14 @@ Resolve TypeScript import aliases and paths defined in `tsconfig`.
12
12
13
13
There have been previous attempts at releasing Gulp plugins that accomplish something similar, but all have become unmaintained.
14
14
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:
16
16
17
17
[ gulp-ts-paths] ( https://www.npmjs.com/package/gulp-ts-paths )
18
18
[ path-alias-resolver] ( https://gist.github.com/azarus/f369ee2ab0283ba0793b0ccf0e9ec590 )
19
19
20
+ ** Note:** Currently, multiple imports per line are not supported!
21
+ Imports within multiline comments may also be replaced.
22
+
20
23
## Usage
21
24
22
25
``` javascript
@@ -47,7 +50,7 @@ The following configuration is common in `tsconfig` configuration files
47
50
"rootDir" : " ./src" ,
48
51
"baseUrl" : " ." ,
49
52
"paths" : {
50
- "@/*" : [" src/*" ],
53
+ "@/*" : [" src/*" ]
51
54
}
52
55
}
53
56
```
You can’t perform that action at this time.
0 commit comments