Skip to content
Merged
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
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`

- 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.

41 changes: 0 additions & 41 deletions nx.json

This file was deleted.

3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"lint:mrl": "mrl check",
"lint:prettier": "prettier --cache --check .",
"prepare": "husky && pnpm --filter @turf/turf build",
"test": "pnpm run lint && lerna run test && lerna run --scope @turf/turf last-checks",
"test": "pnpm run lint && pnpm -r run test && pnpm -r --filter '@turf/turf' last-checks",
"watch": "pnpm --filter @turf/turf watch"
},
"lint-staged": {
Expand Down Expand Up @@ -46,7 +46,6 @@
"glob": "^13.0.6",
"globals": "^17.9.0",
"husky": "^9.1.7",
"lerna": "^10.0.0",
"lint-staged": "^15.5.2",
"load-json-file": "^7.0.1",
"meow": "^14.1.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