Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ world once again even better!

2.2. "Does not work", is not a proper problem description

Neither is, "see title". When you follow the issue template and provide all informations asked for
Neither is, "see title". When you follow the issue template and provide all information asked for
you should be pretty fine, in providing us exactly the information we need to help you.

2.3. Follow the CoC and contribute, not attack
Expand Down Expand Up @@ -57,7 +57,7 @@ this project:
6. Create a commit that complies with our conventions, which you can view
[here](https://github.com/conventional-changelog/conventional-changelog/tree/35e60b5be6027fb2784c5103eee111f6f99b045e/packages/conventional-changelog-angular)
and last but not least also comply to the [DCO](https://github.com/probot/dco#how-it-works).
Which easiest work with just commiting via `git commit -s -m 'your commit message'`.
Which easiest work with just committing via `git commit -s -m 'your commit message'`.

7. Push to your fork and submit a pull request.

Expand Down
2 changes: 1 addition & 1 deletion api.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ function dbmigrate (plugins, isModule, options, callback) {
dbmigrate.prototype = {
/**
* Add a global defined variable to db-migrate, to enable access from
* local migrations without configuring pathes.
* local migrations without configuring paths.
*
* @return boolean
*/
Expand Down
2 changes: 1 addition & 1 deletion lib/driver/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ exports.connect = function (config, intern, callback) {

if (config.driver === undefined) {
throw new Error(
'config must include a driver key specifing which driver to use'
'config must include a driver key specifying which driver to use'
);
}

Expand Down
4 changes: 2 additions & 2 deletions lib/executors/versioned/v2.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const execUnit = {
chain.transferInt();

log.error(
'An error occured. No alternative failure strategy defined. Rolling back!',
'An error occurred. No alternative failure strategy defined. Rolling back!',
err
);
await execUnit.down(context, driver, file, { abort: true });
Expand Down Expand Up @@ -95,7 +95,7 @@ const execUnit = {
chain.transferInt();

log.error(
'An error occured. No alternative failure strategy defined. Rolling back!',
'An error occurred. No alternative failure strategy defined. Rolling back!',
err
);
await execUnit.down(context, driver, file);
Expand Down
2 changes: 1 addition & 1 deletion lib/interface/seederInterface.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
* To note: If you rollback a migration, linked to a seeder, db-migrate will
* also rollback the seed. This is also a reason why you can't rollback a
* specific migration, you would going to break that much, you probably loose
* a bunch of valueable time.
* a bunch of valuable time.
*/

var Promise = require('bluebird');
Expand Down
2 changes: 1 addition & 1 deletion lib/walker.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const Walker = function (driver, directory, mode, intern, prefix, opts = {}) {
* i: index
* c: schema
* f: foreignKey
* e: extra items for the schema (like ENUM tyes)
* e: extra items for the schema (like ENUM types)
*/
this.internals.schema = { i: {}, c: {}, f: {}, e: {} };
/**
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
"seeds",
"seeder",
"migrator",
"programatic",
"programable",
"programmatic",
"programmable",
"api"
],
"version": "1.0.0-beta.35",
Expand Down
2 changes: 1 addition & 1 deletion test/integration/api_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ lab.experiment('api', function () {
}

/**
* Create a migration with the programatic API and overwrite process.exit.
* Create a migration with the programmatic API and overwrite process.exit.
*/
function overwriteExit () {
process.exit = function (err) {
Expand Down