Recipes & known issues
Aurelia CLI Bundler + Docker
Recipe:
Dockerfile Configuration:
Build and Run:
NPM Uninstalling Packages
Issue: Uninstalling a package without updating aurelia.json
can lead to build errors.
Solution:
Uninstall the Package:
Remove from
aurelia.json
:Delete any references in the
dependencies
array.Update
copyFiles
if assets were previously copied.
Building with TFS
Issue: Team Foundation Server (TFS) builds may fail due to environment discrepancies.
Solution:
Ensure Node.js and NPM are Installed:
Configure build agents with necessary tools.
Install Dependencies During Build:
Add
npm install
as a build step before running build commands.
Run Build Commands:
Last updated
Was this helpful?