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: ryoppippi/unplugin-typia
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.0.3-beta.4
Choose a base ref
...
head repository: ryoppippi/unplugin-typia
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Loading
Showing with 4,444 additions and 464 deletions.
  1. +0 −1 .gitattributes
  2. +3 −0 .github/workflows/ci.yaml
  3. +28 −0 .github/workflows/notification.yaml
  4. +3,643 −0 bun.lock
  5. BIN bun.lockb
  6. +2 −2 examples/bun-build/package.json
  7. +2 −2 examples/nextjs/app/RandomData/client.tsx
  8. +14 −10 examples/nextjs/package.json
  9. +11 −11 examples/sveltekit/package.json
  10. +6 −6 examples/vite-hono/package.json
  11. +9 −8 examples/vite-react/package.json
  12. +2 −0 examples/vite-react/vite.config.ts
  13. +15 −16 examples/webpack-minimal/package.json
  14. +0 −12 examples/webpack-minimal/tsconfig-for-webpack-config.json
  15. +5 −3 examples/webpack-minimal/webpack.config.ts
  16. +2 −2 package.json
  17. +1 −1 packages/unplugin-typia/README.md
  18. +22 −20 packages/unplugin-typia/package.json
  19. +3 −19 packages/unplugin-typia/src/bun.ts
  20. +1 −1 packages/unplugin-typia/src/core/cache.ts
  21. +53 −1 packages/unplugin-typia/src/core/index.ts
  22. +5 −5 packages/unplugin-typia/src/core/typia.ts
  23. +4 −2 packages/unplugin-typia/src/next.ts
  24. +1 −1 packages/unplugin-typia/tests/cache.spec.ts
  25. +36 −50 packages/unplugin-typia/tests/fixtures/__snapshots__/alias.ts
  26. +8 −6 packages/unplugin-typia/tests/fixtures/__snapshots__/esbuild/alias.js
  27. +5 −2 packages/unplugin-typia/tests/fixtures/__snapshots__/esbuild/is.js
  28. +14 −36 packages/unplugin-typia/tests/fixtures/__snapshots__/esbuild/random.js
  29. +23 −18 packages/unplugin-typia/tests/fixtures/__snapshots__/esbuild/validate.js
  30. +4 −1 packages/unplugin-typia/tests/fixtures/__snapshots__/is.ts
  31. +14 −34 packages/unplugin-typia/tests/fixtures/__snapshots__/random.ts
  32. +7 −5 packages/unplugin-typia/tests/fixtures/__snapshots__/rollup/alias.js
  33. +6 −2 packages/unplugin-typia/tests/fixtures/__snapshots__/rollup/is.js
  34. +14 −36 packages/unplugin-typia/tests/fixtures/__snapshots__/rollup/random.js
  35. +23 −18 packages/unplugin-typia/tests/fixtures/__snapshots__/rollup/validate.js
  36. +21 −15 packages/unplugin-typia/tests/fixtures/__snapshots__/validate.ts
  37. +199 −59 packages/unplugin-typia/tests/fixtures/__snapshots__/vite/alias.js
  38. +42 −2 packages/unplugin-typia/tests/fixtures/__snapshots__/vite/is.js
  39. +113 −39 packages/unplugin-typia/tests/fixtures/__snapshots__/vite/random.js
  40. +83 −18 packages/unplugin-typia/tests/fixtures/__snapshots__/vite/validate.js
1 change: 0 additions & 1 deletion .gitattributes

This file was deleted.

3 changes: 3 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -20,6 +20,9 @@ jobs:
- uses: oven-sh/setup-bun@v2
with:
bun-version: ${{ env.BUN_VERSION }}
- uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- run: bun i --frozen-lockfile
- run: bun run build

28 changes: 28 additions & 0 deletions .github/workflows/notification.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Create ReleaseIssue
on:
schedule:
- cron: "0 0 */14 * *"

jobs:
create_issue:
name: Create ReleaseIssue
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: Create team sync issue
uses: imjohnbo/issue-bot@v3.4
with:
assignees: "ryoppippi"
labels: "Type: Release"
title: "Next Release"
body: |
### New Release
# - [ ] Check if there are any PRs that have been forgotten to merge
# - [ ] Merge Version Packages PR
# - [ ] Confirm that a new version has been released
pinned: false
close-previous: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Loading