Skip to content

Commit

Permalink
Fix for issue where incompatible NPM packages would be run through br…
Browse files Browse the repository at this point in the history
…owserify, killing asset install process
  • Loading branch information
Silic0nS0ldier committed Apr 18, 2020
1 parent 26e1206 commit c5574b2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Fixed
- Fixed issue where incompatible NPM packages would be browserified, resulting in install failures.

## [v4.4.1]
### Fixed
- Fixed issue when compiling assets for produciton ([#1078]).
Expand Down
4 changes: 2 additions & 2 deletions build/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"private": true,
"dependencies": {
"@userfrosting/browserify-dependencies": "^3.0.0",
"@userfrosting/gulp-bundle-assets": "^4.0.0",
"@userfrosting/browserify-dependencies": "^3.1.0",
"@userfrosting/gulp-bundle-assets": "^4.0.1",
"@userfrosting/merge-package-dependencies": "^1.2.1",
"@userfrosting/vinyl-fs-vpath": "^1.0.0",
"bower": "^1.8.8",
Expand Down
1 change: 1 addition & 0 deletions build/tasks/assets-install.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ export async function assetsInstall() {
dependencies: Object.keys(pkg.dependencies),
inputDir: vendorAssetsDir + "node_modules/",
outputDir: vendorAssetsDir + "browser_modules/",
silentFailures: true,
});
}
else {
Expand Down

0 comments on commit c5574b2

Please sign in to comment.