Skip to content

Commit 0169599

Browse files
authored
Merge branch 'main' into changesets
2 parents 916782b + af78edc commit 0169599

File tree

3 files changed

+22
-3
lines changed

3 files changed

+22
-3
lines changed

CHANGELOG.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
## [Unreleased]
88
<!-- Add new changes here -->
99

10+
## [17.1.1] 2024-10-31
11+
12+
### Fixed
13+
- Republished with `temp` dependency properly removed (#638, thanks @trivikr for reporting)
14+
15+
## [17.1.0] 2024-10-30
16+
17+
### Added
18+
- `pkg.pr.new` will now be used to build an npm pakage for each commit to the repo, allowing you to more easily test changes or use new features before an official release is cut. (#622, @Aslemammad)
19+
20+
### Changed
21+
- Replaced `temp` library with `tmp` (#633, @r4zendev)
22+
23+
### Fixed
24+
- Removed old `docs` command from `package.json` since the new docs are in the `website` folder, which has instructions in its README.
25+
1026
## [17.0.0] 2024-08-06
1127

1228
We needed to go [from v0.x to a major release](https://github.com/facebook/jscodeshift/issues/593), and it may as well happen now. jscodeshift has been around for nine years though, so going to v1.0.0 didn't feel quite right. I've instead promoted the minor version number to a major version number, similar to what React did when it went from 0.14 to 15.0.
1329

1430
### Fixed
15-
- Node.js 16 is now explicitly specified as the minimum required version. It was *already* (#607, @trivikr)
31+
- Node.js 16 is now explicitly specified as the minimum required version. It was *already* implicitly required due to some dependencies requiring it, but this wasn't explicitly specified until now. (#607, @trivikr)
1632

1733
### Added
1834
- A new [jscodeshift website](https://jscodeshift.com/) has launched, thanks to the team at [Codemod](https://codemod.com/). (#592, @mohab-sameh with some tweaks by @morinokami)

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ This will install the runner as `jscodeshift`.
2727

2828
## Usage (CLI)
2929

30+
See [the website](https://jscodeshift.com/) for full documentation.
31+
3032
The CLI provides the following options:
3133

3234
```

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jscodeshift",
3-
"version": "17.0.0",
3+
"version": "17.1.1",
44
"description": "A toolkit for JavaScript codemods",
55
"repository": {
66
"type": "git",
@@ -9,7 +9,8 @@
99
"bugs": "https://github.com/facebook/jscodeshift/issues",
1010
"main": "index.js",
1111
"scripts": {
12-
"prepare": "cp -R src/ dist/",
12+
"clean": "rm -rf dist/",
13+
"prepare": "yarn clean && cp -R src/ dist/",
1314
"test": "jest --bail",
1415
"release": "changeset publish"
1516
},

0 commit comments

Comments
 (0)