Skip to content
This repository has been archived by the owner on Dec 28, 2021. It is now read-only.

Releases: KingDarBoja/serverless-plugin-typescript

1.4.1 (2020-07-25)

25 Jul 19:11
Compare
Choose a tag to compare

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 and package.include on serverless instance instead of the service.
  • Improve type definitions, which also installs @types/serverless as devDependency.

1.4.0 (2020-07-19)

19 Jul 19:20
Compare
Choose a tag to compare

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 to tsconfig.json.

Refactor

  • Rename typescript to utils.
  • 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)

09 May 20:48
Compare
Choose a tag to compare

Features

  • CLI Option tsconfigFilePath (Thanks JeremiGendron)

Refactor

  • Rename serverlessTypes TS file to types (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)

25 Mar 22:50
Compare
Choose a tag to compare

Bug Fixes

  • Replace broken recursive delete function #6 (Thanks NoxHarmonium 🥇 )

Chore

  • Prettier v2

1.2.0 (2020-02-24)

25 Feb 02:43
Compare
Choose a tag to compare

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.