Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 0 additions & 47 deletions .github/workflows/prerelease.yml

This file was deleted.

3 changes: 1 addition & 2 deletions docs/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,7 @@ The [turfjs.org](https://turfjs.org/) website is managed in a [separate repo](ht

## Other Dependencies

- Turf uses [pnpm](https://pnpm.io/) and [lerna](https://lernajs.io/) during the testing, packaging and publishing process.
- Lerna will be automatically installed when you run `pnpm install` in the root directory.
- Turf uses [pnpm](https://pnpm.io/) during the testing, packaging and publishing process.
- Pnpm will need to be installed on your computer, installers are available via the pnpm website. When using [corepack](https://nodejs.org/api/corepack.html), this is automatically installed when running `pnpm`.

## Financial contributions
Expand Down
2 changes: 1 addition & 1 deletion docs/PUBLISHING.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Run the following release commands, replacing `7.0.0` with your version number:
- `git checkout origin/master -b release-7.0.0`

- increment the version number of all packages, and create a local commit, without pushing to origin. This will also create a release tag.
- `pnpm lerna version --no-commit-hooks --no-push 7.0.0`
- `./scripts/version.sh 7.0.0`
Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Perhaps it isn't too late to get pnpm@11 to implement some more changes to the version command, so I filed a ticket over there and maybe we can throw away this version script eventually.

pnpm/pnpm#11348


- Push the release branch and the release tag.
- `git push origin release-7.0.0 --follow-tags`
Expand Down
10 changes: 0 additions & 10 deletions lerna.json

This file was deleted.

5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
"lint:mrl": "mrl check",
"lint:prettier": "prettier --check .",
"preinstall": "npx only-allow pnpm",
"prepare": "husky && lerna run build",
"test": "pnpm run lint && lerna run test && lerna run --scope @turf/turf last-checks"
"prepare": "husky && pnpm -r run build",
"test": "pnpm run lint && pnpm -r run test && pnpm -r --filter '@turf/turf' last-checks"
},
"lint-staged": {
"package.json": [
Expand Down Expand Up @@ -51,7 +51,6 @@
"glob": "^11.1.0",
"globals": "^16.0.0",
"husky": "^9.1.7",
"lerna": "^9.0.3",
"lint-staged": "^15.5.1",
"load-json-file": "^7.0.1",
"meow": "^13.2.0",
Expand Down
1 change: 0 additions & 1 deletion packages/turf/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ test("turf -- invalid dependencies", (t) => {
"tape",
"benchmark",
"glob",
"lerna",
"documentation",
"uglify-js",
]) {
Expand Down
Loading
Loading