Skip to content

Commit ec735a0

Browse files
Merge pull request #70 from CodeshiftCommunity/changeset-release/main
2 parents ad94808 + d401a61 commit ec735a0

File tree

9 files changed

+34
-20
lines changed

9 files changed

+34
-20
lines changed

.changeset/grumpy-swans-think.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/silly-icons-whisper.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/slimy-foxes-train.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/cli/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @codeshift/cli
22

3+
## 0.6.0
4+
5+
### Minor Changes
6+
7+
- 30bf0cf: Codemods can now be sourced from standalone npm packages such as react as long as they provide a codeshift.config.js. This allows for greater flexibility for where codemods may be distributed
8+
9+
### Patch Changes
10+
11+
- Updated dependencies [30bf0cf]
12+
- @codeshift/validator@0.2.0
13+
314
## 0.5.0
415

516
### Minor Changes

packages/cli/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@codeshift/cli",
3-
"version": "0.5.0",
3+
"version": "0.6.0",
44
"main": "dist/codeshift-cli.cjs.js",
55
"module": "dist/codeshift-cli.esm.js",
66
"types": "dist/codeshift-cli.cjs.d.ts",
@@ -16,7 +16,7 @@
1616
},
1717
"dependencies": {
1818
"@codeshift/initializer": "0.1.3",
19-
"@codeshift/validator": "0.1.1",
19+
"@codeshift/validator": "0.2.0",
2020
"chalk": "^4.1.0",
2121
"commander": "^8.2.0",
2222
"fs-extra": "^9.1.0",

packages/types/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# @codeshift/types
2+
3+
## 0.0.2
4+
### Patch Changes
5+
6+
- 30bf0cf: Initial release

packages/types/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@codeshift/types",
3-
"version": "0.0.1",
3+
"version": "0.0.2",
44
"main": "dist/codeshift-types.cjs.js",
55
"module": "dist/codeshift-types.esm.js",
66
"types": "dist/codeshift-types.cjs.d.ts",

packages/validator/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
# @codeshift/validator
22

3+
## 0.2.0
4+
5+
### Minor Changes
6+
7+
- 30bf0cf: Fundamentally simplifies and improves on how validation works.
8+
9+
### Patch Changes
10+
11+
- Updated dependencies [30bf0cf]
12+
- @codeshift/types@0.0.2
13+
314
## 0.1.1
15+
416
### Patch Changes
517

618
- a78ad25: Update package configuration and refactors repo scripts

packages/validator/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"name": "@codeshift/validator",
3-
"version": "0.1.1",
3+
"version": "0.2.0",
44
"main": "dist/codeshift-validator.cjs.js",
55
"types": "dist/codeshift-validator.cjs.d.ts",
66
"license": "MIT",
77
"repository": "https://github.com/CodeshiftCommunity/CodeshiftCommunity/tree/master/packages/validator",
88
"dependencies": {
9-
"@codeshift/types": "^0.0.1",
9+
"@codeshift/types": "^0.0.2",
1010
"fs-extra": "^9.1.0",
1111
"lodash": "^4.17.21",
1212
"recast": "^0.20.4",

0 commit comments

Comments
 (0)