From 11765cda1f736c379d18f57eda4121019788a910 Mon Sep 17 00:00:00 2001 From: Ayush Bherwani Date: Fri, 27 Mar 2026 08:42:04 +0530 Subject: [PATCH 1/2] Revert "Release 0.1.5" --- CHANGELOG.md | 19 +++++-------------- package.json | 2 +- vitest.config.mts | 17 ++++++++++++----- 3 files changed, 18 insertions(+), 20 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c109445..606edf7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,17 +7,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [0.1.5] - -### Changed - -- Update templates to use version v0.2.0 of `@metamask/smart-accounts-kit`. - -### Fixed - -- Bump Next.js version to resolve [Security Advisory: CVE-2025-66478](https://nextjs.org/blog/CVE-2025-66478). -- Fix the chain issue in Advanced Permissions template. - ## [0.1.4] ### Changed @@ -61,15 +50,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.1.0] -### Added +### Uncategorized - Initial release + +## Added + - Starter templates for the Delegation Toolkit with Next.js and Vite (React) - ERC-7715 starter template for Next.js - Support for feature flags -[Unreleased]: https://github.com/MetaMask/gator-examples/compare/v0.1.5...HEAD -[0.1.5]: https://github.com/MetaMask/gator-examples/compare/v0.1.4...v0.1.5 +[Unreleased]: https://github.com/MetaMask/gator-examples/compare/v0.1.4...HEAD [0.1.4]: https://github.com/MetaMask/gator-examples/compare/v0.1.3...v0.1.4 [0.1.3]: https://github.com/MetaMask/gator-examples/compare/v0.1.2...v0.1.3 [0.1.2]: https://github.com/MetaMask/gator-examples/compare/v0.1.1...v0.1.2 diff --git a/package.json b/package.json index 660417b..34e2db6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@metamask/create-gator-app", - "version": "0.1.5", + "version": "0.1.4", "description": "CLI tool to create new MetaMask Smart Accounts Kit application", "homepage": "https://github.com/MetaMask/gator-examples#readme", "bugs": { diff --git a/vitest.config.mts b/vitest.config.mts index 2979421..d2de214 100644 --- a/vitest.config.mts +++ b/vitest.config.mts @@ -3,11 +3,14 @@ import { defineConfig } from 'vitest/config'; export default defineConfig({ test: { watch: false, - passWithNoTests: true, + include: ['src/**/*.test.ts'], + coverage: { enabled: true, + provider: 'istanbul', + include: [ 'src/**/*.ts', 'src/**/*.tsx', @@ -15,15 +18,19 @@ export default defineConfig({ 'src/**/*.jsx', 'src/**/*.mjs', ], + exclude: ['src/**/*.test-d.ts'], + thresholds: { autoUpdate: true, - branches: 0, - functions: 0, - lines: 0, - statements: 0, + + branches: 100, + functions: 100, + lines: 100, + statements: 100, }, }, + typecheck: { enabled: true, From 4939f9fb53869306e2b7388d8e33d046a51ce2c7 Mon Sep 17 00:00:00 2001 From: AyushBherwani1998 Date: Fri, 27 Mar 2026 09:15:47 +0530 Subject: [PATCH 2/2] discard vitest change --- vitest.config.mts | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) diff --git a/vitest.config.mts b/vitest.config.mts index d2de214..3d47e66 100644 --- a/vitest.config.mts +++ b/vitest.config.mts @@ -3,14 +3,11 @@ import { defineConfig } from 'vitest/config'; export default defineConfig({ test: { watch: false, - + passWithNoTests: true, include: ['src/**/*.test.ts'], - coverage: { enabled: true, - provider: 'istanbul', - include: [ 'src/**/*.ts', 'src/**/*.tsx', @@ -18,22 +15,17 @@ export default defineConfig({ 'src/**/*.jsx', 'src/**/*.mjs', ], - exclude: ['src/**/*.test-d.ts'], - thresholds: { autoUpdate: true, - - branches: 100, - functions: 100, - lines: 100, - statements: 100, + branches: 0, + functions: 0, + lines: 0, + statements: 0, }, }, - typecheck: { enabled: true, - tsconfig: './tsconfig.test.json', }, },