Skip to content

Commit

Permalink
- Fixed paths inside comments being resolved.
Browse files Browse the repository at this point in the history
- Fixed dependencies having security issues.
- Fixed typings' path in `package.json`
  • Loading branch information
dhkatz committed Dec 30, 2020
1 parent bb10935 commit 4c997c3
Show file tree
Hide file tree
Showing 6 changed files with 3,960 additions and 2,876 deletions.
12 changes: 10 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,15 @@ This file uses change log convention from [Keep a CHANGELOG].

## [Unreleased]

## [1.2.0] - 2020-12-29
### Fixed
- Fixed paths inside comments being resolved.
- Fixed dependencies having security issues.
- Fixed typings' path in `package.json`

## [1.1.0] - 2019-08-23
### Fixed
- Fixed dependency issue and removed unusued dependencies.
- Fixed dependency issue and removed unused dependencies.

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

[unreleased]: https://github.com/dhkatz/gulp-ts-alias/compare/1.0.0...HEAD
[unreleased]: https://github.com/dhkatz/gulp-ts-alias/compare/1.2.0...HEAD
[1.2.0]: https://github.com/dhkatz/gulp-ts-alias/compare/1.1.0...1.2.0
[1.1.0]: https://github.com/dhkatz/gulp-ts-alias/compare/1.0.0...1.1.0
[1.0.0]: https://github.com/dhkatz/gulp-ts-alias/compare/0.2.1...1.0.0
[0.2.1]: https://github.com/dhkatz/gulp-ts-alias/compare/0.2.0...0.2.1
[0.2.0]: https://github.com/dhkatz/gulp-ts-alias/compare/0.1.5...0.2.0
Expand Down
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,14 @@ Resolve TypeScript import aliases and paths defined in `tsconfig`.

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

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

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

**Note:** Currently, multiple imports per line are not supported!
Imports within multiline comments may also be replaced.

## Usage

```javascript
Expand Down Expand Up @@ -47,7 +50,7 @@ The following configuration is common in `tsconfig` configuration files
"rootDir": "./src",
"baseUrl": ".",
"paths": {
"@/*": ["src/*"],
"@/*": ["src/*"]
}
}
```
Expand Down
Loading

0 comments on commit 4c997c3

Please sign in to comment.