chore(deps): update dependency ts-config-single-spa to v3#340
Open
renovate[bot] wants to merge 1 commit intodevelopfrom
Open
chore(deps): update dependency ts-config-single-spa to v3#340renovate[bot] wants to merge 1 commit intodevelopfrom
renovate[bot] wants to merge 1 commit intodevelopfrom
Conversation
5f97586 to
7320920
Compare
5e5c2e1 to
d0815bf
Compare
d0815bf to
3e22aec
Compare
dd03986 to
441c3ae
Compare
441c3ae to
7d22cf7
Compare
7d22cf7 to
714e2e4
Compare
714e2e4 to
efc0f16
Compare
efc0f16 to
55fb614
Compare
55fb614 to
732d8f5
Compare
732d8f5 to
fdebef8
Compare
fdebef8 to
26fe40c
Compare
f866fd0 to
7196c51
Compare
Contributor
Author
Autoclosing SkippedThis PR has been flagged for autoclosing. However, it is being skipped due to the branch being already modified. Please close/delete it manually or report a bug if you think this is in error. |
7196c51 to
572e6ee
Compare
08c639b to
b88776d
Compare
b88776d to
ee8aa8e
Compare
ee8aa8e to
c6ec5ff
Compare
c6ec5ff to
ac40af2
Compare
ac40af2 to
9239d55
Compare
9239d55 to
ae0eadc
Compare
ae0eadc to
bd90a71
Compare
bd90a71 to
12615d1
Compare
12615d1 to
9a4675d
Compare
9a4675d to
0d31f3e
Compare
96318f0 to
11ae6e5
Compare
11ae6e5 to
6ed29c5
Compare
6ed29c5 to
a4d2d3c
Compare
a4d2d3c to
916a04f
Compare
916a04f to
20b27ae
Compare
20b27ae to
c08e252
Compare
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This PR contains the following updates:
2.0.1→3.0.0Release Notes
single-spa/create-single-spa (ts-config-single-spa)
v3.0.0Compare Source
Major Changes
6ca8cbcThanks @joeldenning! - For typescript projects, automatically emit types duringbuild.Migrating
The create-single-spa api for generating new typescript projects did not change. However, to upgrade existing projects, do the following:
<%= packageManager %>with eithernpm,yarn, orpnpm{ "scripts": { - "build": "webpack --mode=production", + "build": "concurrently <%= packageManager %>:build:*", + "build:webpack": "webpack --mode=production", + "build:types": "tsc" } }<%= mainFile %>with the proper value. This is in the formatorg-project.ts. React projects should have the.tsxfile extension{ "compilerOptions": { + "declarationDir": "dist" }, + "files": ["src/<%= mainFile %>"] - "include": ["src/**/*", "node_modules/@​types"], + "include": ["src/**/*"] }"types"property to your package.json:{ + "types": "dist/<%= mainFile %>.d.ts" }ts-config-single-spato the latest 3.x release, which has new configuration for emitting types.npm run buildornpm run build:typesand verify that a typescript declaration file is outputted to yourdistdirectory. Verify that the output file name is the same as the"types"property in your package.json.Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.