@syncular/migrations 0.0.6-228 → 0.0.6-229

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * @syncular/migrations - Versioned migration system
3
3
  *
4
- * Provides migration definition, tracking, and execution.
4
+ * Provides migration definition, tracking, naming, and execution.
5
5
  */
6
6
  export * from './define';
7
7
  export * from './naming';
package/dist/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * @syncular/migrations - Versioned migration system
3
3
  *
4
- * Provides migration definition, tracking, and execution.
4
+ * Provides migration definition, tracking, naming, and execution.
5
5
  */
6
6
  export * from './define.js';
7
7
  export * from './naming.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@syncular/migrations",
3
- "version": "0.0.6-228",
3
+ "version": "0.0.6-229",
4
4
  "description": "Database migration utilities for Syncular",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Benjamin Kniffler",
package/src/index.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * @syncular/migrations - Versioned migration system
3
3
  *
4
- * Provides migration definition, tracking, and execution.
4
+ * Provides migration definition, tracking, naming, and execution.
5
5
  */
6
6
 
7
7
  export * from './define';