Skip to content

Commit

Permalink
chore(publish): publish new versions
Browse files Browse the repository at this point in the history
 - @codemod/[email protected]
 - @codemod/[email protected]
 - @codemod/[email protected]
 - @codemod/[email protected]
  • Loading branch information
eventualbuddha committed Feb 17, 2023
1 parent 3593893 commit 6ea3adc
Show file tree
Hide file tree
Showing 8 changed files with 45 additions and 11 deletions.
6 changes: 6 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.2.0](https://github.com/codemod-js/codemod/compare/@codemod/[email protected]...@codemod/[email protected]) (2023-02-17)

### Features

- **cli:** add `--parser-plugins` option ([3593893](https://github.com/codemod-js/codemod/commit/3593893791c7e4e0e0c8cea31ea642b229c0bb8a))

## [3.1.0](https://github.com/codemod-js/codemod/compare/@codemod/[email protected]...@codemod/[email protected]) (2021-11-14)

- **feat:** improve gitignore handling ([e04c0c4](https://github.com/codemod-js/codemod/commit/e04c0c41d5cb3d86c6cdbbac932efcad968c73c9))
Expand Down
6 changes: 3 additions & 3 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@codemod/cli",
"version": "3.1.2",
"version": "3.2.0",
"description": "codemod rewrites JavaScript and TypeScript",
"repository": "https://github.com/codemod-js/codemod.git",
"license": "Apache-2.0",
Expand Down Expand Up @@ -32,8 +32,8 @@
"@babel/preset-typescript": "^7.18.6",
"@babel/traverse": "^7.20.13",
"@babel/types": "^7.20.7",
"@codemod/core": "^2.0.1",
"@codemod/parser": "^1.2.1",
"@codemod/core": "^2.1.0",
"@codemod/parser": "^1.3.0",
"core-js": "^3.1.4",
"esbuild": "^0.13.13",
"esbuild-runner": "^2.2.1",
Expand Down
11 changes: 11 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.1.0](https://github.com/codemod-js/codemod/compare/@codemod/[email protected]...@codemod/[email protected]) (2023-02-17)

### Bug Fixes

- update intra-monorepo dependencies ([3c95444](https://github.com/codemod-js/codemod/commit/3c95444e1f57b982634e635931ca08ecf5805e21))

### Features

- **cli,core:** use `esbuild-runner` ([ab527b2](https://github.com/codemod-js/codemod/commit/ab527b2cea23211732ab1a45512dc1f968c707c6))
- **cli:** add `--parser-plugins` option ([3593893](https://github.com/codemod-js/codemod/commit/3593893791c7e4e0e0c8cea31ea642b229c0bb8a))

## [2.0.0](https://github.com/codemod-js/codemod/compare/@codemod/[email protected]...@codemod/[email protected]) (2021-11-12)

- remove underused options: `--printer`, `--babelrc`, `--find-babel-config` ([50a864d](https://github.com/codemod-js/codemod/commit/50a864df7344767a5c0e9e3ab990a0f4d05d634d))
Expand Down
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@codemod/core",
"version": "2.0.1",
"version": "2.1.0",
"description": "Runs babel plugins for codemods, i.e. by preserving formatting using Recast.",
"repository": "https://github.com/codemod-js/codemod",
"license": "Apache-2.0",
Expand All @@ -23,7 +23,7 @@
"dependencies": {
"@babel/core": "^7.20.12",
"@babel/generator": "^7.20.14",
"@codemod/parser": "^1.2.1",
"@codemod/parser": "^1.3.0",
"is-ci-cli": "^2.2.0",
"recast": "^0.19.0",
"resolve": "^1.12.0"
Expand Down
10 changes: 10 additions & 0 deletions packages/matchers/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.3.0](https://github.com/codemod-js/codemod/compare/@codemod/[email protected]...@codemod/[email protected]) (2023-02-17)

### Bug Fixes

- update intra-monorepo dependencies ([3c95444](https://github.com/codemod-js/codemod/commit/3c95444e1f57b982634e635931ca08ecf5805e21))

### Features

- **cli,core:** use `esbuild-runner` ([ab527b2](https://github.com/codemod-js/codemod/commit/ab527b2cea23211732ab1a45512dc1f968c707c6))

## [1.2.0](https://github.com/codemod-js/codemod/compare/@codemod/[email protected]...@codemod/[email protected]) (2021-11-12)

- update babel to v7.16.x ([1218bf9](https://github.com/codemod-js/codemod/commit/1218bf98145feaa8a692611152559aa6b46b9ba0))
Expand Down
8 changes: 4 additions & 4 deletions packages/matchers/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@codemod/matchers",
"version": "1.2.1",
"version": "1.3.0",
"description": "Matchers for JavaScript & TypeScript codemods.",
"repository": "https://github.com/codemod-js/codemod",
"license": "Apache-2.0",
Expand All @@ -27,8 +27,8 @@
"@babel/core": "^7.20.12",
"@babel/generator": "^7.20.14",
"@babel/traverse": "^7.20.13",
"@codemod/core": "^2.0.1",
"@codemod/parser": "^1.2.1",
"@codemod/core": "^2.1.0",
"@codemod/parser": "^1.3.0",
"@types/babel__core": "^7.20.0",
"@types/babel__generator": "^7.6.4",
"@types/babel__template": "^7.4.1",
Expand All @@ -44,4 +44,4 @@
"publishConfig": {
"access": "public"
}
}
}
7 changes: 7 additions & 0 deletions packages/parser/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.3.0](https://github.com/codemod-js/codemod/compare/@codemod/[email protected]...@codemod/[email protected]) (2023-02-17)

### Features

- **cli,core:** use `esbuild-runner` ([ab527b2](https://github.com/codemod-js/codemod/commit/ab527b2cea23211732ab1a45512dc1f968c707c6))
- **cli:** add `--parser-plugins` option ([3593893](https://github.com/codemod-js/codemod/commit/3593893791c7e4e0e0c8cea31ea642b229c0bb8a))

## [1.2.0](https://github.com/codemod-js/codemod/compare/@codemod/[email protected]...@codemod/[email protected]) (2021-11-12)

- update babel to v7.16.x ([1218bf9](https://github.com/codemod-js/codemod/commit/1218bf98145feaa8a692611152559aa6b46b9ba0))
Expand Down
4 changes: 2 additions & 2 deletions packages/parser/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@codemod/parser",
"version": "1.2.1",
"version": "1.3.0",
"description": "Wrapper around @babel/parser that allows parsing everything.",
"repository": "https://github.com/codemod-js/codemod",
"license": "Apache-2.0",
Expand Down Expand Up @@ -32,4 +32,4 @@
"publishConfig": {
"access": "public"
}
}
}

0 comments on commit 6ea3adc

Please sign in to comment.