diff --git a/.changeset/few-dryers-remain.md b/.changeset/few-dryers-remain.md deleted file mode 100644 index 33e8d78..0000000 --- a/.changeset/few-dryers-remain.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@emigrate/plugin-generate-js': minor ---- - -First version. A simple JavaScript migration file generator. diff --git a/.changeset/gold-squids-drive.md b/.changeset/gold-squids-drive.md deleted file mode 100644 index 08f9e69..0000000 --- a/.changeset/gold-squids-drive.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'emigrate': minor ---- - -Add template support for the "new" migration command diff --git a/.changeset/new-rules-hunt.md b/.changeset/new-rules-hunt.md deleted file mode 100644 index 6f75d97..0000000 --- a/.changeset/new-rules-hunt.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@emigrate/tsconfig': major ---- - -First release and it's considered stable as it has been in use in other projects for a while. diff --git a/.changeset/nine-mugs-prove.md b/.changeset/nine-mugs-prove.md deleted file mode 100644 index 50e4043..0000000 --- a/.changeset/nine-mugs-prove.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'emigrate': minor ---- - -Automatically prefix plugin names when loading them if necessary. I.e. when specifying only "--plugin generate-js" Emigrate will load the @emigrate/plugin-generate-js plugin. It has a priority order that is: 1. the provided plugin name as is, 2. the name prefixed with "@emigrate/plugin-", 3. the name prefixed with "emigrate-plugin-" diff --git a/.changeset/proud-ducks-refuse.md b/.changeset/proud-ducks-refuse.md deleted file mode 100644 index 180281e..0000000 --- a/.changeset/proud-ducks-refuse.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@emigrate/plugin-tools': minor ---- - -First version of the @emigrate/plugin-tools package which contains some nice to have utilities when building and using Emigrate plugins diff --git a/.changeset/tall-zebras-march.md b/.changeset/tall-zebras-march.md deleted file mode 100644 index f1535ff..0000000 --- a/.changeset/tall-zebras-march.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@emigrate/plugin-tools': minor ---- - -Use import-from-esm to resolve plugins relative to the current working directory and add a convenient plugin loader helper (loadPlugin) diff --git a/.changeset/weak-avocados-lay.md b/.changeset/weak-avocados-lay.md deleted file mode 100644 index 625bf20..0000000 --- a/.changeset/weak-avocados-lay.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@emigrate/plugin-tools': patch ---- - -Remove double and trailing underscores in sanitized filenames and lower case the result for consistent filenames diff --git a/packages/emigrate/CHANGELOG.md b/packages/emigrate/CHANGELOG.md new file mode 100644 index 0000000..45f7a2e --- /dev/null +++ b/packages/emigrate/CHANGELOG.md @@ -0,0 +1,15 @@ +# emigrate + +## 0.1.0 + +### Minor Changes + +- ca3ab9e: Add template support for the "new" migration command +- 9c239e0: Automatically prefix plugin names when loading them if necessary. I.e. when specifying only "--plugin generate-js" Emigrate will load the @emigrate/plugin-generate-js plugin. It has a priority order that is: 1. the provided plugin name as is, 2. the name prefixed with "@emigrate/plugin-", 3. the name prefixed with "emigrate-plugin-" + +### Patch Changes + +- Updated dependencies [cdafd05] +- Updated dependencies [9c239e0] +- Updated dependencies [1634094] + - @emigrate/plugin-tools@0.1.0 diff --git a/packages/emigrate/package.json b/packages/emigrate/package.json index 208ffbf..45aaad5 100644 --- a/packages/emigrate/package.json +++ b/packages/emigrate/package.json @@ -1,6 +1,6 @@ { "name": "emigrate", - "version": "0.0.0", + "version": "0.1.0", "publishConfig": { "access": "public" }, diff --git a/packages/plugin-generate-js/CHANGELOG.md b/packages/plugin-generate-js/CHANGELOG.md new file mode 100644 index 0000000..d608b12 --- /dev/null +++ b/packages/plugin-generate-js/CHANGELOG.md @@ -0,0 +1,14 @@ +# @emigrate/plugin-generate-js + +## 0.1.0 + +### Minor Changes + +- ce4693d: First version. A simple JavaScript migration file generator. + +### Patch Changes + +- Updated dependencies [cdafd05] +- Updated dependencies [9c239e0] +- Updated dependencies [1634094] + - @emigrate/plugin-tools@0.1.0 diff --git a/packages/plugin-generate-js/package.json b/packages/plugin-generate-js/package.json index 13b364a..ef0a90d 100644 --- a/packages/plugin-generate-js/package.json +++ b/packages/plugin-generate-js/package.json @@ -1,6 +1,6 @@ { "name": "@emigrate/plugin-generate-js", - "version": "0.0.0", + "version": "0.1.0", "publishConfig": { "access": "public" }, diff --git a/packages/plugin-tools/CHANGELOG.md b/packages/plugin-tools/CHANGELOG.md new file mode 100644 index 0000000..ffc3117 --- /dev/null +++ b/packages/plugin-tools/CHANGELOG.md @@ -0,0 +1,12 @@ +# @emigrate/plugin-tools + +## 0.1.0 + +### Minor Changes + +- cdafd05: First version of the @emigrate/plugin-tools package which contains some nice to have utilities when building and using Emigrate plugins +- 9c239e0: Use import-from-esm to resolve plugins relative to the current working directory and add a convenient plugin loader helper (loadPlugin) + +### Patch Changes + +- 1634094: Remove double and trailing underscores in sanitized filenames and lower case the result for consistent filenames diff --git a/packages/plugin-tools/package.json b/packages/plugin-tools/package.json index 3111d5a..3e0b59b 100644 --- a/packages/plugin-tools/package.json +++ b/packages/plugin-tools/package.json @@ -1,6 +1,6 @@ { "name": "@emigrate/plugin-tools", - "version": "0.0.0", + "version": "0.1.0", "publishConfig": { "access": "public" }, diff --git a/packages/tsconfig/CHANGELOG.md b/packages/tsconfig/CHANGELOG.md new file mode 100644 index 0000000..1a6979f --- /dev/null +++ b/packages/tsconfig/CHANGELOG.md @@ -0,0 +1,7 @@ +# @emigrate/tsconfig + +## 1.0.0 + +### Major Changes + +- 5978020: First release and it's considered stable as it has been in use in other projects for a while. diff --git a/packages/tsconfig/package.json b/packages/tsconfig/package.json index 25a53b6..0587c9f 100644 --- a/packages/tsconfig/package.json +++ b/packages/tsconfig/package.json @@ -1,6 +1,6 @@ { "name": "@emigrate/tsconfig", - "version": "0.0.0", + "version": "1.0.0", "publishConfig": { "access": "public" },