diff --git a/README.md b/README.md index d0aed0b..76a566f 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,2 @@ # plugin-typescript -A typescript plugin for db-migrate. +A TypeScript plugin for db-migrate. diff --git a/index.js b/index.js index 2920784..4ba36a8 100644 --- a/index.js +++ b/index.js @@ -6,11 +6,11 @@ module.exports = { 'migrator:migration:hook:require': function() { - // We use ts-node because the official typescript module does not implement the register() method + // We use ts-node because the official TypeScript module does not implement the register() method require('ts-node/register'); /** - * Return value of this hook can be both, pure value or a promise. + * Return value of this hook can be either a pure value or a Promise. */ return { extensions: 'ts' diff --git a/package.json b/package.json index 21da8b7..e0bcd16 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "db-migrate-plugin-typescript", "version": "1.0.1", - "description": "A db-migrate plugin to enable Typescript style migrations.", + "description": "A db-migrate plugin to enable TypeScript style migrations.", "main": "index.js", "dependencies": { "ts-node": "^3.0.2"