Skip to content
Open
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions v3/UNRELEASED_CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Unreleased Changes

Improves re-build performance by optimising dependency change detection for front-end builds made with `wails3 init`.

<!--
This file is used to collect changelog entries for the next v3-alpha release.
Add your changes under the appropriate sections below.
Expand All @@ -20,9 +22,11 @@ After processing, the content will be moved to the main changelog and this file

## Changed
<!-- Changes in existing functionality -->
- `common:install:frontend:deps` go-task now uses node_modules/.bin/* for change control detection

## Fixed
<!-- Bug fixes -->
- Fixes an issue with the front-end directory if a local npm package is installed `npm i ~/my-lib`

## Deprecated
<!-- Soon-to-be removed features -->
Expand Down
2 changes: 1 addition & 1 deletion v3/internal/commands/build_assets/Taskfile.tmpl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ tasks:
- package.json
- package-lock.json
generates:
- node_modules/*
- node_modules/.bin/*
preconditions:
- sh: npm version
msg: "Looks like npm isn't installed. Npm is part of the Node installer: https://nodejs.org/en/download/"
Expand Down