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

chore(deps): update dependency ts-config-single-spa to v3 #340

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 6, 2022

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
ts-config-single-spa (source) 2.0.1 -> 3.0.0 age adoption passing confidence

Release Notes

single-spa/create-single-spa (ts-config-single-spa)

v3.0.0

Compare Source

Major Changes
Migrating

The create-single-spa api for generating new typescript projects did not change. However, to upgrade existing projects, do the following:

  1. Update your package.json. Make sure to replace <%= packageManager %> with either npm, yarn, or pnpm
{
  "scripts": {
-     "build": "webpack --mode=production",
+     "build": "concurrently <%= packageManager %>:build:*",
+     "build:webpack": "webpack --mode=production",
+     "build:types": "tsc"
  }
}
  1. Update your tsconfig.json. Make sure to replace <%= mainFile %> with the proper value. This is in the format org-project.ts. React projects should have the .tsx file extension
{
  "compilerOptions": {
+     "declarationDir": "dist"
  },
+   "files": ["src/<%= mainFile %>"]
-   "include": ["src/**/*", "node_modules/@&#8203;types"],
+   "include": ["src/**/*"]
}
  1. Add the "types" property to your package.json:
{
+  "types": "dist/<%= mainFile %>.d.ts"
}
  1. Upgrade ts-config-single-spa to the latest 3.x release, which has new configuration for emitting types.
npm install --save-dev ts-config-single-spa@^3.0.0

pnpm install --save-dev ts-config-single-spa@^3.0.0

yarn add --dev ts-config-single-spa@^3.0.0
  1. Now run npm run build or npm run build:types and verify that a typescript declaration file is outputted to your dist directory. 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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/ts-config-single-spa-3.x branch 3 times, most recently from 5f97586 to 7320920 Compare March 9, 2022 01:39
@renovate renovate bot force-pushed the renovate/ts-config-single-spa-3.x branch 4 times, most recently from 5e5c2e1 to d0815bf Compare April 1, 2022 20:45
@renovate renovate bot force-pushed the renovate/ts-config-single-spa-3.x branch from d0815bf to 3e22aec Compare April 13, 2022 14:55
@renovate renovate bot force-pushed the renovate/ts-config-single-spa-3.x branch 2 times, most recently from dd03986 to 441c3ae Compare May 2, 2022 18:37
@renovate renovate bot force-pushed the renovate/ts-config-single-spa-3.x branch from 441c3ae to 7d22cf7 Compare May 30, 2022 16:10
@renovate renovate bot force-pushed the renovate/ts-config-single-spa-3.x branch from 7d22cf7 to 714e2e4 Compare June 8, 2022 16:29
@renovate renovate bot force-pushed the renovate/ts-config-single-spa-3.x branch from 714e2e4 to efc0f16 Compare September 27, 2022 21:12
@renovate renovate bot changed the title chore(deps): update dependency ts-config-single-spa to v3 Update dependency ts-config-single-spa to v3 Dec 17, 2022
@renovate renovate bot changed the title Update dependency ts-config-single-spa to v3 chore(deps): update dependency ts-config-single-spa to v3 Dec 17, 2022
@renovate renovate bot force-pushed the renovate/ts-config-single-spa-3.x branch from efc0f16 to 55fb614 Compare March 18, 2023 20:07
@renovate renovate bot force-pushed the renovate/ts-config-single-spa-3.x branch from 55fb614 to 732d8f5 Compare May 5, 2023 14:27
@renovate renovate bot force-pushed the renovate/ts-config-single-spa-3.x branch from 732d8f5 to fdebef8 Compare May 25, 2023 15:04
@renovate renovate bot force-pushed the renovate/ts-config-single-spa-3.x branch from fdebef8 to 26fe40c Compare September 12, 2023 13:48
@renovate renovate bot force-pushed the renovate/ts-config-single-spa-3.x branch 2 times, most recently from 012e1cc to f866fd0 Compare November 16, 2023 17:23
@renovate renovate bot force-pushed the renovate/ts-config-single-spa-3.x branch from f866fd0 to 7196c51 Compare November 17, 2023 11:11
@renovate renovate bot changed the title chore(deps): update dependency ts-config-single-spa to v3 chore(deps): update dependency ts-config-single-spa to v3 - abandoned Dec 8, 2024
Copy link
Contributor Author

renovate bot commented Dec 8, 2024

Autoclosing Skipped

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

@renovate renovate bot changed the title chore(deps): update dependency ts-config-single-spa to v3 - abandoned chore(deps): update dependency ts-config-single-spa to v3 Dec 8, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants