This repository has been archived by the owner on Dec 28, 2021. It is now read-only.
Releases: KingDarBoja/serverless-plugin-typescript
Releases · KingDarBoja/serverless-plugin-typescript
1.4.1 (2020-07-25)
This release provides a minor fix that I didn't noticed on previous release (that's why I need more test cases!).
BugFix
- Remove original service path check, which fixes #12
Refactor
- Check for
package.artifact
andpackage.include
on serverless instance instead of the service. - Improve type definitions, which also installs
@types/serverless
as devDependency.
1.4.0 (2020-07-19)
BugFix
- Safe checks for undefined properties on project files. If the prop doesn't exist, either throw Error or skip its logic.
tsconfigFilePath
is now optional. If not provided, defaults totsconfig.json
.
Refactor
- Rename
typescript
toutils
. - Renaming
tests
to__tests__
to match Jest standard.
Chore
- Simplify ESLint rules.
- Provide better type checks with a new
tsconfig.json
- Update all dependencies to latest version.
1.3.0 (2020-05-09)
Features
- CLI Option tsconfigFilePath (Thanks JeremiGendron)
Refactor
- Rename
serverlessTypes
TS file totypes
(JeremiGendron) - Move
watchFiles
TS file into private method of index main class. (JeremiGendron)
Chore
- Update TypeScript to 3.8.3
1.2.1 (2020-03-25)
1.2.0 (2020-02-24)
Bug fixes
- Only process functions if runtime is Node (Thanks NoxHarmonium and John Reeves 🥇 )
- Add option to dereference symlinks (Thanks willmcclellan 🥇 )
- Recursive dir deletion using fs-extra. Should fix permission issue.
Features
- Pass custom tsconfig on
serverless.yml
(Thanks Knaackee 🏅 )
Chore
- Migrate from TSLint to ESLint.
- Update Typescript version to 3.6.4.
- Update all dependencies to latest version.