-
-
Notifications
You must be signed in to change notification settings - Fork 0
Add Simon as sample app #24 #28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 10 commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
3b17f14
Add Simon as sample app #24
joshuafolkken 5ac1c03
Fix playwright.config.ts to use defineConfig directly #24
joshuafolkken 6dda828
Revert playwright.config.ts to create_playwright_config #24
joshuafolkken a319320
Restore noEmitOnError false for library type generation #24
joshuafolkken 19855e7
Fix playwright config and update project files #24
joshuafolkken d2e709b
Move E2E tests to e2e/ directory to match testDir config #24
joshuafolkken ab0a324
Fix playwright testMatch to find .e2e.ts files #24
joshuafolkken 9f64ba0
Fix playwright.config.ts to use build and preview #24
joshuafolkken 0e4dc81
Fix playwright webServer to use pnpm run #24
joshuafolkken d740cb1
Add workers 1 to playwright config to prevent SQLite lock #24
joshuafolkken 351903b
Fix security vulnerabilities by updating vite-plugin-pwa to 1.3.0 #24
joshuafolkken 1a503a8
Fix security vulnerabilities by pinning safe dependency versions #24
joshuafolkken 5a45c63
Merge remote-tracking branch 'origin/main' into 24-add-simon-as-sampl…
joshuafolkken 6e4ac9a
Use production build for pre-push E2E tests (Vite 8 dev server CSS re…
joshuafolkken 685f0c1
Switch pre-push E2E to PLAYWRIGHT_PREVIEW var to reliably trigger pre…
joshuafolkken 84b6764
Use lefthook env: key for PLAYWRIGHT_PREVIEW to correctly set env #24
joshuafolkken b2ba2fb
Clean wrangler state before pre-push E2E to avoid SQLite locking #24
joshuafolkken e6f8ca2
Fix pre-push E2E hook to use --workers=1 for preview server stability
joshuafolkken 49dff58
Fix preview mode E2E to run with single worker via config
joshuafolkken 96cfcd8
Convert arrow function methods to method shorthand per project conven…
joshuafolkken File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,3 +3,4 @@ | |
|
|
||
| engine-strict=true | ||
| minimum-release-age=1440 | ||
| confirmModulesPurge=false | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🌐 Web query:
pnpm confirmModulesPurge configuration option documentation💡 Result:
The
confirmModulesPurgeconfiguration option in pnpm controls whether to show the interactive confirmation prompt when pnpm needs to remove and reinstall thenode_modulesdirectory from scratch (e.g., due to layout version mismatch).[1][2][3] It corresponds to theconfirm-modules-purgekey in configuration files. By default, the prompt is shown (equivalent totrue). Set it tofalseto suppress the prompt and automatically proceed with the purge.[1][2] Configuration methods: - In.npmrc(project or user level):confirm-modules-purge=false[1][2] - CLI override:--config.confirmModulesPurge=false[3] - Flags like--yesor--forcealso bypass the prompt by setting this internally.[4][1] Note: This is a non-auth setting, so it may be excluded from globalconfig.yaml(marked inconfigFileKey.ts).[2] Most non-registry settings go inpnpm-workspace.yaml, but sources specify.npmrcfor this one.[5][2] As of pnpm 11.x (current as of 2026), official docs do not yet list it explicitly, but it was added via PR#11125in March 2026.[1][2] Example in.npmrc:confirm-modules-purge=falseThis avoids needing--yesor--forceevery time for non-interactive scripts or CI.[1][3]Citations:
Use kebab-case for the pnpm configuration key:
confirm-modules-purge=falseinstead ofconfirmModulesPurge=falseThe
.npmrcfile requires kebab-case formatting for configuration keys. The settingconfirmModulesPurgeuses camelCase, which pnpm will not recognize. Change line 6 to:This option controls whether pnpm shows an interactive confirmation prompt when purging
node_modules, and setting it tofalseis appropriate for CI/automation scenarios.🤖 Prompt for AI Agents