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: qmhc/vite-plugin-dts
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.1.0
Choose a base ref
...
head repository: qmhc/vite-plugin-dts
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.1.1
Choose a head ref
  • 5 commits
  • 13 files changed
  • 4 contributors

Commits on Jul 5, 2023

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    d2d46d6 View commit details

Commits on Jul 6, 2023

  1. chore: update README.md

    qmhc committed Jul 6, 2023
    Copy the full SHA
    7965223 View commit details

Commits on Jul 7, 2023

  1. docs: imporve and English wording changes (#235)

    * docs(readme): Englishing wording changes
    
    * add period
    
    * chore: adjust
    
    ---------
    
    Co-authored-by: Nate Stuyvesant <nate@spotlight.ai>
    Co-authored-by: qmhc <40221744+qmhc@users.noreply.github.com>
    3 people authored Jul 7, 2023
    Copy the full SHA
    8663756 View commit details
  2. Copy the full SHA
    22c69a4 View commit details
  3. release: v3.1.1

    qmhc committed Jul 7, 2023
    Copy the full SHA
    55c96d6 View commit details
Showing with 704 additions and 190 deletions.
  1. +1 −1 .husky/.lintstagedrc
  2. +1 −0 .npmrc
  3. +588 −0 CHANGELOG.md
  4. +47 −77 README.md
  5. +23 −51 README.zh-CN.md
  6. +1 −1 examples/react/package.json
  7. +1 −1 examples/svelte/package.json
  8. +1 −1 examples/ts/package.json
  9. +1 −1 examples/vue/package.json
  10. +1 −2 package.json
  11. +0 −11 pnpm-lock.yaml
  12. +1 −0 src/plugin.ts
  13. +38 −44 src/types.ts
2 changes: 1 addition & 1 deletion .husky/.lintstagedrc
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
"prettier --write",
"eslint --fix"
],
"{!(package)*.json,*.code-snippets,.!(browserslist)*rc}": [
"{!(package)*.json,*.code-snippets,.!(browserslist|npm)*rc}": [
"prettier --write--parser json"
],
"package.json": [
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
shell-emulator=true
Loading