Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: weiran-zsd/dts-cli
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.0.0
Choose a base ref
...
head repository: weiran-zsd/dts-cli
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.0.1
Choose a head ref
  • 3 commits
  • 4 files changed
  • 1 contributor

Commits on Apr 14, 2023

  1. fix: update pkg.engines.node (#193)

    node.js<16 should have been dropped in 38fbed3
    aladdin-add authored Apr 14, 2023
    Copy the full SHA
    c2992f8 View commit details

Commits on Apr 17, 2023

  1. Copy the full SHA
    7101095 View commit details
  2. chore: release v2.0.1

    aladdin-add committed Apr 17, 2023
    Copy the full SHA
    eec3c11 View commit details
Showing with 11 additions and 4 deletions.
  1. +7 −0 CHANGELOG.md
  2. +2 −2 package.json
  3. +1 −1 templates/react-with-storybook/example/tsconfig.json
  4. +1 −1 templates/react/example/tsconfig.json
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
### [2.0.1](https://github.com/weiran-zsd/dts-cli/compare/v2.0.0...v2.0.1) (2023-04-17)

### Bug Fixes

- tsconfig create-react-app => vite-react (fixes [#194](https://github.com/weiran-zsd/dts-cli/issues/194)) ([7101095](https://github.com/weiran-zsd/dts-cli/commit/71010957dc3e3d0268e3d179888e498daa7d0ecd))
- update pkg.engines.node ([#193](https://github.com/weiran-zsd/dts-cli/issues/193)) ([c2992f8](https://github.com/weiran-zsd/dts-cli/commit/c2992f883d713cd7e75563ea215ff759b78bb77e))

## [2.0.0](https://github.com/weiran-zsd/dts-cli/compare/v2.0.0-beta.2...v2.0.0) (2023-04-06)

## [2.0.0-beta.2](https://github.com/weiran-zsd/dts-cli/compare/v2.0.0-beta.1...v2.0.0-beta.2) (2023-04-06)
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dts-cli",
"version": "2.0.0",
"version": "2.0.1",
"author": "唯然<weiran.zsd@outlook.com>",
"description": "Zero-config TypeScript package development",
"license": "MIT",
@@ -40,7 +40,7 @@
"conf"
],
"engines": {
"node": "^14.18.0 || >=16.0.0"
"node": "^16.0.0 || >=18.0.0"
},
"dependencies": {
"@babel/core": "^7.20.5",
2 changes: 1 addition & 1 deletion templates/react-with-storybook/example/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"extends": "@tsconfig/create-react-app/tsconfig.json"
"extends": "@tsconfig/vite-react/tsconfig.json"
}
2 changes: 1 addition & 1 deletion templates/react/example/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"extends": "@tsconfig/create-react-app/tsconfig.json"
"extends": "@tsconfig/vite-react/tsconfig.json"
}