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: antfu/strip-literal
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: antfu/strip-literal
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.1.0
Choose a head ref
  • 3 commits
  • 5 files changed
  • 2 contributors

Commits on Mar 29, 2024

  1. fix: handle unclosed string literal for multiline vue component props (

    hi-ogawa authored Mar 29, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    a39ba58 View commit details
  2. chore: update deps

    antfu committed Mar 29, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    8d8c5e8 View commit details
  3. chore: release v2.1.0

    antfu committed Mar 29, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    5efd70f View commit details
Showing with 1,069 additions and 552 deletions.
  1. +14 −14 package.json
  2. +1,034 −538 pnpm-lock.yaml
  3. +5 −0 src/js-tokens.ts
  4. +8 −0 test/fixtures/vitest-5387.output.vue
  5. +8 −0 test/fixtures/vitest-5387.vue
28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "strip-literal",
"version": "2.0.0",
"packageManager": "pnpm@8.13.1",
"version": "2.1.0",
"packageManager": "pnpm@8.15.5",
"description": "Strip comments and string literals from JavaScript code",
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
"license": "MIT",
@@ -41,22 +41,22 @@
"typecheck": "tsc --noEmit"
},
"dependencies": {
"js-tokens": "^8.0.2"
"js-tokens": "^9.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.1",
"@antfu/eslint-config": "^2.11.4",
"@antfu/ni": "^0.21.12",
"@types/node": "^20.10.5",
"bumpp": "^9.2.1",
"eslint": "^8.56.0",
"esmo": "^4.0.0",
"pnpm": "^8.13.1",
"@types/node": "^20.11.30",
"bumpp": "^9.4.0",
"eslint": "^8.57.0",
"esmo": "^4.7.0",
"pnpm": "^8.15.5",
"rimraf": "^5.0.5",
"three": "^0.160.0",
"typescript": "^5.3.3",
"three": "^0.163.0",
"typescript": "^5.4.3",
"unbuild": "^2.0.0",
"vite": "^5.0.10",
"vitest": "^1.1.0",
"vue": "^3.4.0"
"vite": "^5.2.7",
"vitest": "^1.4.0",
"vue": "^3.4.21"
}
}
Loading