-
Notifications
You must be signed in to change notification settings - Fork 1k
Speed up development builds and drop tsup #2988
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
smallsaucepan
wants to merge
18
commits into
Turfjs:master
Choose a base branch
from
smallsaucepan:dev-without-build
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
4bc86a0
Minimal changes required to have existing ESM+CJS build process compl…
smallsaucepan 6da37b9
Added rules to monorepolint to generate per package tsconfig.json and…
smallsaucepan cfc3c7d
Split @turf/turf build into build and rollup, and moved rollup to the…
smallsaucepan 8b9b2a4
Auto generated (by mrl) changes to existing tsconfig.json and package…
smallsaucepan 26162d8
Auto generated (by mrl) NEW tsconfig.build.json, tsconfig.types.json,…
smallsaucepan 9892d32
Removed now defunct (I think) seperate build tsconfig and tsup config…
smallsaucepan 636eaf0
Merge branch 'Turfjs:master' into dev-without-build
smallsaucepan 5caa61d
WIP.
smallsaucepan b3f2903
Merge remote-tracking branch 'refs/remotes/origin/dev-without-build' …
smallsaucepan 02a8b4d
Merge branch 'master' into dev-without-build
smallsaucepan 2f579b3
Migrate @turf/buffer to TypeScript, ignoring errors
mfedderly 7c4b76f
Merge remote-tracking branch 'upstream/mf/buffer-ts-basic' into dev-w…
smallsaucepan 7847682
Merge branch 'master' into dev-without-build
smallsaucepan 1ae24d0
Retired tsup for JS generation. Instead using tsc with two configs in…
smallsaucepan c1e9d9f
Being explicit about when we are exporting types. Related to enabling…
smallsaucepan 7ed0c48
Merge branch 'master' into dev-without-build
smallsaucepan c289319
Refactor build targets in normal packages to build (esm only) and pre…
smallsaucepan 5acee45
Work in progress. Utilise eslint and prettier built in caching. Test …
smallsaucepan File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,24 @@ | ||
| { | ||
| "extends": "../../tsconfig.shared.json" | ||
| "extends": "../../tsconfig.shared.json", | ||
| "include": [ | ||
| "index.ts", | ||
| "lib/**/*.ts" | ||
| ], | ||
| "references": [ | ||
| { | ||
| "path": "../turf-bearing" | ||
| }, | ||
| { | ||
| "path": "../turf-destination" | ||
| }, | ||
| { | ||
| "path": "../turf-distance" | ||
| }, | ||
| { | ||
| "path": "../turf-helpers" | ||
| }, | ||
| { | ||
| "path": "../turf-invariant" | ||
| } | ||
| ] | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,30 @@ | ||
| { | ||
| "extends": "../../tsconfig.shared.json" | ||
| "extends": "../../tsconfig.shared.json", | ||
| "include": [ | ||
| "index.ts", | ||
| "lib/**/*.ts" | ||
| ], | ||
| "references": [ | ||
| { | ||
| "path": "../turf-bearing" | ||
| }, | ||
| { | ||
| "path": "../turf-helpers" | ||
| }, | ||
| { | ||
| "path": "../turf-invariant" | ||
| }, | ||
| { | ||
| "path": "../turf-rhumb-bearing" | ||
| }, | ||
| { | ||
| "path": "../turf-distance" | ||
| }, | ||
| { | ||
| "path": "../turf-sector" | ||
| }, | ||
| { | ||
| "path": "../turf-truncate" | ||
| } | ||
| ] | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,15 @@ | ||
| { | ||
| "extends": "../../tsconfig.shared.json" | ||
| "extends": "../../tsconfig.shared.json", | ||
| "include": [ | ||
| "index.ts", | ||
| "lib/**/*.ts" | ||
| ], | ||
| "references": [ | ||
| { | ||
| "path": "../turf-helpers" | ||
| }, | ||
| { | ||
| "path": "../turf-meta" | ||
| } | ||
| ] | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,18 @@ | ||
| { | ||
| "extends": "../../tsconfig.shared.json" | ||
| "extends": "../../tsconfig.shared.json", | ||
| "include": [ | ||
| "index.ts", | ||
| "lib/**/*.ts" | ||
| ], | ||
| "references": [ | ||
| { | ||
| "path": "../turf-helpers" | ||
| }, | ||
| { | ||
| "path": "../turf-invariant" | ||
| }, | ||
| { | ||
| "path": "../turf-bbox" | ||
| } | ||
| ] | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,12 @@ | ||
| { | ||
| "extends": "../../tsconfig.shared.json" | ||
| "extends": "../../tsconfig.shared.json", | ||
| "include": [ | ||
| "index.ts", | ||
| "lib/**/*.ts" | ||
| ], | ||
| "references": [ | ||
| { | ||
| "path": "../turf-helpers" | ||
| } | ||
| ] | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,15 @@ | ||
| { | ||
| "extends": "../../tsconfig.shared.json" | ||
| "extends": "../../tsconfig.shared.json", | ||
| "include": [ | ||
| "index.ts", | ||
| "lib/**/*.ts" | ||
| ], | ||
| "references": [ | ||
| { | ||
| "path": "../turf-helpers" | ||
| }, | ||
| { | ||
| "path": "../turf-meta" | ||
| } | ||
| ] | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,18 @@ | ||
| { | ||
| "extends": "../../tsconfig.shared.json" | ||
| "extends": "../../tsconfig.shared.json", | ||
| "include": [ | ||
| "index.ts", | ||
| "lib/**/*.ts" | ||
| ], | ||
| "references": [ | ||
| { | ||
| "path": "../turf-helpers" | ||
| }, | ||
| { | ||
| "path": "../turf-invariant" | ||
| }, | ||
| { | ||
| "path": "../turf-destination" | ||
| } | ||
| ] | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,15 @@ | ||
| { | ||
| "extends": "../../tsconfig.shared.json" | ||
| "extends": "../../tsconfig.shared.json", | ||
| "include": [ | ||
| "index.ts", | ||
| "lib/**/*.ts" | ||
| ], | ||
| "references": [ | ||
| { | ||
| "path": "../turf-helpers" | ||
| }, | ||
| { | ||
| "path": "../turf-invariant" | ||
| } | ||
| ] | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,15 @@ | ||
| { | ||
| "extends": "../../tsconfig.shared.json" | ||
| "extends": "../../tsconfig.shared.json", | ||
| "include": [ | ||
| "index.ts", | ||
| "lib/**/*.ts" | ||
| ], | ||
| "references": [ | ||
| { | ||
| "path": "../turf-helpers" | ||
| }, | ||
| { | ||
| "path": "../turf-invariant" | ||
| } | ||
| ] | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,15 @@ | ||
| { | ||
| "extends": "../../tsconfig.shared.json" | ||
| "extends": "../../tsconfig.shared.json", | ||
| "include": [ | ||
| "index.ts", | ||
| "lib/**/*.ts" | ||
| ], | ||
| "references": [ | ||
| { | ||
| "path": "../turf-helpers" | ||
| }, | ||
| { | ||
| "path": "../turf-invariant" | ||
| } | ||
| ] | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,27 @@ | ||
| { | ||
| "extends": "../../tsconfig.shared.json" | ||
| "extends": "../../tsconfig.shared.json", | ||
| "include": [ | ||
| "index.ts", | ||
| "lib/**/*.ts" | ||
| ], | ||
| "references": [ | ||
| { | ||
| "path": "../turf-bbox" | ||
| }, | ||
| { | ||
| "path": "../turf-boolean-point-in-polygon" | ||
| }, | ||
| { | ||
| "path": "../turf-boolean-point-on-line" | ||
| }, | ||
| { | ||
| "path": "../turf-helpers" | ||
| }, | ||
| { | ||
| "path": "../turf-invariant" | ||
| }, | ||
| { | ||
| "path": "../turf-line-split" | ||
| } | ||
| ] | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,27 @@ | ||
| { | ||
| "extends": "../../tsconfig.shared.json" | ||
| "extends": "../../tsconfig.shared.json", | ||
| "include": [ | ||
| "index.ts", | ||
| "lib/**/*.ts" | ||
| ], | ||
| "references": [ | ||
| { | ||
| "path": "../turf-boolean-equal" | ||
| }, | ||
| { | ||
| "path": "../turf-boolean-point-in-polygon" | ||
| }, | ||
| { | ||
| "path": "../turf-helpers" | ||
| }, | ||
| { | ||
| "path": "../turf-invariant" | ||
| }, | ||
| { | ||
| "path": "../turf-line-intersect" | ||
| }, | ||
| { | ||
| "path": "../turf-polygon-to-line" | ||
| } | ||
| ] | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,24 @@ | ||
| { | ||
| "extends": "../../tsconfig.shared.json" | ||
| "extends": "../../tsconfig.shared.json", | ||
| "include": [ | ||
| "index.ts", | ||
| "lib/**/*.ts" | ||
| ], | ||
| "references": [ | ||
| { | ||
| "path": "../turf-boolean-point-in-polygon" | ||
| }, | ||
| { | ||
| "path": "../turf-helpers" | ||
| }, | ||
| { | ||
| "path": "../turf-line-intersect" | ||
| }, | ||
| { | ||
| "path": "../turf-meta" | ||
| }, | ||
| { | ||
| "path": "../turf-polygon-to-line" | ||
| } | ||
| ] | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,18 @@ | ||
| { | ||
| "extends": "../../tsconfig.shared.json" | ||
| "extends": "../../tsconfig.shared.json", | ||
| "include": [ | ||
| "index.ts", | ||
| "lib/**/*.ts" | ||
| ], | ||
| "references": [ | ||
| { | ||
| "path": "../turf-clean-coords" | ||
| }, | ||
| { | ||
| "path": "../turf-helpers" | ||
| }, | ||
| { | ||
| "path": "../turf-invariant" | ||
| } | ||
| ] | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,18 @@ | ||
| { | ||
| "extends": "../../tsconfig.shared.json" | ||
| "extends": "../../tsconfig.shared.json", | ||
| "include": [ | ||
| "index.ts", | ||
| "lib/**/*.ts" | ||
| ], | ||
| "references": [ | ||
| { | ||
| "path": "../turf-boolean-disjoint" | ||
| }, | ||
| { | ||
| "path": "../turf-helpers" | ||
| }, | ||
| { | ||
| "path": "../turf-meta" | ||
| } | ||
| ] | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,24 @@ | ||
| { | ||
| "extends": "../../tsconfig.shared.json" | ||
| "extends": "../../tsconfig.shared.json", | ||
| "include": [ | ||
| "index.ts", | ||
| "lib/**/*.ts" | ||
| ], | ||
| "references": [ | ||
| { | ||
| "path": "../turf-helpers" | ||
| }, | ||
| { | ||
| "path": "../turf-invariant" | ||
| }, | ||
| { | ||
| "path": "../turf-line-intersect" | ||
| }, | ||
| { | ||
| "path": "../turf-line-overlap" | ||
| }, | ||
| { | ||
| "path": "../turf-meta" | ||
| } | ||
| ] | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,21 @@ | ||
| { | ||
| "extends": "../../tsconfig.shared.json" | ||
| "extends": "../../tsconfig.shared.json", | ||
| "include": [ | ||
| "index.ts", | ||
| "lib/**/*.ts" | ||
| ], | ||
| "references": [ | ||
| { | ||
| "path": "../turf-clean-coords" | ||
| }, | ||
| { | ||
| "path": "../turf-helpers" | ||
| }, | ||
| { | ||
| "path": "../turf-line-segment" | ||
| }, | ||
| { | ||
| "path": "../turf-rhumb-bearing" | ||
| } | ||
| ] | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,15 @@ | ||
| { | ||
| "extends": "../../tsconfig.shared.json" | ||
| "extends": "../../tsconfig.shared.json", | ||
| "include": [ | ||
| "index.ts", | ||
| "lib/**/*.ts" | ||
| ], | ||
| "references": [ | ||
| { | ||
| "path": "../turf-helpers" | ||
| }, | ||
| { | ||
| "path": "../turf-invariant" | ||
| } | ||
| ] | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this can just be moved into tsconfig.shared.json like so:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will give it a try.